Home
last modified time | relevance | path

Searched refs:Methods (Results 1 – 25 of 161) sorted by relevance

1234567

/third_party/typescript/tests/baselines/reference/
DmappedTypeAsClauseRelationships.types3 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
DmappedTypeAsClauseRelationships.symbols3 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))
DmappedTypeAsClauseRelationships.js3 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
DmappedTypeAsClauseRelationships.errors.txt9 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
DmappedTypeAsClauses.js22 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<{
DmappedTypeAsClauses.types43 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; }>
DmappedTypeAsClauses.symbols64 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/
D7zEncode.cpp151 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()
D7zCompressionMode.h42 CObjectVector<CMethodFull> Methods; member
68 bool IsEmpty() const { return (Methods.IsEmpty() && !PasswordIsDefined); } in IsEmpty()
D7zUpdate.cpp960 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/
Dcordz_update_tracker_test.cc35 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/
Ddescriptor.cc679 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 …]
Dmessage_factory.cc236 static PyMethodDef Methods[] = { variable
279 message_factory::Methods, // tp_methods
Dextension_dict.cc362 static PyMethodDef Methods[] = { variable
399 extension_dict::Methods, // tp_methods
/third_party/typescript/tests/cases/conformance/types/mapped/
DmappedTypeAsClauseRelationships.ts2 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
DmappedTypeAsClauses.ts24 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/
DREADME.md103 * 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/
DTypeRecord.h702 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/
DISVCEncoder.rest8 Methods(ISVCEncoder)
DISVCDecoder.rest8 Methods(ISVCDecoder)
/third_party/python/Doc/c-api/
Dmethod.rst52 Methods are bound function objects. Methods are always bound to an instance of
/third_party/protobuf/csharp/src/Google.Protobuf/Reflection/
DServiceDescriptor.cs79 public IList<MethodDescriptor> Methods property in Google.Protobuf.Reflection.ServiceDescriptor
/third_party/node/deps/undici/src/
DREADME.md100 ## 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/
DMockClient.md35 ## Instance Methods
/third_party/googletest/docs/reference/
Dtesting.md423 #### 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 …]

1234567