Home
last modified time | relevance | path

Searched refs:VISIT (Results 1 – 10 of 10) sorted by relevance

/external/v8/tools/gcmole/
Dgcmole.cc559 #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/cpython3/Python/
Dsymtable.c1052 #define VISIT(ST, TYPE, V) \ macro
1152 VISIT(st, arguments, s->v.FunctionDef.args); in symtable_visit_stmt()
1178 VISIT(st, expr, s->v.Return.value); in symtable_visit_stmt()
1187 VISIT(st, expr, s->v.Assign.value); in symtable_visit_stmt()
1219 VISIT(st, expr, s->v.AnnAssign.target); in symtable_visit_stmt()
1221 VISIT(st, expr, s->v.AnnAssign.annotation); in symtable_visit_stmt()
1223 VISIT(st, expr, s->v.AnnAssign.value); in symtable_visit_stmt()
1227 VISIT(st, expr, s->v.AugAssign.target); in symtable_visit_stmt()
1228 VISIT(st, expr, s->v.AugAssign.value); in symtable_visit_stmt()
1231 VISIT(st, expr, s->v.For.target); in symtable_visit_stmt()
[all …]
Dcompile.c1284 #define VISIT(C, TYPE, V) {\ macro
1458 VISIT(c, expr, st->v.Expr.value); in compiler_body()
1463 VISIT(c, stmt, (stmt_ty)asdl_seq_GET(stmts, i)); in compiler_body()
1617 VISIT(c, expr, (expr_ty)asdl_seq_GET(decos, i)); in compiler_decorators()
1688 VISIT(c, expr, annotation); in compiler_visit_argannotation()
2049 VISIT(c, expr, e->v.IfExp.test); in compiler_ifexp()
2051 VISIT(c, expr, e->v.IfExp.body); in compiler_ifexp()
2054 VISIT(c, expr, e->v.IfExp.orelse); in compiler_ifexp()
2139 VISIT(c, expr, s->v.If.test); in compiler_if()
2165 VISIT(c, expr, s->v.For.iter); in compiler_for()
[all …]
/external/python/cpython2/Python/
Dsymtable.c946 #define VISIT(ST, TYPE, V) \ macro
1039 VISIT(st, expr, s->v.Return.value); in symtable_visit_stmt()
1055 VISIT(st, expr, s->v.Assign.value); in symtable_visit_stmt()
1058 VISIT(st, expr, s->v.AugAssign.target); in symtable_visit_stmt()
1059 VISIT(st, expr, s->v.AugAssign.value); in symtable_visit_stmt()
1063 VISIT(st, expr, s->v.Print.dest); in symtable_visit_stmt()
1067 VISIT(st, expr, s->v.For.target); in symtable_visit_stmt()
1068 VISIT(st, expr, s->v.For.iter); in symtable_visit_stmt()
1074 VISIT(st, expr, s->v.While.test); in symtable_visit_stmt()
1081 VISIT(st, expr, s->v.If.test); in symtable_visit_stmt()
[all …]
Dcompile.c1102 #define VISIT(C, TYPE, V) {\ macro
1163 VISIT(c, expr, st->v.Expr.value); in compiler_body()
1168 VISIT(c, stmt, (stmt_ty)asdl_seq_GET(stmts, i)); in compiler_body()
1313 VISIT(c, expr, (expr_ty)asdl_seq_GET(decos, i)); in compiler_decorators()
1336 VISIT(c, expr, arg); in compiler_arguments()
1473 VISIT(c, expr, e->v.IfExp.test); in compiler_ifexp()
1475 VISIT(c, expr, e->v.IfExp.body); in compiler_ifexp()
1478 VISIT(c, expr, e->v.IfExp.orelse); in compiler_ifexp()
1539 VISIT(c, expr, s->v.Print.dest); in compiler_print()
1546 VISIT(c, expr, e); in compiler_print()
[all …]
/external/v8/src/regexp/
Dregexp-ast.h16 #define FOR_EACH_REG_EXP_TREE_TYPE(VISIT) \ argument
17 VISIT(Disjunction) \
18 VISIT(Alternative) \
19 VISIT(Assertion) \
20 VISIT(CharacterClass) \
21 VISIT(Atom) \
22 VISIT(Quantifier) \
23 VISIT(Capture) \
24 VISIT(Group) \
25 VISIT(Lookaround) \
[all …]
Djsregexp.h301 #define FOR_EACH_NODE_TYPE(VISIT) \ argument
302 VISIT(End) \
303 VISIT(Action) \
304 VISIT(Choice) \
305 VISIT(BackReference) \
306 VISIT(Assertion) \
307 VISIT(Text)
/external/libmicrohttpd/src/microhttpd/
Dtsearch.h31 } VISIT; typedef
46 void twalk(const void *, void (*)(const void *, VISIT, int));
/external/elfutils/libcpu/
Di386_parse.y868 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,
/external/protobuf/java/core/src/main/java/com/google/protobuf/
DGeneratedMessageLite.java239 VISIT, enumConstant
292 dynamicMethod(MethodToInvoke.VISIT, visitor, other); in visit()