/third_party/node/deps/v8/tools/gcmole/ |
D | gcmole.cc | 721 #define VISIT(type) \ in VisitExpr() macro 729 VISIT(AbstractConditionalOperator); in VisitExpr() 730 VISIT(AddrLabelExpr); in VisitExpr() 731 VISIT(ArraySubscriptExpr); in VisitExpr() 732 VISIT(BinaryOperator); in VisitExpr() 733 VISIT(BlockExpr); in VisitExpr() 734 VISIT(CallExpr); in VisitExpr() 735 VISIT(CastExpr); in VisitExpr() 736 VISIT(CharacterLiteral); in VisitExpr() 737 VISIT(ChooseExpr); in VisitExpr() [all …]
|
/third_party/python/Python/ |
D | symtable.c | 1141 #define VISIT(ST, TYPE, V) \ macro 1224 VISIT(st, arguments, s->v.FunctionDef.args); in symtable_visit_stmt() 1251 VISIT(st, expr, s->v.Return.value); in symtable_visit_stmt() 1260 VISIT(st, expr, s->v.Assign.value); in symtable_visit_stmt() 1295 VISIT(st, expr, s->v.AnnAssign.target); in symtable_visit_stmt() 1302 VISIT(st, expr, s->v.AnnAssign.value); in symtable_visit_stmt() 1306 VISIT(st, expr, s->v.AugAssign.target); in symtable_visit_stmt() 1307 VISIT(st, expr, s->v.AugAssign.value); in symtable_visit_stmt() 1310 VISIT(st, expr, s->v.For.target); in symtable_visit_stmt() 1311 VISIT(st, expr, s->v.For.iter); in symtable_visit_stmt() [all …]
|
D | compile.c | 1625 #define VISIT(C, TYPE, V) {\ macro 1926 VISIT(c, expr, st->v.Expr.value); in compiler_body() 1932 VISIT(c, stmt, (stmt_ty)asdl_seq_GET(stmts, i)); in compiler_body() 2078 VISIT(c, expr, (expr_ty)asdl_seq_GET(decos, i)); in compiler_decorators() 2163 VISIT(c, annexpr, annotation) in compiler_visit_argannotation() 2166 VISIT(c, expr, annotation); in compiler_visit_argannotation() 2701 VISIT(c, expr, e->v.Compare.left); in compiler_jump_if() 2703 VISIT(c, expr, in compiler_jump_if() 2711 VISIT(c, expr, (expr_ty)asdl_seq_GET(e->v.Compare.comparators, n)); in compiler_jump_if() 2736 VISIT(c, expr, e); in compiler_jump_if() [all …]
|
/third_party/node/deps/v8/src/regexp/ |
D | regexp-ast.h | 17 #define FOR_EACH_REG_EXP_TREE_TYPE(VISIT) \ argument 18 VISIT(Disjunction) \ 19 VISIT(Alternative) \ 20 VISIT(Assertion) \ 21 VISIT(CharacterClass) \ 22 VISIT(Atom) \ 23 VISIT(Quantifier) \ 24 VISIT(Capture) \ 25 VISIT(Group) \ 26 VISIT(Lookaround) \ [all …]
|
D | regexp-nodes.h | 25 #define FOR_EACH_NODE_TYPE(VISIT) \ argument 26 VISIT(End) \ 27 VISIT(Action) \ 28 VISIT(Choice) \ 29 VISIT(LoopChoice) \ 30 VISIT(NegativeLookaroundChoice) \ 31 VISIT(BackReference) \ 32 VISIT(Assertion) \ 33 VISIT(Text)
|
/third_party/musl/libc-test/src/api/ |
D | search.c | 9 T(VISIT) in f() 20 switch((VISIT)0){ in f() 36 {void(*p)(const void*,void(*)(const void*,VISIT,int)) = twalk;} in f()
|
/third_party/node/deps/v8/src/heap/ |
D | objects-visiting.h | 111 #define VISIT(TypeName) \ in TORQUE_VISITOR_ID_LIST() macro 113 TYPED_VISITOR_ID_LIST(VISIT) in TORQUE_VISITOR_ID_LIST() 114 TORQUE_VISITOR_ID_LIST(VISIT) in TORQUE_VISITOR_ID_LIST() 115 #undef VISIT in TORQUE_VISITOR_ID_LIST()
|
D | objects-visiting-inl.h | 99 #define VISIT(TypeName) \ macro 117 TYPED_VISITOR_ID_LIST(VISIT) 118 TORQUE_VISITOR_ID_LIST(VISIT) in TORQUE_VISITOR_ID_LIST() argument 119 #undef VISIT in TORQUE_VISITOR_ID_LIST()
|
/third_party/skia/third_party/externals/microhttpd/src/microhttpd/ |
D | tsearch.h | 31 } VISIT; typedef 46 void twalk(const void *, void (*)(const void *, VISIT, int));
|
/third_party/musl/src/search/ |
D | twalk.c | 4 static void walk(const struct node *r, void (*action)(const void *, VISIT, int), int d) in walk() argument 19 void twalk(const void *root, void (*action)(const void *, VISIT, int)) in twalk() argument
|
/third_party/musl/ndk_musl_include/ |
D | search.h | 14 typedef enum { preorder, postorder, endorder, leaf } VISIT; typedef 48 void twalk(const void *, void (*)(const void *, VISIT, int));
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/ |
D | search.h | 14 typedef enum { preorder, postorder, endorder, leaf } VISIT; typedef 48 void twalk(const void *, void (*)(const void *, VISIT, int));
|
/third_party/musl/porting/uniproton/kernel/include/ |
D | search.h | 14 typedef enum { preorder, postorder, endorder, leaf } VISIT; typedef 48 void twalk(const void *, void (*)(const void *, VISIT, int));
|
/third_party/musl/include/ |
D | search.h | 14 typedef enum { preorder, postorder, endorder, leaf } VISIT; typedef 48 void twalk(const void *, void (*)(const void *, VISIT, int));
|
/third_party/musl/porting/liteos_m/kernel/include/ |
D | search.h | 14 typedef enum { preorder, postorder, endorder, leaf } VISIT; typedef 48 void twalk(const void *, void (*)(const void *, VISIT, int));
|
/third_party/alsa-lib/include/ |
D | search.h | 126 VISIT; typedef 145 VISIT __value,
|
/third_party/musl/libc-test/src/functional/ |
D | search_tsearch.c | 25 static void act(const void *node, VISIT v, int d) in act() 47 static void getparent(const void *node, VISIT v, int d) in getparent()
|
/third_party/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,
|
/third_party/icu/icu4j/perf-tests/data/collation/ |
D | nvsbl10.txt | 1882 MR. MARVEL'S VISIT TO IPING
|