/third_party/boost/libs/ptr_container/doc/ |
D | tutorial.rst | 61 class zoo 76 zoo the_zoo; 159 Maybe you want to keep all the animals in zoo ordered wrt. 164 zoo_type zoo; 167 zoo.insert( bobo, new monkey(bobo) ); 168 zoo.insert( bobo, new elephant(bobo) ); 169 zoo.insert( anna, new whale(anna) ); 170 zoo.insert( anna, new emu(anna) ); 176 zoo.insert( "bobo", // this is bad, but you get compile error 267 zoo_type zoo, another_zoo; [all …]
|
/third_party/ltp/pan/ |
D | ltp-bump.c | 50 zoo_t zoo; in main() local 86 if ((zoo = zoo_open(active)) == NULL) { in main() 93 nanny = zoo_getpid(zoo, argv[optind]); in main() 103 if (zoo_clear(zoo, nanny)) in main() 112 zoo_close(zoo); in main()
|
D | zoolib.c | 77 char *zoo; in zoo_getname() local 79 zoo = getenv("ZOO"); in zoo_getname() 80 if (zoo) { in zoo_getname() 81 snprintf(buf, 1024, "%s/%s", zoo, "active"); in zoo_getname()
|
/third_party/typescript/tests/baselines/reference/tsbuild/watchMode/demo/ |
D | updates-with-circular-reference.js | 157 * zoo/tsconfig.json 163 /user/username/projects/demo/zoo/tsconfig.json 181 /user/username/projects/demo/zoo/tsconfig.json: 183 /user/username/projects/demo/zoo/zoo.ts: 197 /user/username/projects/demo/zoo: 274 /user/username/projects/demo/zoo/zoo.ts 281 /user/username/projects/demo/zoo/zoo.ts 294 /user/username/projects/demo/zoo/tsconfig.json: 296 /user/username/projects/demo/zoo/zoo.ts: 310 /user/username/projects/demo/zoo:
|
D | updates-with-bad-reference.js | 154 * zoo/tsconfig.json 216 [[90m12:00:59 AM[0m] Project 'zoo/tsconfig.json' can't be built because its dependency 'animals' … 256 /user/username/projects/demo/zoo/tsconfig.json: 258 /user/username/projects/demo/zoo/zoo.ts: 270 /user/username/projects/demo/zoo: 495 /user/username/projects/demo/zoo/tsconfig.json: 497 /user/username/projects/demo/zoo/zoo.ts: 509 /user/username/projects/demo/zoo:
|
/third_party/typescript/tests/baselines/reference/ |
D | es6ClassTest.types | 32 zoo:string = "zoo"; 33 >zoo : string 34 >"zoo" : "zoo" 97 zoo:string; 98 >zoo : string
|
D | es6ClassTest.symbols | 31 zoo:string = "zoo"; 32 >zoo : Symbol(Foo.zoo, Decl(es6ClassTest.ts, 12, 9)) 87 zoo:string; 88 >zoo : Symbol(Provide.zoo, Decl(es6ClassTest.ts, 35, 13))
|
D | es6ClassTest.js | 15 zoo:string = "zoo"; field in Foo 38 zoo:string; 120 _this.zoo = "zoo";
|
D | exhaustiveSwitchStatements1.js | 202 declare const zoo: { animal: Animal } | undefined; 205 switch (zoo?.animal ?? Animal.DOG) { 432 …switch ((_a = zoo === null || zoo === void 0 ? void 0 : zoo.animal) !== null && _a !== void 0 ? _a… 516 declare const zoo: {
|
D | es6ClassTest.errors.txt | 18 zoo:string = "zoo"; 43 zoo:string;
|
D | propertiesAndIndexers.types | 63 zoo: string; 64 >zoo : string
|
D | propertiesAndIndexers.symbols | 87 zoo: string; 88 >zoo : Symbol(D.zoo, Decl(propertiesAndIndexers.ts, 34, 21))
|
D | exhaustiveSwitchStatements1.types | 603 declare const zoo: { animal: Animal } | undefined; 604 >zoo : { animal: Animal; } | undefined 610 switch (zoo?.animal ?? Animal.DOG) { 611 >zoo?.animal ?? Animal.DOG : Animal 612 >zoo?.animal : Animal | undefined 613 >zoo : { animal: Animal; } | undefined
|
D | propertiesAndIndexers.errors.txt | 17 tests/cases/compiler/propertiesAndIndexers.ts(36,5): error TS2411: Property 'zoo' of type 'string' … 90 zoo: string; 92 !!! error TS2411: Property 'zoo' of type 'string' is not assignable to string index type 'number'.
|
D | propertiesAndIndexers.js | 37 zoo: string;
|
D | exhaustiveSwitchStatements1.symbols | 511 declare const zoo: { animal: Animal } | undefined; 512 >zoo : Symbol(zoo, Decl(exhaustiveSwitchStatements1.ts, 200, 13)) 520 switch (zoo?.animal ?? Animal.DOG) { 521 >zoo?.animal : Symbol(animal, Decl(exhaustiveSwitchStatements1.ts, 200, 20)) 522 >zoo : Symbol(zoo, Decl(exhaustiveSwitchStatements1.ts, 200, 13))
|
D | exhaustiveSwitchStatements1.errors.txt | 208 declare const zoo: { animal: Animal } | undefined; 211 switch (zoo?.animal ?? Animal.DOG) {
|
/third_party/typescript/tests/cases/compiler/ |
D | es6ClassTest.ts | 14 zoo:string = "zoo"; property in Foo 37 zoo:string; property in Provide
|
D | propertiesAndIndexers.ts | 36 zoo: string; property
|
/third_party/typescript/tests/baselines/reference/tsbuild/demo/initial-build/ |
D | in-circular-branch-reports-the-error-about-it-by-stopping-build.js | 98 * src/zoo/tsconfig.json 104 /src/zoo/tsconfig.json
|
D | in-bad-ref-branch-reports-the-error-about-files-not-in-rootDir-at-the-import-location.js | 144 * src/zoo/tsconfig.json 206 [[90m12:00:00 AM[0m] Project 'src/zoo/tsconfig.json' can't be built because its dependency 'src/a…
|
/third_party/jerryscript/tests/jerry/es2015/ |
D | object-is.js | 49 var zoo = foo; variable 52 assert(Object.is(foo, zoo) === true);
|
/third_party/gn/src/gn/ |
D | string_atom_unittest.cc | 39 auto zoo = StringAtom("zoo"); in TEST() local 42 EXPECT_TRUE(foo < zoo); in TEST() 43 EXPECT_TRUE(bar < zoo); in TEST()
|
/third_party/typescript/tests/cases/conformance/controlFlow/ |
D | exhaustiveSwitchStatements1.ts | 205 declare const zoo: { animal: Animal } | undefined; constant 208 switch (zoo?.animal ?? Animal.DOG) {
|
/third_party/boost/libs/convert/test/ |
D | has_member.cpp | 62 struct test21 { void zoo () {} }; in zoo() function
|