| /third_party/typescript/tests/baselines/reference/ |
| D | assertionFunctionsCanNarrowByDiscriminant.types | 2 interface Cat { 3 type: 'cat'; 4 >type : "cat" 20 type Animal = Cat | Dog; 21 >Animal : Cat | Dog 28 const animal = { type: 'cat', canMeow: true } as Animal; 30 >{ type: 'cat', canMeow: true } as Animal : Animal 31 >{ type: 'cat', canMeow: true } : { type: "cat"; canMeow: true; } 32 >type : "cat" 33 >'cat' : "cat" [all …]
|
| D | mappedTypeOverlappingStringEnumKeys.types | 7 CAT = "cat", 8 >CAT : TerrestrialAnimalTypes.CAT 9 >"cat" : "cat" 20 CAT = "cat", 21 >CAT : AlienAnimalTypes.CAT 22 >"cat" : "cat" 30 type: TerrestrialAnimalTypes.CAT; 31 >type : TerrestrialAnimalTypes.CAT 39 type: AlienAnimalTypes.CAT 51 >CatMap : { cat: (TerrestrialCat | AlienCat)[]; dog: never[]; } [all …]
|
| D | prespecializedGenericMembers1.types | 6 export class Cat<CatType extends IKitty> { 7 >Cat : Cat<CatType> 17 constructor(cats: { barry: Cat<IKitty>; }) { 18 >cats : { barry: Cat<IKitty>; } 19 >barry : Cat<IKitty> 23 var cat = new Cat<IKitty>(); 24 >cat : Cat<IKitty> 25 >new Cat<IKitty>() : Cat<IKitty> 26 >Cat : typeof Cat 29 >catThing : { barry: Cat<IKitty>; } [all …]
|
| D | mappedTypeOverlappingStringEnumKeys.symbols | 7 CAT = "cat", 8 >CAT : Symbol(TerrestrialAnimalTypes.CAT, Decl(mappedTypeOverlappingStringEnumKeys.ts, 2, 29)) 18 CAT = "cat", 19 >CAT : Symbol(AlienAnimalTypes.CAT, Decl(mappedTypeOverlappingStringEnumKeys.ts, 7, 23)) 31 type: TerrestrialAnimalTypes.CAT; 34 >CAT : Symbol(TerrestrialAnimalTypes.CAT, Decl(mappedTypeOverlappingStringEnumKeys.ts, 2, 29)) 43 type: AlienAnimalTypes.CAT 46 >CAT : Symbol(AlienAnimalTypes.CAT, Decl(mappedTypeOverlappingStringEnumKeys.ts, 7, 23)) 74 cat: [ 75 >cat : Symbol(cat, Decl(mappedTypeOverlappingStringEnumKeys.ts, 29, 24)) [all …]
|
| D | mappedTypeOverlappingStringEnumKeys.js | 5 CAT = "cat", 10 CAT = "cat", 16 type: TerrestrialAnimalTypes.CAT; 21 type: AlienAnimalTypes.CAT 32 cat: [ property 33 { type: TerrestrialAnimalTypes.CAT, address: "" }, 34 { type: AlienAnimalTypes.CAT, planet: "" } 44 TerrestrialAnimalTypes["CAT"] = "cat"; 50 AlienAnimalTypes["CAT"] = "cat"; 54 cat: [ property [all …]
|
| D | assertionFunctionsCanNarrowByDiscriminant.js | 2 interface Cat { 3 type: 'cat'; 12 type Animal = Cat | Dog; 16 const animal = { type: 'cat', canMeow: true } as Animal; 17 assertEqual(animal.type, 'cat' as const); 19 animal.canMeow; // since is cat, should not be an error 21 const animalOrUndef = { type: 'cat', canMeow: true } as Animal | undefined; 22 assertEqual(animalOrUndef?.type, 'cat' as const); 24 animalOrUndef.canMeow; // since is cat, should not be an error 29 var animal = { type: 'cat', canMeow: true }; [all …]
|
| /third_party/ltp/testcases/kernel/controllers/cpuset/cpuset_hierarchy_test/ |
| D | cpuset_hierarchy_test.sh | 48 cpuset_log "father cpuset.cpus $(cat "$CPUSET/father/cpuset.cpus")" 49 cpuset_log "child cpuset.cpus $(cat "$CPUSET/father/child/cpuset.cpus")" 51 test -z "$(cat "$CPUSET/father/cpuset.cpus")" || return 1 52 test -z "$(cat "$CPUSET/father/child/cpuset.cpus")" || return 1 60 cpuset_log "father cpuset.cpus $(cat "$CPUSET/father/cpuset.cpus")" 61 cpuset_log "child cpuset.cpus $(cat "$CPUSET/father/child/cpuset.cpus")" 63 test -z "$(cat "$CPUSET/father/cpuset.cpus")" || return 1 64 test -z "$(cat "$CPUSET/father/child/cpuset.cpus")" || return 1 72 cpuset_log "father cpuset.cpus $(cat "$CPUSET/father/cpuset.cpus")" 73 cpuset_log "child cpuset.cpus $(cat "$CPUSET/father/child/cpuset.cpus")" [all …]
|
| /third_party/ffmpeg/libavformat/ |
| D | concatdec.c | 116 ConcatContext *cat = avf->priv_data; in add_file() local 124 if (cat->safe && !safe_filename(filename)) { in add_file() 142 if (cat->nb_files >= *nb_files_alloc) { in add_file() 145 if (n <= cat->nb_files || n > SIZE_MAX / sizeof(*cat->files) || in add_file() 146 !(new_files = av_realloc(cat->files, n * sizeof(*cat->files)))) in add_file() 148 cat->files = new_files; in add_file() 152 file = &cat->files[cat->nb_files++]; in add_file() 201 ConcatContext *cat = avf->priv_data; in detect_stream_specific() local 202 AVStream *st = cat->avf->streams[idx]; in detect_stream_specific() 203 ConcatStream *cs = &cat->cur_file->streams[idx]; in detect_stream_specific() [all …]
|
| /third_party/typescript/src/loc/lcl/cht/diagnosticMessages/ |
| D | diagnosticMessages.generated.json.lcl | 25 <Str Cat="Text"> 27 <Tgt Cat="Text" Stat="Loc" Orig="New"> 34 <Str Cat="Text"> 36 <Tgt Cat="Text" Stat="Loc" Orig="New"> 43 <Str Cat="Text"> 45 <Tgt Cat="Text" Stat="Loc" Orig="New"> 52 <Str Cat="Text"> 54 <Tgt Cat="Text" Stat="Loc" Orig="New"> 61 <Str Cat="Text"> 63 <Tgt Cat="Text" Stat="Loc" Orig="New"> [all …]
|
| /third_party/typescript/src/loc/lcl/rus/diagnosticMessages/ |
| D | diagnosticMessages.generated.json.lcl | 24 <Str Cat="Text"> 26 <Tgt Cat="Text" Stat="Loc" Orig="New"> 33 <Str Cat="Text"> 35 <Tgt Cat="Text" Stat="Loc" Orig="New"> 42 <Str Cat="Text"> 44 <Tgt Cat="Text" Stat="Loc" Orig="New"> 51 <Str Cat="Text"> 53 <Tgt Cat="Text" Stat="Loc" Orig="New"> 60 <Str Cat="Text"> 62 <Tgt Cat="Text" Stat="Loc" Orig="New"> [all …]
|
| /third_party/typescript/src/loc/lcl/kor/diagnosticMessages/ |
| D | diagnosticMessages.generated.json.lcl | 25 <Str Cat="Text"> 27 <Tgt Cat="Text" Stat="Loc" Orig="New"> 34 <Str Cat="Text"> 36 <Tgt Cat="Text" Stat="Loc" Orig="New"> 43 <Str Cat="Text"> 45 <Tgt Cat="Text" Stat="Loc" Orig="New"> 52 <Str Cat="Text"> 54 <Tgt Cat="Text" Stat="Loc" Orig="New"> 61 <Str Cat="Text"> 63 <Tgt Cat="Text" Stat="Loc" Orig="New"> [all …]
|
| /third_party/typescript/src/loc/lcl/jpn/diagnosticMessages/ |
| D | diagnosticMessages.generated.json.lcl | 25 <Str Cat="Text"> 27 <Tgt Cat="Text" Stat="Loc" Orig="New"> 34 <Str Cat="Text"> 36 <Tgt Cat="Text" Stat="Loc" Orig="New"> 43 <Str Cat="Text"> 45 <Tgt Cat="Text" Stat="Loc" Orig="New"> 52 <Str Cat="Text"> 54 <Tgt Cat="Text" Stat="Loc" Orig="New"> 61 <Str Cat="Text"> 63 <Tgt Cat="Text" Stat="Loc" Orig="New"> [all …]
|
| /third_party/typescript/src/loc/lcl/trk/diagnosticMessages/ |
| D | diagnosticMessages.generated.json.lcl | 18 <Str Cat="Text"> 20 <Tgt Cat="Text" Stat="Loc" Orig="New"> 27 <Str Cat="Text"> 29 <Tgt Cat="Text" Stat="Loc" Orig="New"> 36 <Str Cat="Text"> 38 <Tgt Cat="Text" Stat="Loc" Orig="New"> 45 <Str Cat="Text"> 47 <Tgt Cat="Text" Stat="Loc" Orig="New"> 54 <Str Cat="Text"> 56 <Tgt Cat="Text" Stat="Loc" Orig="New"> [all …]
|
| /third_party/typescript/src/loc/lcl/chs/diagnosticMessages/ |
| D | diagnosticMessages.generated.json.lcl | 25 <Str Cat="Text"> 27 <Tgt Cat="Text" Stat="Loc" Orig="New"> 34 <Str Cat="Text"> 36 <Tgt Cat="Text" Stat="Loc" Orig="New"> 43 <Str Cat="Text"> 45 <Tgt Cat="Text" Stat="Loc" Orig="New"> 52 <Str Cat="Text"> 54 <Tgt Cat="Text" Stat="Loc" Orig="New"> 61 <Str Cat="Text"> 63 <Tgt Cat="Text" Stat="Loc" Orig="New"> [all …]
|
| /third_party/typescript/src/loc/lcl/csy/diagnosticMessages/ |
| D | diagnosticMessages.generated.json.lcl | 34 <Str Cat="Text"> 36 <Tgt Cat="Text" Stat="Loc" Orig="New"> 43 <Str Cat="Text"> 45 <Tgt Cat="Text" Stat="Loc" Orig="New"> 52 <Str Cat="Text"> 54 <Tgt Cat="Text" Stat="Loc" Orig="New"> 61 <Str Cat="Text"> 63 <Tgt Cat="Text" Stat="Loc" Orig="New"> 70 <Str Cat="Text"> 72 <Tgt Cat="Text" Stat="Loc" Orig="New"> [all …]
|
| /third_party/typescript/src/loc/lcl/esn/diagnosticMessages/ |
| D | diagnosticMessages.generated.json.lcl | 34 <Str Cat="Text"> 36 <Tgt Cat="Text" Stat="Loc" Orig="New"> 43 <Str Cat="Text"> 45 <Tgt Cat="Text" Stat="Loc" Orig="New"> 52 <Str Cat="Text"> 54 <Tgt Cat="Text" Stat="Loc" Orig="New"> 61 <Str Cat="Text"> 63 <Tgt Cat="Text" Stat="Loc" Orig="New"> 70 <Str Cat="Text"> 72 <Tgt Cat="Text" Stat="Loc" Orig="New"> [all …]
|
| /third_party/typescript/src/loc/lcl/fra/diagnosticMessages/ |
| D | diagnosticMessages.generated.json.lcl | 34 <Str Cat="Text"> 36 <Tgt Cat="Text" Stat="Loc" Orig="New"> 43 <Str Cat="Text"> 45 <Tgt Cat="Text" Stat="Loc" Orig="New"> 52 <Str Cat="Text"> 54 <Tgt Cat="Text" Stat="Loc" Orig="New"> 61 <Str Cat="Text"> 63 <Tgt Cat="Text" Stat="Loc" Orig="New"> 70 <Str Cat="Text"> 72 <Tgt Cat="Text" Stat="Loc" Orig="New"> [all …]
|
| /third_party/typescript/src/loc/lcl/ita/diagnosticMessages/ |
| D | diagnosticMessages.generated.json.lcl | 25 <Str Cat="Text"> 27 <Tgt Cat="Text" Stat="Loc" Orig="New"> 34 <Str Cat="Text"> 36 <Tgt Cat="Text" Stat="Loc" Orig="New"> 43 <Str Cat="Text"> 45 <Tgt Cat="Text" Stat="Loc" Orig="New"> 52 <Str Cat="Text"> 54 <Tgt Cat="Text" Stat="Loc" Orig="New"> 61 <Str Cat="Text"> 63 <Tgt Cat="Text" Stat="Loc" Orig="New"> [all …]
|
| /third_party/typescript/src/loc/lcl/ptb/diagnosticMessages/ |
| D | diagnosticMessages.generated.json.lcl | 18 <Str Cat="Text"> 20 <Tgt Cat="Text" Stat="Loc" Orig="New"> 27 <Str Cat="Text"> 29 <Tgt Cat="Text" Stat="Loc" Orig="New"> 36 <Str Cat="Text"> 38 <Tgt Cat="Text" Stat="Loc" Orig="New"> 45 <Str Cat="Text"> 47 <Tgt Cat="Text" Stat="Loc" Orig="New"> 54 <Str Cat="Text"> 56 <Tgt Cat="Text" Stat="Loc" Orig="New"> [all …]
|
| /third_party/typescript/src/loc/lcl/deu/diagnosticMessages/ |
| D | diagnosticMessages.generated.json.lcl | 25 <Str Cat="Text"> 27 <Tgt Cat="Text" Stat="Loc" Orig="New"> 34 <Str Cat="Text"> 36 <Tgt Cat="Text" Stat="Loc" Orig="New"> 43 <Str Cat="Text"> 45 <Tgt Cat="Text" Stat="Loc" Orig="New"> 52 <Str Cat="Text"> 54 <Tgt Cat="Text" Stat="Loc" Orig="New"> 61 <Str Cat="Text"> 63 <Tgt Cat="Text" Stat="Loc" Orig="New"> [all …]
|
| /third_party/typescript/src/loc/lcl/plk/diagnosticMessages/ |
| D | diagnosticMessages.generated.json.lcl | 18 <Str Cat="Text"> 20 <Tgt Cat="Text" Stat="Loc" Orig="New"> 27 <Str Cat="Text"> 29 <Tgt Cat="Text" Stat="Loc" Orig="New"> 36 <Str Cat="Text"> 38 <Tgt Cat="Text" Stat="Loc" Orig="New"> 45 <Str Cat="Text"> 47 <Tgt Cat="Text" Stat="Loc" Orig="New"> 54 <Str Cat="Text"> 56 <Tgt Cat="Text" Stat="Loc" Orig="New"> [all …]
|
| /third_party/ninja/src/ |
| D | manifest_parser_test.cc | 45 "rule cat\n" in TEST_F() 46 " command = cat $in > $out\n" in TEST_F() 51 "build result: cat in_1.cc in-2.O\n")); in TEST_F() 55 EXPECT_EQ("cat", rule->name()); in TEST_F() 56 EXPECT_EQ("[cat ][$in][ > ][$out]", in TEST_F() 63 "rule cat\n" in TEST_F() 78 "rule cat\n" in TEST_F() 79 " command = cat $in > $out\n" in TEST_F() 83 "build result: cat in_1.cc in-2.O\n" in TEST_F() 88 EXPECT_EQ("cat", rule->name()); in TEST_F() [all …]
|
| /third_party/node/deps/npm/tap-snapshots/test/lib/commands/ |
| D | outdated.js.test.cjs | 10 cat:dog@latest 1.0.0 2.0.0 2.0.0 node_modules/cat prefix 15 cat 1.0.0 1.0.1 1.0.1 node_modules/cat prefix 23 "cat": { 28 "location": "{CWD}/prefix/node_modules/cat", 58 "cat": { 63 "location": "{CWD}/prefix/node_modules/cat" 89 cat 1.0.0 1.0.1 1.0.1 node_modules/cat prefix dependencies 97 [31mcat[39m 1.0.0 [32m1.0.1[39m [35m1.0.1[39m node_modules/cat prefix 104 [31mcat[39m 1.0.0 [32m1.0.1[39m [35m1.0.1[39m node_modules/cat prefix 112 [31mcat[39m 1.0.0 [32m1.0.1[39m [35m1.0.1[39m node_modules/cat prefix [all …]
|
| /third_party/ffmpeg/libavfilter/ |
| D | avf_concat.c | 76 ConcatContext *cat = ctx->priv; in query_formats() local 83 nb_str = cat->nb_streams[type]; in query_formats() 102 for (seg = 0; seg < cat->nb_segments; seg++) { in query_formats() 122 ConcatContext *cat = ctx->priv; in config_output() local 135 for (seg = 1; seg < cat->nb_segments; seg++) { in config_output() 146 for (seg = 1; seg < cat->nb_segments; seg++) { in config_output() 165 if (!cat->unsafe) in config_output() 175 ConcatContext *cat = ctx->priv; in push_frame() local 179 struct concat_in *in = &cat->in[in_no]; in push_frame() 194 buf->pts += cat->delta_ts; in push_frame() [all …]
|
| /third_party/skia/third_party/externals/harfbuzz/src/ |
| D | hb-ot-shape-complex-myanmar.hh | 69 unsigned int cat = type & 0xFFu; in set_myanmar_properties() local 76 cat = OT_VS; in set_myanmar_properties() 81 cat = OT_C; /* The spec says C, IndicSyllableCategory doesn't have. */ in set_myanmar_properties() 88 cat = OT_GB; in set_myanmar_properties() 92 cat = OT_Ra; in set_myanmar_properties() 96 cat = OT_A; in set_myanmar_properties() 100 cat = OT_H; in set_myanmar_properties() 104 cat = OT_As; in set_myanmar_properties() 112 cat = OT_D; in set_myanmar_properties() 116 cat = OT_D; /* XXX The spec says D0, but Uniscribe doesn't seem to do. */ in set_myanmar_properties() [all …]
|