Home
last modified time | relevance | path

Searched refs:Methods (Results 1 - 25 of 29) sorted by relevance

12

/third_party/lzma/CPP/7zip/Archive/7z/
H A D7zEncode.cpp154 FOR_VECTOR (m, _options.Methods) in CreateMixerCoder()
156 const CMethodFull &methodFull = _options.Methods[m]; in CreateMixerCoder()
560 if (_options.Methods.IsEmpty()) in EncoderConstr()
571 _options.Methods.Add(method); in EncoderConstr()
586 for (i = 0; i < _options.Methods.Size(); i++) in EncoderConstr()
588 const CMethodFull &methodFull = _options.Methods[i]; in EncoderConstr()
596 if (i != _options.Methods.Size() - 1) in EncoderConstr()
695 _options.Methods.Add(method); in EncoderConstr()
707 for (unsigned i = _options.Methods.Size(); i != 0;) in EncoderConstr()
708 _decompressionMethods.Add(_options.Methods[ in EncoderConstr()
[all...]
H A D7zCompressionMode.h37 Methods[0] is filter method
42 CObjectVector<CMethodFull> Methods; member
68 bool IsEmpty() const { return (Methods.IsEmpty() && !PasswordIsDefined); } in IsEmpty()
H A D7zUpdate.cpp1177 for (unsigned c = 1; c < mode.Methods.Size(); c++) in AddBondForFilter()
1201 // mode.Methods[0] must be k_BCJ2 method ! in AddBcj2Methods()
1213 unsigned methodIndex = mode.Methods.Size(); in AddBcj2Methods()
1217 for (unsigned i = 1; i + 1 < mode.Methods.Size(); i++) in AddBcj2Methods()
1227 mode.Methods.Add(m); in AddBcj2Methods()
1228 mode.Methods.Add(m); in AddBcj2Methods()
1243 const CMethodFull &m = mode.Methods[0]; in MakeExeMethod()
1256 CMethodFull &m = mode.Methods.InsertNew(0); in MakeExeMethod()
1311 if (nextCoder < mode.Methods.Size()) in MakeExeMethod()
1313 CMethodFull &nextMethod = mode.Methods[nextCode in MakeExeMethod()
[all...]
H A D7zHandlerOut.cpp69 CMethodFull &methodFull = headerMethod.Methods.AddNew(); in SetHeaderMethod()
131 CMethodFull &methodFull = methodMode.Methods.AddNew(); in SetMainMethod()
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/
H A Dcordz_update_tracker_test.cc35 using Methods = std::array<Method, Method::kNumMethods>;
38 Methods AllMethods() { in AllMethods()
39 return Methods{Method::kUnknown, in AllMethods()
/third_party/typescript/tests/baselines/reference/
H A 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
H A 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<{
/third_party/protobuf/python/google/protobuf/pyext/
H A Ddescriptor.cc679 static PyMethodDef Methods[] = { member
716 message_descriptor::Methods, // tp_methods
996 static PyMethodDef Methods[] = { member
1031 field_descriptor::Methods, // tp_methods
1131 static PyMethodDef Methods[] = { member
1186 enum_descriptor::Methods, // tp_methods
1271 static PyMethodDef Methods[] = { member
1306 enumvalue_descriptor::Methods, // tp_methods
1446 static PyMethodDef Methods[] = { member
1482 file_descriptor::Methods, // tp_method
1606 static PyMethodDef Methods[] = { global() member
1722 static PyMethodDef Methods[] = { global() member
1835 static PyMethodDef Methods[] = { global() member
[all...]
H A Dmessage_factory.cc236 static PyMethodDef Methods[] = { member
279 message_factory::Methods, // tp_methods
H A Dextension_dict.cc362 static PyMethodDef Methods[] = { member
399 extension_dict::Methods, // tp_methods
H A Drepeated_composite_container.cc515 static PyMethodDef Methods[] = { in Subscript() member
567 repeated_composite_container::Methods, // tp_methods
H A Ddescriptor_pool.cc630 static PyMethodDef Methods[] = { member
705 cdescriptor_pool::Methods, // tp_methods
H A Drepeated_scalar_container.cc713 static PyMethodDef Methods[] = { in Subscript() member
765 repeated_scalar_container::Methods, // tp_methods in Subscript()
H A Dmessage.cc2508 static PyMethodDef Methods[] = { member
2560 // Static Methods.
2800 cmessage::Methods, // tp_methods
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/CodeView/
H A DTypeRecord.h702 ArrayRef<StringRef> Methods) in VFTableRecord()
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; member in llvm::codeview::MethodOverloadListRecord
700 VFTableRecord(TypeIndex CompleteClass, TypeIndex OverriddenVFTable, uint32_t VFPtrOffset, StringRef Name, ArrayRef<StringRef> Methods) VFTableRecord() argument
/third_party/protobuf/csharp/src/Google.Protobuf/Reflection/
H A DServiceDescriptor.cs79 public IList<MethodDescriptor> Methods property in Google.Protobuf.Reflection.ServiceDescriptor
/third_party/protobuf/csharp/src/Google.Protobuf.Test/Reflection/
H A DCustomOptionsTest.cs153 var methodDescriptor = serviceDescriptor.Methods[0]; in OptionLocations()
213 Assert.NotNull(fileDescriptor.Services[0].Methods[0].CustomOptions); in NoOptions()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/AsmPrinter/
H A DCodeViewDebug.cpp2108 MethodsMap Methods; member
2176 Info.Methods[SP->getRawName()].push_back(SP); in collectClassInfo()
2397 for (auto &MethodItr : Info.Methods) { in lowerRecordFieldList()
2400 std::vector<OneMethodRecord> Methods; in lowerRecordFieldList() local
2409 Methods.push_back(OneMethodRecord( in lowerRecordFieldList()
2415 assert(!Methods.empty() && "Empty methods map entry"); in lowerRecordFieldList()
2416 if (Methods.size() == 1) in lowerRecordFieldList()
2417 ContinuationBuilder.writeMemberType(Methods[0]); in lowerRecordFieldList()
2421 MethodOverloadListRecord MOLR(Methods); in lowerRecordFieldList()
2424 OverloadedMethodRecord OMR(Methods in lowerRecordFieldList()
[all...]
/third_party/lzma/CPP/7zip/UI/Common/
H A DHashCalc.h191 UStringVector Methods; member
H A DArchiveCommandLine.cpp1643 hashOptions.Methods = options.HashMethods; in Parse2()
/third_party/node/deps/v8/src/torque/
H A Dtypes.h562 const std::vector<Method*>& Methods() const { in Methods() function in v8::internal::torque::AggregateType
566 std::vector<Method*> Methods(const std::string& name) const;
H A Dtypes.cc488 std::vector<Method*> AggregateType::Methods(const std::string& name) const { in Methods() function in v8::internal::torque::AggregateType
495 return (*aggregate_parent)->Methods(name); in Methods()
/third_party/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/
H A DApi.cs47 new pbr::GeneratedClrTypeInfo(typeof(global::Google.Protobuf.WellKnownTypes.Api), global::Google.Protobuf.WellKnownTypes.Api.Parser, new[]{ "Name", "Methods", "Options", "Version", "SourceContext", "Mixins", "Syntax" }, null, null, null, null), in ApiReflection()
135 public pbc::RepeatedField<global::Google.Protobuf.WellKnownTypes.Method> Methods { property in Google.Protobuf.WellKnownTypes.Api
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/CodeView/
H A DTypeRecordMapping.cpp559 error(IO.mapVectorTail(Record.Methods, MapOneMethodRecord(true), "Method")); in visitKnownRecord()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/
H A DCodeViewYAMLTypes.cpp594 IO.mapRequired("Methods", Record.Methods); in map()

Completed in 38 milliseconds

12