Home
last modified time | relevance | path

Searched refs:TP (Results 1 – 25 of 89) sorted by relevance

1234

/third_party/typescript/tests/baselines/reference/
DmappedTypeAsClauses.js96 type GetKey<S, V> = keyof { [TP in keyof S as Equal<S[TP], V> extends true ? TP : never]: any };
98 type GetKeyWithIf<S, V> = keyof { [TP in keyof S as If<Equal<S[TP], V>, TP, never>]: any };
100 type GetObjWithIf<S, V> = { [TP in keyof S as If<Equal<S[TP], V>, TP, never>]: any };
223 [TP in keyof S as Equal<S[TP], V> extends true ? TP : never]: any;
226 [TP in keyof S as If<Equal<S[TP], V>, TP, never>]: any;
229 [TP in keyof S as If<Equal<S[TP], V>, TP, never>]: any;
DmappedTypeAsClauses.types184 type GetKey<S, V> = keyof { [TP in keyof S as Equal<S[TP], V> extends true ? TP : never]: any };
185 >GetKey : keyof { [TP in keyof S as Equal<S[TP], V> extends true ? TP : never]: any; }
188 type GetKeyWithIf<S, V> = keyof { [TP in keyof S as If<Equal<S[TP], V>, TP, never>]: any };
189 >GetKeyWithIf : keyof { [TP in keyof S as If<Equal<S[TP], V>, TP, never>]: any; }
191 type GetObjWithIf<S, V> = { [TP in keyof S as If<Equal<S[TP], V>, TP, never>]: any };
DmappedTypeModifiers.types7 type TP = { a?: number, b?: string };
8 >TP : TP
28 var v00: keyof TP;
49 var v02: TP;
50 >v02 : TP
53 >v02 : TP
56 >v02 : TP
58 var v02: { [P in keyof TP]: TP[P] }
59 >v02 : TP
61 var v02: Pick<TP, keyof TP>;
[all …]
DmappedTypeAsClauses.symbols289 type GetKey<S, V> = keyof { [TP in keyof S as Equal<S[TP], V> extends true ? TP : never]: any };
293 >TP : Symbol(TP, Decl(mappedTypeAsClauses.ts, 94, 29))
297 >TP : Symbol(TP, Decl(mappedTypeAsClauses.ts, 94, 29))
299 >TP : Symbol(TP, Decl(mappedTypeAsClauses.ts, 94, 29))
301 type GetKeyWithIf<S, V> = keyof { [TP in keyof S as If<Equal<S[TP], V>, TP, never>]: any };
305 >TP : Symbol(TP, Decl(mappedTypeAsClauses.ts, 96, 35))
310 >TP : Symbol(TP, Decl(mappedTypeAsClauses.ts, 96, 35))
312 >TP : Symbol(TP, Decl(mappedTypeAsClauses.ts, 96, 35))
314 type GetObjWithIf<S, V> = { [TP in keyof S as If<Equal<S[TP], V>, TP, never>]: any };
318 >TP : Symbol(TP, Decl(mappedTypeAsClauses.ts, 98, 29))
[all …]
DmappedTypeModifiers.js3 type TP = { a?: number, b?: string };
9 var v00: keyof TP;
18 var v02: TP;
21 var v02: { [P in keyof TP]: TP[P] }
22 var v02: Pick<TP, keyof TP>;
33 var v04: Readonly<TP>;
DmappedTypeModifiers.symbols7 type TP = { a?: number, b?: string };
8 >TP : Symbol(TP, Decl(mappedTypeModifiers.ts, 0, 34))
29 var v00: keyof TP;
31 >TP : Symbol(TP, Decl(mappedTypeModifiers.ts, 0, 34))
66 var v02: TP;
68 >TP : Symbol(TP, Decl(mappedTypeModifiers.ts, 0, 34))
82 var v02: { [P in keyof TP]: TP[P] }
85 >TP : Symbol(TP, Decl(mappedTypeModifiers.ts, 0, 34))
86 >TP : Symbol(TP, Decl(mappedTypeModifiers.ts, 0, 34))
89 var v02: Pick<TP, keyof TP>;
[all …]
/third_party/typescript/tests/cases/conformance/types/mapped/
DmappedTypeAsClauses.ts98 type GetKey<S, V> = keyof { [TP in keyof S as Equal<S[TP], V> extends true ? TP : never]: any };
100 type GetKeyWithIf<S, V> = keyof { [TP in keyof S as If<Equal<S[TP], V>, TP, never>]: any };
102 type GetObjWithIf<S, V> = { [TP in keyof S as If<Equal<S[TP], V>, TP, never>]: any };
DmappedTypeModifiers.ts5 type TP = { a?: number, b?: string }; alias
11 var v00: keyof TP; variable
20 var v02: TP;
23 var v02: { [P in keyof TP]: TP[P] } variable
24 var v02: Pick<TP, keyof TP>;
35 var v04: Readonly<TP>;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ExecutionEngine/Orc/
DLazyReexports.h87 std::unique_ptr<TrampolinePool> TP);
91 void setTrampolinePool(std::unique_ptr<TrampolinePool> TP) { in setTrampolinePool() argument
92 this->TP = std::move(TP); in setTrampolinePool()
105 std::unique_ptr<TrampolinePool> TP; variable
118 auto TP = LocalTrampolinePool<ORCABI>::Create( in init() local
123 if (!TP) in init()
124 return TP.takeError(); in init()
126 setTrampolinePool(std::move(*TP)); in init()
DIndirectionUtils.h200 JITCompileCallbackManager(std::unique_ptr<TrampolinePool> TP, in JITCompileCallbackManager() argument
203 : TP(std::move(TP)), ES(ES), in JITCompileCallbackManager()
207 void setTrampolinePool(std::unique_ptr<TrampolinePool> TP) { in setTrampolinePool() argument
208 this->TP = std::move(TP); in setTrampolinePool()
213 std::unique_ptr<TrampolinePool> TP; variable
245 auto TP = LocalTrampolinePool<ORCABI>::Create( in LocalJITCompileCallbackManager() local
250 if (!TP) { in LocalJITCompileCallbackManager()
251 Err = TP.takeError(); in LocalJITCompileCallbackManager()
255 setTrampolinePool(std::move(*TP)); in LocalJITCompileCallbackManager()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/Unix/
DUnix.h84 inline struct timespec toTimeSpec(TimePoint<> TP) { in toTimeSpec() argument
88 RetVal.tv_sec = toTimeT(TP); in toTimeSpec()
89 RetVal.tv_nsec = (TP.time_since_epoch() % seconds(1)).count(); in toTimeSpec()
94 inline struct timeval toTimeVal(TimePoint<std::chrono::microseconds> TP) { in toTimeVal() argument
98 RetVal.tv_sec = toTimeT(TP); in toTimeVal()
99 RetVal.tv_usec = (TP.time_since_epoch() % seconds(1)).count(); in toTimeVal()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/Unix/
DUnix.h92 inline struct timespec toTimeSpec(TimePoint<> TP) { in toTimeSpec() argument
96 RetVal.tv_sec = toTimeT(TP); in toTimeSpec()
97 RetVal.tv_nsec = (TP.time_since_epoch() % seconds(1)).count(); in toTimeSpec()
102 inline struct timeval toTimeVal(TimePoint<std::chrono::microseconds> TP) { in toTimeVal() argument
106 RetVal.tv_sec = toTimeT(TP); in toTimeVal()
107 RetVal.tv_usec = (TP.time_since_epoch() % seconds(1)).count(); in toTimeVal()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DChrono.cpp25 static inline struct tm getStructTM(TimePoint<> TP) { in getStructTM() argument
27 std::time_t OurTime = toTimeT(TP); in getStructTM()
43 raw_ostream &operator<<(raw_ostream &OS, TimePoint<> TP) { in operator <<() argument
44 struct tm LT = getStructTM(TP); in operator <<()
49 long((TP.time_since_epoch() % std::chrono::seconds(1)) in operator <<()
/third_party/typescript/tests/ts_extra_tests/test_ts_cases/spec/classes/property_member_declarations/member_function_declarations/
Dmember_function_declarations_5.ts25 class TP { class
31 class CP extends TP {
36 let x = TP.createthis();
/third_party/toybox/tests/
Dman.test22 .TP
25 .TP
29 .TP
108 .TP
179 .TP 10
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/
DChrono.h36 LLVM_ATTRIBUTE_ALWAYS_INLINE inline std::time_t toTimeT(TimePoint<> TP) { in toTimeT() argument
39 time_point_cast<system_clock::time_point::duration>(TP)); in toTimeT()
51 raw_ostream &operator<<(raw_ostream &OS, sys::TimePoint<> TP);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
DChrono.h36 inline std::time_t toTimeT(TimePoint<> TP) { in toTimeT() argument
39 time_point_cast<system_clock::time_point::duration>(TP)); in toTimeT()
59 raw_ostream &operator<<(raw_ostream &OS, sys::TimePoint<> TP);
71 static void format(const sys::TimePoint<> &TP, llvm::raw_ostream &OS,
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/Orc/
DLazyReexports.cpp23 std::unique_ptr<TrampolinePool> TP) in LazyCallThroughManager() argument
24 : ES(ES), ErrorHandlerAddr(ErrorHandlerAddr), TP(std::move(TP)) {} in LazyCallThroughManager()
30 auto Trampoline = TP->getTrampoline(); in getCallThroughTrampoline()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/Windows/
DMemory.inc77 TOKEN_PRIVILEGES TP{};
78 TP.PrivilegeCount = 1;
79 TP.Privileges[0].Luid = Luid;
80 TP.Privileges[0].Attributes = SE_PRIVILEGE_ENABLED;
81 if (!AdjustTokenPrivileges(Token, FALSE, &TP, 0, 0, 0)) {
/third_party/jerryscript/targets/openwrt/
Dreadme.md4 for OpenWrt. For target device the TP-Link WR1043ND v1.x router is
10 As the TP-Link WR1043ND is a mips based device and mips is a big-endian
51 * Set "Target Profile" to "TP-LINK TL-WR1043N/ND".
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/Windows/
DWindowsSupport.h222 inline FILETIME toFILETIME(TimePoint<> TP) { in toFILETIME() argument
224 TimeInteger.QuadPart = TP.time_since_epoch().count() / 100; in toFILETIME()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/Windows/
DWindowsSupport.h237 inline FILETIME toFILETIME(TimePoint<> TP) { in toFILETIME() argument
239 TimeInteger.QuadPart = TP.time_since_epoch().count() / 100; in toFILETIME()
/third_party/mbedtls/library/
Drsa.c891 mbedtls_mpi TP, TQ; in mbedtls_rsa_private() local
947 mbedtls_mpi_init( &TP ); mbedtls_mpi_init( &TQ ); in mbedtls_rsa_private()
1023 MBEDTLS_MPI_CHK( mbedtls_mpi_exp_mod( &TP, &T, DP, &ctx->P, &ctx->RP ) ); in mbedtls_rsa_private()
1029 MBEDTLS_MPI_CHK( mbedtls_mpi_sub_mpi( &T, &TP, &TQ ) ); in mbedtls_rsa_private()
1030 MBEDTLS_MPI_CHK( mbedtls_mpi_mul_mpi( &TP, &T, &ctx->QP ) ); in mbedtls_rsa_private()
1031 MBEDTLS_MPI_CHK( mbedtls_mpi_mod_mpi( &T, &TP, &ctx->P ) ); in mbedtls_rsa_private()
1036 MBEDTLS_MPI_CHK( mbedtls_mpi_mul_mpi( &TP, &T, &ctx->Q ) ); in mbedtls_rsa_private()
1037 MBEDTLS_MPI_CHK( mbedtls_mpi_add_mpi( &T, &TQ, &TP ) ); in mbedtls_rsa_private()
1079 mbedtls_mpi_free( &TP ); mbedtls_mpi_free( &TQ ); in mbedtls_rsa_private()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Demangle/
DMicrosoftDemangle.cpp2198 NodeList &TP = **Current; in demangleTemplateParameterList() local
2203 TP.N = demangleFullyQualifiedTypeName(MangledName); in demangleTemplateParameterList()
2206 TP.N = demangleType(MangledName, QualifierMangleMode::Drop); in demangleTemplateParameterList()
2209 TP.N = demangleType(MangledName, QualifierMangleMode::Mangle); in demangleTemplateParameterList()
2213 TP.N = TPRN = Arena.alloc<TemplateParameterReferenceNode>(); in demangleTemplateParameterList()
2255 TP.N = TPRN = Arena.alloc<TemplateParameterReferenceNode>(); in demangleTemplateParameterList()
2259 TP.N = TPRN = Arena.alloc<TemplateParameterReferenceNode>(); in demangleTemplateParameterList()
2287 TP.N = Arena.alloc<IntegerLiteralNode>(Value, IsNegative); in demangleTemplateParameterList()
2289 TP.N = demangleType(MangledName, QualifierMangleMode::Drop); in demangleTemplateParameterList()
2294 Current = &TP.Next; in demangleTemplateParameterList()
/third_party/python/Lib/idlelib/
DHISTORY.txt185 browsers (TP)
188 multi-line statements (TP)
194 - Comment out region now inserts ## to make it stand out more (TP)

1234