/third_party/ltp/tools/sparse/sparse-src/validation/optim/ |
D | bitfield-init-zero.c | 27 struct bfs { struct 34 struct bfs bfsu_init(unsigned int a) in bfsu_init() argument 36 struct bfs bf = { .f = a, }; in bfsu_init() 40 struct bfs bfss_init(int a) in bfss_init() 42 struct bfs bf = { .f = a, }; in bfss_init() 48 struct bfs bf = { }; in bfs_get0()
|
D | bitfield-size.c | 12 struct bfs { struct 17 signed int get__bfs_a(struct bfs bf) { return bf.a; } in get__bfs_a() argument 18 signed int get__bfs_b(struct bfs bf) { return bf.b; } in get__bfs_b() 19 signed int get_pbfs_a(struct bfs *bf) { return bf->a; } in get_pbfs_a() 20 signed int get_pbfs_b(struct bfs *bf) { return bf->b; } in get_pbfs_b()
|
D | and-or-bfs.c | 6 int bfs(struct s s, int a) in bfs() function
|
/third_party/typescript/tests/baselines/reference/ |
D | parserErrorRecovery_LeftShift1.types | 2 retValue = bfs.VARIABLES >> ); 3 >retValue = bfs.VARIABLES >> : number 5 >bfs.VARIABLES >> : number 6 >bfs.VARIABLES : any 7 >bfs : any
|
D | parserErrorRecovery_LeftShift1.errors.txt | 2 …rRecovery/LeftShifts/parserErrorRecovery_LeftShift1.ts(1,12): error TS2304: Cannot find name 'bfs'. 7 retValue = bfs.VARIABLES >> ); 11 !!! error TS2304: Cannot find name 'bfs'.
|
D | constructorWithIncompleteTypeAnnotation.js | 19 var bfs = new BasicFeatures(); variable 22 retValue = bfs.VARIABLES(); 28 case = bfs.STATEMENTS(4); 35 retValue = bfs.TYPES(); 41 retValue = bfs.OPERATOR ' );
|
D | constructorWithIncompleteTypeAnnotation.types | 38 var bfs = new BasicFeatures(); 39 >bfs : BasicFeatures 47 retValue = bfs.VARIABLES(); 48 >retValue = bfs.VARIABLES() : number 50 >bfs.VARIABLES() : number 51 >bfs.VARIABLES : () => number 52 >bfs : BasicFeatures 68 case = bfs.STATEMENTS(4); 70 >bfs.STATEMENTS(4) : any 71 >bfs.STATEMENTS : any [all …]
|
D | parserErrorRecovery_LeftShift1.js | 2 retValue = bfs.VARIABLES >> ); 5 retValue = bfs.VARIABLES >> ;
|
D | constructorWithIncompleteTypeAnnotation.errors.txt | 9 …s/compiler/constructorWithIncompleteTypeAnnotation.ts(27,26): error TS2304: Cannot find name 'bfs'. 15 …s/compiler/constructorWithIncompleteTypeAnnotation.ts(34,28): error TS2304: Cannot find name 'bfs'. 19 …s/compiler/constructorWithIncompleteTypeAnnotation.ts(40,28): error TS2304: Cannot find name 'bfs'. 117 var bfs = new BasicFeatures(); 120 retValue = bfs.VARIABLES(); 137 case = bfs.STATEMENTS(4); 141 !!! error TS2304: Cannot find name 'bfs'. 154 retValue = bfs.TYPES(); 160 !!! error TS2304: Cannot find name 'bfs'. 170 retValue = bfs.OPERATOR ' ); [all …]
|
D | constructorWithIncompleteTypeAnnotation.symbols | 37 var bfs = new BasicFeatures(); 38 >bfs : Symbol(bfs, Decl(constructorWithIncompleteTypeAnnotation.ts, 17, 19)) 44 retValue = bfs.VARIABLES(); 46 >bfs.VARIABLES : Symbol(BasicFeatures.VARIABLES, Decl(constructorWithIncompleteTypeAnnotation.ts, 5… 47 >bfs : Symbol(bfs, Decl(constructorWithIncompleteTypeAnnotation.ts, 17, 19)) 57 case = bfs.STATEMENTS(4); 68 retValue = bfs.TYPES(); 74 retValue = bfs.OPERATOR ' );
|
D | parserErrorRecovery_LeftShift1.symbols | 2 retValue = bfs.VARIABLES >> );
|
D | parserSyntaxWalker.generated.symbols | 19 No type information for this code.// var bfs = new BasicFeatures(); 22 No type information for this code.// retValue = bfs.VARIABLES(); 28 No type information for this code.// retValue = bfs.STATEMENTS(4); 35 No type information for this code.// retValue = bfs.TYPES(); 41 No type information for this code.// retValue = bfs.OPERATOR();
|
D | parserSyntaxWalker.generated.types | 19 No type information for this code.// var bfs = new BasicFeatures(); 22 No type information for this code.// retValue = bfs.VARIABLES(); 28 No type information for this code.// retValue = bfs.STATEMENTS(4); 35 No type information for this code.// retValue = bfs.TYPES(); 41 No type information for this code.// retValue = bfs.OPERATOR();
|
/third_party/typescript/tests/cases/compiler/ |
D | constructorWithIncompleteTypeAnnotation.ts | 21 var bfs = new BasicFeatures(); 24 retValue = bfs.VARIABLES(); 30 case = bfs.STATEMENTS(4); 37 retValue = bfs.TYPES(); 43 retValue = bfs.OPERATOR ' );
|
/third_party/ltp/tools/sparse/sparse-src/validation/linear/ |
D | compound-literal01.c | 1 struct bfs { struct 8 struct bfs bf = { .a = 1, .b = 2 }; in foo() argument 9 return (struct bfs[]){bf}[0].b; in foo()
|
D | compound-literal02.c | 1 struct bfs { struct 8 struct bfs bf = { .a = 1, .b = 4 }; in bar() argument 9 return (struct bfs[]){bf, { .a = 3, .b = 6}}[1].b; in bar()
|
D | compound-literal00.c | 1 struct bfs { struct 8 return (struct bfs){ .a = 1, .b = 2}.b; in foo() argument
|
/third_party/boost/boost/graph/ |
D | breadth_first_search.hpp | 227 BOOST_GRAPH_EVENT_STUB(on_initialize_vertex, bfs) 228 BOOST_GRAPH_EVENT_STUB(on_discover_vertex, bfs) 229 BOOST_GRAPH_EVENT_STUB(on_examine_vertex, bfs) 230 BOOST_GRAPH_EVENT_STUB(on_examine_edge, bfs) 231 BOOST_GRAPH_EVENT_STUB(on_tree_edge, bfs) 232 BOOST_GRAPH_EVENT_STUB(on_non_tree_edge, bfs) 233 BOOST_GRAPH_EVENT_STUB(on_gray_target, bfs) 234 BOOST_GRAPH_EVENT_STUB(on_black_target, bfs) 235 BOOST_GRAPH_EVENT_STUB(on_finish_vertex, bfs)
|
/third_party/curl/tests/server/ |
D | tftpd.c | 188 static struct bf bfs[2]; variable 318 bfs[0].counter = BF_ALLOC; /* pass out the first buffer */ in rw_init() 320 bfs[1].counter = BF_FREE; in rw_init() 322 return &bfs[0].buf.hdr; in rw_init() 343 bfs[current].counter = BF_FREE; /* free old one */ in readit() 346 b = &bfs[current]; /* look at new buffer */ in readit() 367 b = &bfs[nextone]; /* look at "next" buffer */ in read_ahead() 421 bfs[current].counter = ct; /* set size of data to write */ in writeit() 423 if(bfs[current].counter != BF_FREE) /* if not free */ in writeit() 425 bfs[current].counter = BF_ALLOC; /* mark as alloc'd */ in writeit() [all …]
|
/third_party/boost/libs/format/test/ |
D | format_test_exceptions.cpp | 78 bad_format_string bfs(2, 3); in main() local 79 BOOST_TEST(boost::contains(bfs.what(), "bad_format_string")); in main()
|
/third_party/typescript/tests/cases/conformance/parser/ecmascript5/ErrorRecovery/LeftShifts/ |
D | parserErrorRecovery_LeftShift1.ts | 1 retValue = bfs.VARIABLES >> );
|
/third_party/boost/libs/graph/example/ |
D | Jamfile.v2 | 22 run bfs.cpp ; 24 run bfs-example.cpp ; 25 run bfs-example2.cpp ; 26 run bfs-name-printer.cpp ;
|
D | regression.cfg | 14 compile libs/graph/example/bfs-example.cpp 15 compile libs/graph/example/bfs-name-printer.cpp 16 compile libs/graph/example/bfs.cpp
|
/third_party/boost/libs/graph/test/ |
D | Jamfile.v2 | 37 [ run bfs.cpp ]
|
/third_party/chromium/patch/ |
D | 0001-cve.patch | 69679 za;=VS8dy_;{nS2fHJ9v@mF~7rtVHe8<>X1ZrJ08)NAqlZPauIT`bfs)HM?n3ch}JX
|