/third_party/typescript/tests/baselines/reference/ |
D | tailRecursiveConditionalTypes.js | 2 type Trim<S extends string> = 3 S extends ` ${infer T}` ? Trim<T> : 4 S extends `${infer T} ` ? Trim<T> : 7 type T10 = Trim<' … 8 type T11 = Trim<' hello … 36 type Trim<S extends string> = S extends ` ${infer T}` ? Trim<T> : S extends `${infer T} ` ? Trim<T>… 37 type T10 = Trim<' … 38 type T11 = Trim<' hello …
|
D | tailRecursiveConditionalTypes.symbols | 2 type Trim<S extends string> = 3 >Trim : Symbol(Trim, Decl(tailRecursiveConditionalTypes.ts, 0, 0)) 6 S extends ` ${infer T}` ? Trim<T> : 9 >Trim : Symbol(Trim, Decl(tailRecursiveConditionalTypes.ts, 0, 0)) 12 S extends `${infer T} ` ? Trim<T> : 15 >Trim : Symbol(Trim, Decl(tailRecursiveConditionalTypes.ts, 0, 0)) 21 type T10 = Trim<' … 23 >Trim : Symbol(Trim, Decl(tailRecursiveConditionalTypes.ts, 0, 0)) 25 type T11 = Trim<' hello … 27 >Trim : Symbol(Trim, Decl(tailRecursiveConditionalTypes.ts, 0, 0))
|
D | tailRecursiveConditionalTypes.types | 2 type Trim<S extends string> = 3 >Trim : Trim<S> 5 S extends ` ${infer T}` ? Trim<T> : 6 S extends `${infer T} ` ? Trim<T> : 9 type T10 = Trim<' … 12 type T11 = Trim<' hello …
|
D | templateLiteralTypes1.js | 111 type Trim<S extends string> = 112 S extends ` ${infer T}` ? Trim<T> : 113 S extends `${infer T} ` ? Trim<T> : 116 type TR1 = Trim<'xx '>; // 'xx' 117 type TR2 = Trim<' xx'>; // 'xx' 118 type TR3 = Trim<' xx '>; // 'xx'
|
D | templateLiteralTypes1.symbols | 374 type Trim<S extends string> = 375 >Trim : Symbol(Trim, Decl(templateLiteralTypes1.ts, 105, 32)) 378 S extends ` ${infer T}` ? Trim<T> : 381 >Trim : Symbol(Trim, Decl(templateLiteralTypes1.ts, 105, 32)) 384 S extends `${infer T} ` ? Trim<T> : 387 >Trim : Symbol(Trim, Decl(templateLiteralTypes1.ts, 105, 32)) 393 type TR1 = Trim<'xx '>; // 'xx' 395 >Trim : Symbol(Trim, Decl(templateLiteralTypes1.ts, 105, 32)) 397 type TR2 = Trim<' xx'>; // 'xx' 399 >Trim : Symbol(Trim, Decl(templateLiteralTypes1.ts, 105, 32)) [all …]
|
D | templateLiteralTypes1.errors.txt | 129 type Trim<S extends string> = 130 S extends ` ${infer T}` ? Trim<T> : 131 S extends `${infer T} ` ? Trim<T> : 134 type TR1 = Trim<'xx '>; // 'xx' 135 type TR2 = Trim<' xx'>; // 'xx' 136 type TR3 = Trim<' xx '>; // 'xx'
|
D | templateLiteralTypes1.types | 225 type Trim<S extends string> = 226 >Trim : Trim<S> 228 S extends ` ${infer T}` ? Trim<T> : 229 S extends `${infer T} ` ? Trim<T> : 232 type TR1 = Trim<'xx '>; // 'xx' 235 type TR2 = Trim<' xx'>; // 'xx' 238 type TR3 = Trim<' xx '>; // 'xx'
|
/third_party/typescript/tests/cases/compiler/ |
D | tailRecursiveConditionalTypes.ts | 4 type Trim<S extends string> = alias 5 S extends ` ${infer T}` ? Trim<T> : 6 S extends `${infer T} ` ? Trim<T> : 9 type T10 = Trim<' … 10 type T11 = Trim<' hello …
|
/third_party/icu/icu4c/source/data/locales/ |
D | ro_MD.txt | 122 "Trim. 1", 123 "Trim. 2", 124 "Trim. 3", 125 "Trim. 4",
|
/third_party/skia/third_party/externals/icu/source/data/locales/ |
D | ro_MD.txt | 122 "Trim. 1", 123 "Trim. 2", 124 "Trim. 3", 125 "Trim. 4",
|
/third_party/gn/src/gn/ |
D | ohos_components_checker.cc | 42 static std::string &Trim(std::string &s) in Trim() function 233 auto res_second = std::find(res->second.begin(), res->second.end(), Trim(deps_str)); in InterceptInnerApiPublicDepsInner() 260 if (StartWith(Trim(deps_str), res_second)) { in InterceptDepsNotLib() 268 auto res_second = std::find(res->second.begin(), res->second.end(), Trim(deps_str)); in InterceptDepsNotLib() 295 if (StartWith(Trim(includes_str), res_second)) { in InterceptIncludesAbsoluteDepsOther() 303 auto res_second = std::find(res->second.begin(), res->second.end(), Trim(includes_str)); in InterceptIncludesAbsoluteDepsOther() 322 if (StartWith(Trim(deps_str), res_second)) { in InterceptTargetAbsoluteDepsOther() 330 auto res_second = std::find(res->second.begin(), res->second.end(), Trim(deps_str)); in InterceptTargetAbsoluteDepsOther() 359 if (StartWith(Trim(deps_str), res_second)) { in InterceptImportOther() 367 auto res_second = std::find(res->second.begin(), res->second.end(), Trim(deps_str)); in InterceptImportOther()
|
D | command_format.cc | 161 void Trim(); 311 Trim(); in PrintTrailingCommentsWrapped() 376 Trim(); in Newline() 381 void Printer::Trim() { in Trim() function in commands::__anond60063690111::Printer 709 Trim(); in Expr()
|
/third_party/typescript/tests/cases/conformance/types/literal/ |
D | templateLiteralTypes1.ts | 113 type Trim<S extends string> = alias 114 S extends ` ${infer T}` ? Trim<T> : 115 S extends `${infer T} ` ? Trim<T> : 118 type TR1 = Trim<'xx '>; // 'xx' 119 type TR2 = Trim<' xx'>; // 'xx' 120 type TR3 = Trim<' xx '>; // 'xx'
|
/third_party/libphonenumber/resources/geocoding/en/ |
D | 353.txt | 104 353463|Navan/Kells/Trim/Edenderry/Enfield 105 353464|Trim 114 3534694|Trim 119 3534699|Navan/Kells/Trim/Edenderry/Enfield
|
/third_party/lzma/CPP/7zip/UI/GUI/ |
D | ExtractDialog.cpp | 371 s.Trim(); in OnOK() 381 pathName.Trim(); in OnOK() 405 sTemp.Trim(); in OnOK()
|
/third_party/e2fsprogs/ |
D | 1003-add-dac-config.patch | 63 +static string Trim(const string& s) 136 + value = Trim(value); 165 + str = Trim(str); 178 + value = Trim(value);
|
/third_party/skia/third_party/externals/dng_sdk/source/ |
D | dng_simple_image.h | 57 virtual void Trim (const dng_rect &r);
|
D | dng_simple_image.cpp | 87 void dng_simple_image::Trim (const dng_rect &r) in Trim() function in dng_simple_image
|
/third_party/lzma/CPP/7zip/Bundles/SFXSetup/ |
D | SfxSetup.cpp | 158 switches.Trim(); in WinMain() 164 switches.Trim(); in WinMain()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d11/ |
D | Trim11.cpp | 52 dxgiDevice3->Trim(); in trim()
|
/third_party/lzma/CPP/7zip/UI/Console/ |
D | UserInputUtils.cpp | 39 scannedString.Trim(); in ScanUserYesNoAllQuit()
|
/third_party/lzma/CPP/Common/ |
D | ListFileUtils.cpp | 23 s.Trim(); in AddName()
|
D | CommandLineParser.cpp | 34 sTemp.Trim(); in SplitCommandLine()
|
/third_party/musl/Benchmark/musl/ |
D | benchmark_framework.cpp | 305 std::string Trim(const std::string& str) in Trim() function 360 runArgs = ResolveArgs(&argVector, Trim(jsonArgs), presetArgs); in RegisterJsonBenchmarks()
|
/third_party/protobuf/src/google/protobuf/io/ |
D | coded_stream.cc | 704 uint8* EpsCopyOutputStream::Trim(uint8* ptr) { in Trim() function in google::protobuf::io::EpsCopyOutputStream 857 ptr = Trim(ptr); in WriteAliasedRaw() 944 CodedOutputStream::~CodedOutputStream() { Trim(); } in ~CodedOutputStream()
|