Searched refs:TName (Results 1 – 10 of 10) sorted by relevance
/third_party/typescript/tests/ts_extra_tests/test_ts_cases/spec/namespaces/namespace_declarations/ |
D | namespace_declarations_1.ts | 28 TName: string; property 32 var varA: A.TA = { TName: "TA", Ver: 1.5 } 33 Assert.equal(varA.TName, "TA");
|
D | namespace_declarations_2.ts | 28 TName: string; property 40 var ni1: NonInstantiated.A = { TName: "Non", Ver: 1.0 };
|
/third_party/typescript/tests/baselines/reference/ |
D | declarationEmitMappedPrivateTypeTypeParameter.symbols | 13 [TName in StringKeyOf<TColumns>]: any; 14 >TName : Symbol(TName, Decl(FromFactor.ts, 1, 5))
|
D | declarationEmitMappedPrivateTypeTypeParameter.errors.txt | 2 /FromFactor.ts(2,15): error TS4103: Type parameter 'TName' of exported mapped object type is using … 10 [TName in StringKeyOf<TColumns>]: any; 14 !!! error TS4103: Type parameter 'TName' of exported mapped object type is using private name 'Stri…
|
D | declarationEmitMappedPrivateTypeTypeParameter.js | 8 [TName in StringKeyOf<TColumns>]: any;
|
D | declarationEmitMappedPrivateTypeTypeParameter.types | 9 [TName in StringKeyOf<TColumns>]: any;
|
/third_party/elfutils/libelf/ |
D | gelf_xlate.c | 92 #define INLINE2(Bytes, FName, TName) \ argument 93 INLINE3 (Bytes, FName, TName) 94 #define INLINE3(Bytes, FName, TName) \ argument 110 size_t n = len / sizeof (TName); \
|
/third_party/typescript/tests/cases/compiler/ |
D | declarationEmitMappedPrivateTypeTypeParameter.ts | 7 [TName in StringKeyOf<TColumns>]: any;
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Instrumentation/ |
D | DataFlowSanitizer.cpp | 1602 std::string TName = "dfst"; in visitCallSite() local 1603 TName += utostr(FT->getNumParams() - n); in visitCallSite() 1604 TName += "$"; in visitCallSite() 1605 TName += F->getName(); in visitCallSite() 1606 Constant *T = DFSF.DFS.getOrBuildTrampolineFunction(ParamFT, TName); in visitCallSite()
|
/third_party/typescript/src/compiler/ |
D | types.ts | 8232 interface PragmaArgumentSpecification<TName extends string> { 8233 …name: TName; // Determines the name of the key in the resulting parsed type, type parameter to cau… 8298 type PragmaArgTypeOptional<TDesc, TName extends string> = 8300 ? {[K in TName]?: PragmaArgTypeMaybeCapture<TDesc>} 8301 : {[K in TName]: PragmaArgTypeMaybeCapture<TDesc>}; 8309 …T]: PragmaArgTypeOptional<T[K], T[K] extends {name: infer TName} ? TName extends string ? TName : …
|