Home
last modified time | relevance | path

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/
Dnamespace_declarations_1.ts28 TName: string; property
32 var varA: A.TA = { TName: "TA", Ver: 1.5 }
33 Assert.equal(varA.TName, "TA");
Dnamespace_declarations_2.ts28 TName: string; property
40 var ni1: NonInstantiated.A = { TName: "Non", Ver: 1.0 };
/third_party/typescript/tests/baselines/reference/
DdeclarationEmitMappedPrivateTypeTypeParameter.symbols13 [TName in StringKeyOf<TColumns>]: any;
14 >TName : Symbol(TName, Decl(FromFactor.ts, 1, 5))
DdeclarationEmitMappedPrivateTypeTypeParameter.errors.txt2 /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…
DdeclarationEmitMappedPrivateTypeTypeParameter.js8 [TName in StringKeyOf<TColumns>]: any;
DdeclarationEmitMappedPrivateTypeTypeParameter.types9 [TName in StringKeyOf<TColumns>]: any;
/third_party/elfutils/libelf/
Dgelf_xlate.c92 #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/
DdeclarationEmitMappedPrivateTypeTypeParameter.ts7 [TName in StringKeyOf<TColumns>]: any;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Instrumentation/
DDataFlowSanitizer.cpp1602 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/
Dtypes.ts8232 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 : …