/third_party/curl/docs/cmdline-opts/ |
D | write-out.d | 49 .TP 15 53 .TP 56 .TP 59 .TP 62 .TP 128 .TP 133 .TP 136 .TP 140 .TP 143 .TP [all …]
|
D | quote.d | 38 .TP 43 .TP 48 .TP 52 .TP 57 .TP 61 .TP 64 .TP 69 .TP 72 .TP 76 .TP [all …]
|
D | proto.d | 16 .TP 3 20 .TP 23 .TP 32 .TP 15 35 .TP 38 .TP
|
D | range.d | 17 .TP 10 20 .TP 23 .TP 26 .TP 29 .TP 32 .TP
|
D | request.d | 16 .TP 15 36 .TP 40 .TP 44 .TP 47 .TP
|
D | telnet-option.d | 16 .TP 15 18 .TP 20 .TP
|
D | variable.d | 42 .TP 15 45 .TP 48 .TP 51 .TP
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/Unix/ |
D | Unix.h | 84 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/include/llvm/ExecutionEngine/Orc/ |
D | LazyReexports.h | 87 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()
|
D | IndirectionUtils.h | 200 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-10.0/llvm/lib/Support/Unix/ |
D | Unix.h | 92 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/typescript/tests/cases/conformance/types/mapped/ |
D | mappedTypeAsClauses.ts | 98 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 };
|
D | mappedTypeModifiers.ts | 5 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/typescript/tests/baselines/reference/ |
D | mappedTypeAsClauses.js | 96 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 }; 263 [TP in keyof S as Equal<S[TP], V> extends true ? TP : never]: any; 266 [TP in keyof S as If<Equal<S[TP], V>, TP, never>]: any; 269 [TP in keyof S as If<Equal<S[TP], V>, TP, never>]: any;
|
D | mappedTypeModifiers.types | 7 type TP = { a?: number, b?: string }; 8 >TP : { a?: number | undefined; b?: string | undefined; } 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 …]
|
D | mappedTypeModifiers.js | 3 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>;
|
D | mappedTypeAsClauses.symbols | 289 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 …]
|
D | mappedTypeAsClauses.errors.txt | 99 type GetKey<S, V> = keyof { [TP in keyof S as Equal<S[TP], V> extends true ? TP : never]: any }; 101 type GetKeyWithIf<S, V> = keyof { [TP in keyof S as If<Equal<S[TP], V>, TP, never>]: any }; 103 type GetObjWithIf<S, V> = { [TP in keyof S as If<Equal<S[TP], V>, TP, never>]: any };
|
D | mappedTypeModifiers.symbols | 7 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 …]
|
D | mappedTypeAsClauses.types | 184 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 };
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
D | Chrono.cpp | 25 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/ |
D | member_function_declarations_5.ts | 25 class TP { class 31 class CP extends TP { 36 let x = TP.createthis();
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/ |
D | Chrono.h | 36 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/toybox/tests/ |
D | man.test | 22 .TP 25 .TP 29 .TP 108 .TP 179 .TP 10
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
D | Chrono.h | 36 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,
|