/external/python/cpython2/Python/ |
D | symtable.c | 952 #define VISIT(ST, TYPE, V) \ macro 1045 VISIT(st, expr, s->v.Return.value); in symtable_visit_stmt() 1061 VISIT(st, expr, s->v.Assign.value); in symtable_visit_stmt() 1064 VISIT(st, expr, s->v.AugAssign.target); in symtable_visit_stmt() 1065 VISIT(st, expr, s->v.AugAssign.value); in symtable_visit_stmt() 1069 VISIT(st, expr, s->v.Print.dest); in symtable_visit_stmt() 1073 VISIT(st, expr, s->v.For.target); in symtable_visit_stmt() 1074 VISIT(st, expr, s->v.For.iter); in symtable_visit_stmt() 1080 VISIT(st, expr, s->v.While.test); in symtable_visit_stmt() 1087 VISIT(st, expr, s->v.If.test); in symtable_visit_stmt() [all …]
|
D | compile.c | 1111 #define VISIT(C, TYPE, V) {\ macro 1172 VISIT(c, expr, st->v.Expr.value); in compiler_body() 1177 VISIT(c, stmt, (stmt_ty)asdl_seq_GET(stmts, i)); in compiler_body() 1322 VISIT(c, expr, (expr_ty)asdl_seq_GET(decos, i)); in compiler_decorators() 1345 VISIT(c, expr, arg); in compiler_arguments() 1482 VISIT(c, expr, e->v.IfExp.test); in compiler_ifexp() 1484 VISIT(c, expr, e->v.IfExp.body); in compiler_ifexp() 1487 VISIT(c, expr, e->v.IfExp.orelse); in compiler_ifexp() 1548 VISIT(c, expr, s->v.Print.dest); in compiler_print() 1555 VISIT(c, expr, e); in compiler_print() [all …]
|
/external/python/cpython3/Python/ |
D | symtable.c | 1113 #define VISIT(ST, TYPE, V) \ macro 1195 VISIT(st, arguments, s->v.FunctionDef.args); in symtable_visit_stmt() 1221 VISIT(st, expr, s->v.Return.value); in symtable_visit_stmt() 1230 VISIT(st, expr, s->v.Assign.value); in symtable_visit_stmt() 1263 VISIT(st, expr, s->v.AnnAssign.target); in symtable_visit_stmt() 1265 VISIT(st, expr, s->v.AnnAssign.annotation); in symtable_visit_stmt() 1267 VISIT(st, expr, s->v.AnnAssign.value); in symtable_visit_stmt() 1271 VISIT(st, expr, s->v.AugAssign.target); in symtable_visit_stmt() 1272 VISIT(st, expr, s->v.AugAssign.value); in symtable_visit_stmt() 1275 VISIT(st, expr, s->v.For.target); in symtable_visit_stmt() [all …]
|
D | compile.c | 1510 #define VISIT(C, TYPE, V) {\ macro 1808 VISIT(c, expr, st->v.Expr.value); in compiler_body() 1814 VISIT(c, stmt, (stmt_ty)asdl_seq_GET(stmts, i)); in compiler_body() 1956 VISIT(c, expr, (expr_ty)asdl_seq_GET(decos, i)); in compiler_decorators() 2032 VISIT(c, annexpr, annotation) in compiler_visit_argannotation() 2035 VISIT(c, expr, annotation); in compiler_visit_argannotation() 2579 VISIT(c, expr, e->v.Compare.left); in compiler_jump_if() 2581 VISIT(c, expr, in compiler_jump_if() 2589 VISIT(c, expr, (expr_ty)asdl_seq_GET(e->v.Compare.comparators, n)); in compiler_jump_if() 2613 VISIT(c, expr, e); in compiler_jump_if() [all …]
|
/external/bcc/src/cc/frontends/b/ |
D | printer.h | 32 #define VISIT(type, func) virtual STATUS_RETURN visit_##func(type* n); macro 33 EXPAND_NODES(VISIT) 34 #undef VISIT
|
D | type_check.h | 38 #define VISIT(type, func) virtual STATUS_RETURN visit_##func(type* n); macro 39 EXPAND_NODES(VISIT) 40 #undef VISIT
|
D | codegen_llvm.h | 64 #define VISIT(type, func) virtual STATUS_RETURN visit_##func(type* n); macro 65 EXPAND_NODES(VISIT) 66 #undef VISIT
|
D | node.h | 621 #define VISIT(type, func) virtual STATUS_RETURN visit_##func(type* n) = 0; macro 622 EXPAND_NODES(VISIT) 623 #undef VISIT
|
/external/elfutils/libcpu/ |
D | i386_parse.y | 868 nameout (const void *nodep, VISIT value, int level) 1076 print_op_str (const void *nodep, VISIT value, in print_op_str() 1092 print_op_str_idx (const void *nodep, VISIT value, in print_op_str_idx() 1101 print_op_fct (const void *nodep, VISIT value, in print_op_fct() 1376 add_mnemonics (const void *nodep, VISIT value,
|