/external/v8/tools/gcmole/ |
D | gcmole.cc | 559 #define VISIT(type) \ in VisitExpr() macro 567 VISIT(AbstractConditionalOperator); in VisitExpr() 568 VISIT(AddrLabelExpr); in VisitExpr() 569 VISIT(ArraySubscriptExpr); in VisitExpr() 570 VISIT(BinaryOperator); in VisitExpr() 571 VISIT(BlockExpr); in VisitExpr() 572 VISIT(CallExpr); in VisitExpr() 573 VISIT(CastExpr); in VisitExpr() 574 VISIT(CharacterLiteral); in VisitExpr() 575 VISIT(ChooseExpr); in VisitExpr() [all …]
|
/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 | 1053 #define VISIT(ST, TYPE, V) \ macro 1135 VISIT(st, arguments, s->v.FunctionDef.args); in symtable_visit_stmt() 1161 VISIT(st, expr, s->v.Return.value); in symtable_visit_stmt() 1170 VISIT(st, expr, s->v.Assign.value); in symtable_visit_stmt() 1202 VISIT(st, expr, s->v.AnnAssign.target); in symtable_visit_stmt() 1204 VISIT(st, expr, s->v.AnnAssign.annotation); in symtable_visit_stmt() 1206 VISIT(st, expr, s->v.AnnAssign.value); in symtable_visit_stmt() 1210 VISIT(st, expr, s->v.AugAssign.target); in symtable_visit_stmt() 1211 VISIT(st, expr, s->v.AugAssign.value); in symtable_visit_stmt() 1214 VISIT(st, expr, s->v.For.target); in symtable_visit_stmt() [all …]
|
D | compile.c | 1328 #define VISIT(C, TYPE, V) {\ macro 1502 VISIT(c, expr, st->v.Expr.value); in compiler_body() 1507 VISIT(c, stmt, (stmt_ty)asdl_seq_GET(stmts, i)); in compiler_body() 1661 VISIT(c, expr, (expr_ty)asdl_seq_GET(decos, i)); in compiler_decorators() 1745 VISIT(c, annexpr, annotation) in compiler_visit_argannotation() 1748 VISIT(c, expr, annotation); in compiler_visit_argannotation() 2177 VISIT(c, expr, e->v.Compare.left); in compiler_jump_if() 2179 VISIT(c, expr, in compiler_jump_if() 2188 VISIT(c, expr, (expr_ty)asdl_seq_GET(e->v.Compare.comparators, n)); in compiler_jump_if() 2213 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/v8/src/regexp/ |
D | regexp-ast.h | 18 #define FOR_EACH_REG_EXP_TREE_TYPE(VISIT) \ argument 19 VISIT(Disjunction) \ 20 VISIT(Alternative) \ 21 VISIT(Assertion) \ 22 VISIT(CharacterClass) \ 23 VISIT(Atom) \ 24 VISIT(Quantifier) \ 25 VISIT(Capture) \ 26 VISIT(Group) \ 27 VISIT(Lookaround) \ [all …]
|
D | jsregexp.h | 328 #define FOR_EACH_NODE_TYPE(VISIT) \ argument 329 VISIT(End) \ 330 VISIT(Action) \ 331 VISIT(Choice) \ 332 VISIT(BackReference) \ 333 VISIT(Assertion) \ 334 VISIT(Text)
|
/external/v8/src/heap/ |
D | objects-visiting.h | 99 #define VISIT(type) V8_INLINE ResultType Visit##type(Map* map, type* object); macro 100 TYPED_VISITOR_ID_LIST(VISIT) 101 #undef VISIT
|
D | objects-visiting-inl.h | 77 #define VISIT(type) \ macro 94 TYPED_VISITOR_ID_LIST(VISIT) in TYPED_VISITOR_ID_LIST() argument 95 #undef VISIT in TYPED_VISITOR_ID_LIST()
|
/external/elfutils/libcpu/ |
D | i386_parse.y | 867 nameout (const void *nodep, VISIT value, int level) 1075 print_op_str (const void *nodep, VISIT value, in print_op_str() 1091 print_op_str_idx (const void *nodep, VISIT value, in print_op_str_idx() 1100 print_op_fct (const void *nodep, VISIT value, in print_op_fct() 1375 add_mnemonics (const void *nodep, VISIT value,
|
/external/protobuf/java/core/src/main/java/com/google/protobuf/ |
D | GeneratedMessageLite.java | 239 VISIT, enumConstant 292 dynamicMethod(MethodToInvoke.VISIT, visitor, other); in visit()
|