/third_party/python/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 …]
|
/third_party/mingw-w64/mingw-w64-crt/misc/ |
D | twalk.c | 19 static void trecurse (const node_t *, void (*action)(const void *, VISIT, int), 25 void (*action)(const void *, VISIT, int), in trecurse() argument 45 void (*action) (const void *, VISIT, int)) in twalk() argument
|
/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/gettext/gettext-runtime/intl/ |
D | tsearch.h | 42 VISIT; typedef 73 void (*action) (const void *, VISIT, int));
|
D | tsearch.c | 99 typedef void (*__action_fn_t) (const void *, VISIT, int);
|
/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/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/mingw-w64/mingw-w64-headers/crt/ |
D | search.h | 51 } VISIT; typedef 63 void __cdecl twalk (const void *, void (*)(const void *, VISIT, int));
|
/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/mingw-w64/mingw-w64-crt/testcases/ |
D | t_tsearch.c | 34 void print_node (const void *ptr, VISIT order, int level) in print_node()
|