/third_party/typescript/tests/baselines/reference/ |
D | mappedTypeAsClauseRelationships.types | 3 type Methods<T> = { [P in keyof T as T[P] extends Function ? P : never]: T[P] }; 4 >Methods : Methods<T> 6 type H<T> = T[keyof Methods<T>]; // Ok
|
D | mappedTypeAsClauseRelationships.symbols | 3 type Methods<T> = { [P in keyof T as T[P] extends Function ? P : never]: T[P] }; 4 >Methods : Symbol(Methods, Decl(mappedTypeAsClauseRelationships.ts, 0, 0)) 15 type H<T> = T[keyof Methods<T>]; // Ok 19 >Methods : Symbol(Methods, Decl(mappedTypeAsClauseRelationships.ts, 0, 0))
|
D | mappedTypeAsClauseRelationships.js | 3 type Methods<T> = { [P in keyof T as T[P] extends Function ? P : never]: T[P] }; 4 type H<T> = T[keyof Methods<T>]; // Ok
|
D | mappedTypeAsClauseRelationships.errors.txt | 9 type Methods<T> = { [P in keyof T as T[P] extends Function ? P : never]: T[P] }; 10 type H<T> = T[keyof Methods<T>]; // Ok
|
D | mappedTypeAsClauses.js | 22 type Methods<T> = { [P in keyof T as T[P] extends Function ? P : never]: T[P] }; 23 type TM1 = Methods<{ foo(): number, bar(x: string): boolean, baz: string | number }>; 201 type Methods<T> = { 204 type TM1 = Methods<{
|
D | mappedTypeAsClauses.types | 43 type Methods<T> = { [P in keyof T as T[P] extends Function ? P : never]: T[P] }; 44 >Methods : Methods<T> 46 type TM1 = Methods<{ foo(): number, bar(x: string): boolean, baz: string | number }>; 47 >TM1 : Methods<{ foo(): number; bar(x: string): boolean; baz: string | number; }>
|
D | mappedTypeAsClauses.symbols | 64 type Methods<T> = { [P in keyof T as T[P] extends Function ? P : never]: T[P] }; 65 >Methods : Symbol(Methods, Decl(mappedTypeAsClauses.ts, 16, 38)) 76 type TM1 = Methods<{ foo(): number, bar(x: string): boolean, baz: string | number }>; 78 >Methods : Symbol(Methods, Decl(mappedTypeAsClauses.ts, 16, 38))
|
/third_party/lzma/CPP/7zip/Archive/7z/ |
D | 7zEncode.cpp | 151 FOR_VECTOR (m, _options.Methods) in CreateMixerCoder() 153 const CMethodFull &methodFull = _options.Methods[m]; in CreateMixerCoder() 518 if (_options.Methods.IsEmpty()) in EncoderConstr() 529 _options.Methods.Add(method); in EncoderConstr() 544 for (i = 0; i < _options.Methods.Size(); i++) in EncoderConstr() 546 const CMethodFull &methodFull = _options.Methods[i]; in EncoderConstr() 554 if (i != _options.Methods.Size() - 1) in EncoderConstr() 653 _options.Methods.Add(method); in EncoderConstr() 665 for (unsigned i = _options.Methods.Size(); i != 0;) in EncoderConstr() 666 _decompressionMethods.Add(_options.Methods[--i].Id); in EncoderConstr()
|
D | 7zCompressionMode.h | 42 CObjectVector<CMethodFull> Methods; member 68 bool IsEmpty() const { return (Methods.IsEmpty() && !PasswordIsDefined); } in IsEmpty()
|
D | 7zUpdate.cpp | 960 for (unsigned c = 1; c < mode.Methods.Size(); c++) in AddBondForFilter() 996 unsigned methodIndex = mode.Methods.Size(); in AddBcj2Methods() 1000 for (unsigned i = 1; i + 1 < mode.Methods.Size(); i++) in AddBcj2Methods() 1010 mode.Methods.Add(m); in AddBcj2Methods() 1011 mode.Methods.Add(m); in AddBcj2Methods() 1026 const CMethodFull &m = mode.Methods[0]; in MakeExeMethod() 1039 CMethodFull &m = mode.Methods.InsertNew(0); in MakeExeMethod() 1085 if (nextCoder < mode.Methods.Size()) in MakeExeMethod() 1087 CMethodFull &nextMethod = mode.Methods[nextCoder]; in MakeExeMethod() 1648 FOR_VECTOR (i, method.Methods) in Update() [all …]
|
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/ |
D | cordz_update_tracker_test.cc | 35 using Methods = std::array<Method, Method::kNumMethods>; typedef 38 Methods AllMethods() { in AllMethods() 39 return Methods{Method::kUnknown, in AllMethods()
|
/third_party/protobuf/python/google/protobuf/pyext/ |
D | descriptor.cc | 679 static PyMethodDef Methods[] = { variable 716 message_descriptor::Methods, // tp_methods 996 static PyMethodDef Methods[] = { variable 1031 field_descriptor::Methods, // tp_methods 1131 static PyMethodDef Methods[] = { variable 1186 enum_descriptor::Methods, // tp_methods 1271 static PyMethodDef Methods[] = { variable 1306 enumvalue_descriptor::Methods, // tp_methods 1446 static PyMethodDef Methods[] = { variable 1482 file_descriptor::Methods, // tp_methods [all …]
|
D | message_factory.cc | 236 static PyMethodDef Methods[] = { variable 279 message_factory::Methods, // tp_methods
|
D | extension_dict.cc | 362 static PyMethodDef Methods[] = { variable 399 extension_dict::Methods, // tp_methods
|
/third_party/typescript/tests/cases/conformance/types/mapped/ |
D | mappedTypeAsClauseRelationships.ts | 2 type Methods<T> = { [P in keyof T as T[P] extends Function ? P : never]: T[P] }; alias 3 type H<T> = T[keyof Methods<T>]; // Ok
|
D | mappedTypeAsClauses.ts | 24 type Methods<T> = { [P in keyof T as T[P] extends Function ? P : never]: T[P] }; alias 25 type TM1 = Methods<{ foo(): number, bar(x: string): boolean, baz: string | number }>;
|
/third_party/node/tools/doc/ |
D | README.md | 103 * Classes have (description, Properties, Methods, Events). 106 * Methods have (list of arguments, returned value if defined, description).
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/CodeView/ |
D | TypeRecord.h | 702 ArrayRef<StringRef> Methods) in VFTableRecord() argument 706 MethodNames.insert(MethodNames.end(), Methods.begin(), Methods.end()); in VFTableRecord() 761 MethodOverloadListRecord(ArrayRef<OneMethodRecord> Methods) in MethodOverloadListRecord() argument 762 : TypeRecord(TypeRecordKind::MethodOverloadList), Methods(Methods) {} in MethodOverloadListRecord() 764 ArrayRef<OneMethodRecord> getMethods() const { return Methods; } in getMethods() 766 std::vector<OneMethodRecord> Methods; variable
|
/third_party/openh264/docs/doxygen/ |
D | ISVCEncoder.rest | 8 Methods(ISVCEncoder)
|
D | ISVCDecoder.rest | 8 Methods(ISVCDecoder)
|
/third_party/python/Doc/c-api/ |
D | method.rst | 52 Methods are bound function objects. Methods are always bound to an instance of
|
/third_party/protobuf/csharp/src/Google.Protobuf/Reflection/ |
D | ServiceDescriptor.cs | 79 public IList<MethodDescriptor> Methods property in Google.Protobuf.Reflection.ServiceDescriptor
|
/third_party/node/deps/undici/src/ |
D | README.md | 100 ## Common API Methods 156 …d resource using [HTTP CONNECT](https://developer.mozilla.org/en-US/docs/Web/HTTP/Methods/CONNECT). 288 …equest methods - HEAD](https://developer.mozilla.org/en-US/docs/Web/HTTP/Methods/HEAD) for more de… 326 Sets the global dispatcher used by Common API Methods. 330 Gets the global dispatcher used by Common API Methods.
|
/third_party/node/deps/undici/src/docs/api/ |
D | MockClient.md | 35 ## Instance Methods
|
/third_party/googletest/docs/reference/ |
D | testing.md | 423 #### Protected Methods {#Environment-protected} 470 #### Public Methods {#Test-public} 536 #### Protected Methods {#Test-protected} 563 #### Public Methods {#TestSuite-public} 678 #### Public Methods {#TestInfo-public} 772 #### Public Methods {#UnitTest-public} 936 #### Public Methods {#TestEventListener-public} 1033 #### Public Methods {#TestEventListeners-public} 1079 #### Public Methods {#TestPartResult-public} 1161 #### Public Methods {#TestProperty-public} [all …]
|