| /src/external/gpl3/gdb/dist/gdb/ |
| rust-parse.c | 154 { "as", KW_AS, OP_NULL }, 155 { "false", KW_FALSE, OP_NULL }, 156 { "if", 0, OP_NULL }, 157 { "mut", KW_MUT, OP_NULL }, 158 { "const", KW_CONST, OP_NULL }, 159 { "self", KW_SELF, OP_NULL }, 160 { "super", KW_SUPER, OP_NULL }, 161 { "true", KW_TRUE, OP_NULL }, 162 { "extern", KW_EXTERN, OP_NULL }, 163 { "fn", KW_FN, OP_NULL }, [all...] |
| d-exp.y | 965 {"++", INCREMENT, OP_NULL}, 966 {"--", DECREMENT, OP_NULL}, 967 {"&&", ANDAND, OP_NULL}, 968 {"||", OROR, OP_NULL}, 969 {"^^", HATHAT, OP_NULL}, 970 {"<<", LSH, OP_NULL}, 971 {">>", RSH, OP_NULL}, 972 {"==", EQUAL, OP_NULL}, 973 {"!=", NOTEQUAL, OP_NULL}, 974 {"<=", LEQ, OP_NULL}, [all...] |
| f-exp.y | 1259 { ".and.", BOOL_AND, OP_NULL, false }, 1260 { ".or.", BOOL_OR, OP_NULL, false }, 1261 { ".not.", BOOL_NOT, OP_NULL, false }, 1262 { ".eq.", EQUAL, OP_NULL, false }, 1263 { ".eqv.", EQUAL, OP_NULL, false }, 1264 { ".neqv.", NOTEQUAL, OP_NULL, false }, 1265 { ".xor.", NOTEQUAL, OP_NULL, false }, 1266 { "==", EQUAL, OP_NULL, false }, 1267 { ".ne.", NOTEQUAL, OP_NULL, false }, 1268 { "/=", NOTEQUAL, OP_NULL, false } [all...] |
| go-exp.y | 912 {"...", DOTDOTDOT, OP_NULL}, 925 {"++", INCREMENT, OP_NULL}, 926 {"--", DECREMENT, OP_NULL}, 927 /*{"->", RIGHT_ARROW, OP_NULL}, Doesn't exist in Go. */ 928 {"<-", LEFT_ARROW, OP_NULL}, 929 {"&&", ANDAND, OP_NULL}, 930 {"||", OROR, OP_NULL}, 931 {"<<", LSH, OP_NULL}, 932 {">>", RSH, OP_NULL}, 933 {"==", EQUAL, OP_NULL}, [all...] |
| p-exp.y | 1008 {"shr", RSH, OP_NULL}, 1009 {"shl", LSH, OP_NULL}, 1010 {"and", ANDAND, OP_NULL}, 1011 {"div", DIV, OP_NULL}, 1012 {"not", NOT, OP_NULL}, 1013 {"mod", MOD, OP_NULL}, 1014 {"inc", INCREMENT, OP_NULL}, 1015 {"dec", DECREMENT, OP_NULL}, 1016 {"xor", XOR, OP_NULL} 1021 {"or", OR, OP_NULL}, [all...] |
| std-operator.def | 22 OP (OP_NULL)
|
| eval.c | 1338 return value_x_binop (arg1, arg2, BINOP_ADD, OP_NULL, noside); 1360 return value_x_binop (arg1, arg2, BINOP_SUB, OP_NULL, noside); 1386 return value_x_binop (arg1, arg2, op, OP_NULL, noside); 1431 return value_x_binop (arg1, arg2, op, OP_NULL, noside); 1466 return value_x_binop (arg1, arg2, op, OP_NULL, noside); 1487 return value_x_binop (arg1, arg2, op, OP_NULL, noside); 1508 return value_x_binop (arg1, arg2, op, OP_NULL, noside); 1529 return value_x_binop (arg1, arg2, op, OP_NULL, noside); 1550 return value_x_binop (arg1, arg2, op, OP_NULL, noside); 1571 return value_x_binop (arg1, arg2, op, OP_NULL, noside) [all...] |
| expop.h | 1910 return value_x_binop (lhs, rhs, BINOP_ASSIGN, OP_NULL, noside);
|
| /src/external/gpl3/gdb.old/dist/gdb/ |
| rust-parse.c | 154 { "as", KW_AS, OP_NULL }, 155 { "false", KW_FALSE, OP_NULL }, 156 { "if", 0, OP_NULL }, 157 { "mut", KW_MUT, OP_NULL }, 158 { "const", KW_CONST, OP_NULL }, 159 { "self", KW_SELF, OP_NULL }, 160 { "super", KW_SUPER, OP_NULL }, 161 { "true", KW_TRUE, OP_NULL }, 162 { "extern", KW_EXTERN, OP_NULL }, 163 { "fn", KW_FN, OP_NULL }, [all...] |
| d-exp.y | 963 {"++", INCREMENT, OP_NULL}, 964 {"--", DECREMENT, OP_NULL}, 965 {"&&", ANDAND, OP_NULL}, 966 {"||", OROR, OP_NULL}, 967 {"^^", HATHAT, OP_NULL}, 968 {"<<", LSH, OP_NULL}, 969 {">>", RSH, OP_NULL}, 970 {"==", EQUAL, OP_NULL}, 971 {"!=", NOTEQUAL, OP_NULL}, 972 {"<=", LEQ, OP_NULL}, [all...] |
| f-exp.y | 1242 { ".and.", BOOL_AND, OP_NULL, false }, 1243 { ".or.", BOOL_OR, OP_NULL, false }, 1244 { ".not.", BOOL_NOT, OP_NULL, false }, 1245 { ".eq.", EQUAL, OP_NULL, false }, 1246 { ".eqv.", EQUAL, OP_NULL, false }, 1247 { ".neqv.", NOTEQUAL, OP_NULL, false }, 1248 { ".xor.", NOTEQUAL, OP_NULL, false }, 1249 { "==", EQUAL, OP_NULL, false }, 1250 { ".ne.", NOTEQUAL, OP_NULL, false }, 1251 { "/=", NOTEQUAL, OP_NULL, false } [all...] |
| go-exp.y | 913 {"...", DOTDOTDOT, OP_NULL}, 926 {"++", INCREMENT, OP_NULL}, 927 {"--", DECREMENT, OP_NULL}, 928 /*{"->", RIGHT_ARROW, OP_NULL}, Doesn't exist in Go. */ 929 {"<-", LEFT_ARROW, OP_NULL}, 930 {"&&", ANDAND, OP_NULL}, 931 {"||", OROR, OP_NULL}, 932 {"<<", LSH, OP_NULL}, 933 {">>", RSH, OP_NULL}, 934 {"==", EQUAL, OP_NULL}, [all...] |
| p-exp.y | 1009 {"shr", RSH, OP_NULL}, 1010 {"shl", LSH, OP_NULL}, 1011 {"and", ANDAND, OP_NULL}, 1012 {"div", DIV, OP_NULL}, 1013 {"not", NOT, OP_NULL}, 1014 {"mod", MOD, OP_NULL}, 1015 {"inc", INCREMENT, OP_NULL}, 1016 {"dec", DECREMENT, OP_NULL}, 1017 {"xor", XOR, OP_NULL} 1022 {"or", OR, OP_NULL}, [all...] |
| std-operator.def | 22 OP (OP_NULL)
|
| eval.c | 1313 return value_x_binop (arg1, arg2, BINOP_ADD, OP_NULL, noside); 1335 return value_x_binop (arg1, arg2, BINOP_SUB, OP_NULL, noside); 1361 return value_x_binop (arg1, arg2, op, OP_NULL, noside); 1406 return value_x_binop (arg1, arg2, op, OP_NULL, noside); 1441 return value_x_binop (arg1, arg2, op, OP_NULL, noside); 1462 return value_x_binop (arg1, arg2, op, OP_NULL, noside); 1483 return value_x_binop (arg1, arg2, op, OP_NULL, noside); 1504 return value_x_binop (arg1, arg2, op, OP_NULL, noside); 1525 return value_x_binop (arg1, arg2, op, OP_NULL, noside); 1546 return value_x_binop (arg1, arg2, op, OP_NULL, noside) [all...] |
| expop.h | 1908 return value_x_binop (lhs, rhs, BINOP_ASSIGN, OP_NULL, noside);
|
| /src/external/gpl3/gdb/dist/sim/h8300/ |
| h8300-sim.h | 61 OP_NULL,
|
| /src/external/gpl3/gdb.old/dist/sim/h8300/ |
| h8300-sim.h | 61 OP_NULL,
|
| /src/external/gpl3/gdb/dist/gdb/python/ |
| py-value.c | 1152 OP_NULL, EVAL_NORMAL); 1448 enum exp_opcode op = OP_NULL; 1550 res_val = value_x_binop (arg1, arg2, op, OP_NULL, EVAL_NORMAL);
|
| /src/external/gpl3/gdb.old/dist/gdb/python/ |
| py-value.c | 1442 enum exp_opcode op = OP_NULL; 1544 res_val = value_x_binop (arg1, arg2, op, OP_NULL, EVAL_NORMAL);
|