Home
last modified time | relevance | path

Searched refs:MethodName (Results 1 – 20 of 20) sorted by relevance

/external/tpm2/generator/
Dcommand_generator.py422 'command_name': self.MethodName(),
453 'command_name': self.MethodName()})
475 self._EXEC_COMMAND_IMPL_START % {'command_name': self.MethodName()})
478 'command_name': self.MethodName(),
483 'command_name': self.MethodName(),
487 'command_name': self.MethodName(),
498 out_file.write(self._STRUCT_DECL_END % {'command_name': self.MethodName(),
505 out_file.write(self._STRUCT_DECL_END % {'command_name': self.MethodName(),
509 self._FUNCTION_DECL_IN_OUT % {'command_name': self.MethodName()})
512 self._FUNCTION_DECL_OUT % {'command_name': self.MethodName()})
[all …]
/external/llvm/include/llvm/DebugInfo/PDB/
DPDBSymbol.h22 #define FORWARD_SYMBOL_METHOD(MethodName) \ argument
23 auto MethodName() const->decltype(RawSymbol->MethodName()) { \
24 return RawSymbol->MethodName(); \
/external/lzma/CPP/7zip/Common/
DMethodProps.h173 UString MethodName;
178 MethodName.Empty(); in Clear()
180 bool IsEmpty() const { return MethodName.IsEmpty() && Props.IsEmpty(); } in IsEmpty()
DMethodProps.cpp426 MethodName = s; in ParseMethodFromString()
429 MethodName.DeleteFrom(splitPos); in ParseMethodFromString()
/external/lzma/CPP/7zip/UI/Common/
DHashCalc.cpp60 if (m.MethodName.IsEmpty()) in SetMethods()
61 m.MethodName = k_DefaultHashMethod; in SetMethods()
63 if (m.MethodName == L"*") in SetMethods()
81 if (!FindHashMethod(EXTERNAL_CODECS_LOC_VARS m.MethodName, id)) in SetMethods()
DBench.cpp1038 method.MethodName, methodId, numInStreams, numOutStreams)) in MethodBench()
1906 UString methodName = method.MethodName; in CrcBench()
2197 if (method.MethodName.IsEmpty()) in Bench()
2198 method.MethodName = L"LZMA"; in Bench()
2214 UString methodName = method.MethodName; in Bench()
2217 method.MethodName = methodName; in Bench()
2327 bool totalBenchMode = (method.MethodName == L"*"); in Bench()
2495 if (StringsAreEqualNoCase_Ascii(method2.MethodName, L"LZMA")) in Bench()
/external/lzma/CPP/7zip/Archive/7z/
D7zHandlerOut.cpp45 m.MethodName, dest.Id, dest.NumInStreams, dest.NumOutStreams)) in PropsMethod_To_FullMethod()
56 m.MethodName = k_LZMA_Name; in SetHeaderMethod()
73 UString &methodName = _methods[i].MethodName; in AddDefaultMethod()
80 m.MethodName = (GetLevel() == 0 ? k_Copy_Name : kDefaultMethodName); in AddDefaultMethod()
852 if (!_filterMethod.MethodName.IsEmpty()) in SetProperties()
/external/clang/include/clang/Analysis/Analyses/
DConsumed.h111 virtual void warnUseOfTempInInvalidState(StringRef MethodName, in warnUseOfTempInInvalidState() argument
125 virtual void warnUseInInvalidState(StringRef MethodName, in warnUseInInvalidState() argument
/external/clang/lib/AST/
DVTableBuilder.cpp2104 std::string MethodName = in dumpLayout() local
2108 MethodNamesAndDecls.insert(std::make_pair(MethodName, MD)); in dumpLayout()
2112 const std::string &MethodName = I.first; in dumpLayout() local
2122 Out << "Thunks for '" << MethodName << "' (" << ThunksVector.size(); in dumpLayout()
2171 std::string MethodName = in dumpLayout() local
2179 IndicesMap[VTableIndex] = MethodName + " [complete]"; in dumpLayout()
2180 IndicesMap[VTableIndex + 1] = MethodName + " [deleting]"; in dumpLayout()
2183 IndicesMap[MethodVTableIndices[MD]] = MethodName; in dumpLayout()
2195 const std::string &MethodName = I.second; in dumpLayout() local
2197 Out << llvm::format("%4" PRIu64 " | ", VTableIndex) << MethodName in dumpLayout()
[all …]
/external/lzma/CPP/7zip/Archive/
DXzHandler.cpp946 if (!_filterMethod.MethodName.IsEmpty()) in SetProperties()
952 if (StringsAreEqualNoCase_Ascii(_filterMethod.MethodName, pair.Name)) in SetProperties()
967 UString &methodName = _methods[0].MethodName; in SetProperties()
/external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/apitools/gen/
Dutil.py116 def MethodName(self, name, separator='_'): member in Names
Dservice_registry.py421 method_name = self.__names.MethodName(method_name)
/external/clang/lib/ARCMigrate/
DObjCMT.cpp1332 std::string MethodName = MethodIdName->getName(); in migrateFactoryMethod() local
1334 StringRef STRefMethodName(MethodName); in migrateFactoryMethod()
1344 MethodName = STRefMethodName.substr(len); in migrateFactoryMethod()
1346 std::string MethodNameSubStr = MethodName.substr(0, 3); in migrateFactoryMethod()
1354 StringRef LoweredMethodName(MethodName); in migrateFactoryMethod()
/external/clang/lib/Sema/
DSemaLambda.cpp379 DeclarationName MethodName in startLambdaDefinition() local
388 DeclarationNameInfo(MethodName, in startLambdaDefinition()
404 Method->getLocation(), MethodName, in startLambdaDefinition()
DAnalysisBasedWarnings.cpp1780 void warnUseOfTempInInvalidState(StringRef MethodName, StringRef State, in warnUseOfTempInInvalidState() argument
1784 diag::warn_use_of_temp_in_invalid_state) << MethodName << State); in warnUseOfTempInInvalidState()
1789 void warnUseInInvalidState(StringRef MethodName, StringRef VariableName, in warnUseInInvalidState() argument
1793 MethodName << VariableName << State); in warnUseInInvalidState()
DSemaDeclObjC.cpp3406 std::string MethodName = Method->getSelector().getAsString(); in HelperSelectorsForTypoCorrection() local
3408 unsigned MinPossibleEditDistance = abs((int)MethodName.size() - (int)Typo.size()); in HelperSelectorsForTypoCorrection()
3412 unsigned EditDistance = Typo.edit_distance(MethodName, true, MaxEditDistance); in HelperSelectorsForTypoCorrection()
/external/clang/lib/CodeGen/
DCGObjCGNU.cpp889 StringRef CategoryName, const Selector MethodName, in SymbolNameForMethod() argument
891 std::string MethodNameColonStripped = MethodName.getAsString(); in SymbolNameForMethod()
2621 Selector MethodName = OMD->getSelector(); in GenerateMethod() local
2628 MethodName, isClassMethod); in GenerateMethod()
DCGDebugInfo.cpp218 SmallString<256> MethodName; in getObjCMethodName() local
219 llvm::raw_svector_ostream OS(MethodName); in getObjCMethodName()
1133 StringRef MethodName = getFunctionName(Method); in CreateCXXMemberFunction() local
1193 RecordTy, MethodName, MethodLinkageName, MethodDefUnit, MethodLine, in CreateCXXMemberFunction()
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime.Tests/
DAntlr.Runtime.Tree.Tests.pas157 constructor Create(MethodName: String); override;
1569 constructor TestITreeWizard.Create(MethodName: String);
/external/protobuf/src/google/protobuf/
Ddescriptor_unittest.cc1207 TEST_F(ServiceDescriptorTest, MethodName) { in TEST_F() argument