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

/external/tpm2/generator/
H A 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()})
526 def MethodName(self): function
[all...]
/external/llvm/include/llvm/DebugInfo/PDB/
H A DPDBSymbol.h22 #define FORWARD_SYMBOL_METHOD(MethodName) \
23 auto MethodName() const->decltype(RawSymbol->MethodName()) { \
24 return RawSymbol->MethodName(); \
/external/lzma/CPP/7zip/Common/
H A DMethodProps.h173 UString MethodName; member in class:COneMethodInfo
178 MethodName.Empty();
180 bool IsEmpty() const { return MethodName.IsEmpty() && Props.IsEmpty(); }
H A DMethodProps.cpp426 MethodName = s;
429 MethodName.DeleteFrom(splitPos);
/external/clang/include/clang/Analysis/Analyses/
H A DConsumed.h105 /// \param MethodName -- The name of the method that was incorrectly
111 virtual void warnUseOfTempInInvalidState(StringRef MethodName, argument
116 /// \param MethodName -- The name of the method that was incorrectly
125 virtual void warnUseInInvalidState(StringRef MethodName, argument
/external/lzma/CPP/7zip/UI/Common/
H A DHashCalc.cpp60 if (m.MethodName.IsEmpty())
61 m.MethodName = k_DefaultHashMethod;
63 if (m.MethodName == L"*")
79 // m.MethodName.RemoveChar(L'-');
81 if (!FindHashMethod(EXTERNAL_CODECS_LOC_VARS m.MethodName, id))
H A DBench.cpp1038 method.MethodName, methodId, numInStreams, numOutStreams))
1906 UString methodName = method.MethodName;
2197 if (method.MethodName.IsEmpty())
2198 method.MethodName = L"LZMA";
2214 UString methodName = method.MethodName;
2217 method.MethodName = methodName;
2327 bool totalBenchMode = (method.MethodName == L"*");
2495 if (StringsAreEqualNoCase_Ascii(method2.MethodName, L"LZMA"))
/external/lzma/CPP/7zip/Archive/7z/
H A D7zHandlerOut.cpp45 m.MethodName, dest.Id, dest.NumInStreams, dest.NumOutStreams))
56 m.MethodName = k_LZMA_Name;
73 UString &methodName = _methods[i].MethodName;
80 m.MethodName = (GetLevel() == 0 ? k_Copy_Name : kDefaultMethodName);
852 if (!_filterMethod.MethodName.IsEmpty())
/external/clang/lib/AST/
H A DVTableBuilder.cpp2104 std::string MethodName = local
2108 MethodNamesAndDecls.insert(std::make_pair(MethodName, MD));
2112 const std::string &MethodName = I.first; local
2122 Out << "Thunks for '" << MethodName << "' (" << ThunksVector.size();
2171 std::string MethodName = local
2179 IndicesMap[VTableIndex] = MethodName + " [complete]";
2180 IndicesMap[VTableIndex + 1] = MethodName + " [deleting]";
2183 IndicesMap[MethodVTableIndices[MD]] = MethodName;
2195 const std::string &MethodName = I.second; local
2197 Out << llvm::format("%4" PRIu64 " | ", VTableIndex) << MethodName
3204 std::string MethodName = PredefinedExpr::ComputeName( local
3211 const std::string &MethodName = MethodNameAndDecl.first; local
3625 std::string MethodName = PredefinedExpr::ComputeName( local
3663 const std::string &MethodName = I.second; local
[all...]
/external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/apitools/gen/
H A Dutil.py105 # TODO(craigcitro): Get rid of this case here and in MethodName.
116 def MethodName(self, name, separator='_'): member in class:Names
H A Dservice_registry.py421 method_name = self.__names.MethodName(method_name)
/external/lzma/CPP/7zip/Archive/
H A DXzHandler.cpp946 if (!_filterMethod.MethodName.IsEmpty())
952 if (StringsAreEqualNoCase_Ascii(_filterMethod.MethodName, pair.Name))
967 UString &methodName = _methods[0].MethodName;
/external/clang/lib/ARCMigrate/
H A DObjCMT.cpp1332 std::string MethodName = MethodIdName->getName();
1334 StringRef STRefMethodName(MethodName);
1344 MethodName = STRefMethodName.substr(len);
1346 std::string MethodNameSubStr = MethodName.substr(0, 3);
1354 StringRef LoweredMethodName(MethodName);
/external/clang/lib/Sema/
H A DSemaLambda.cpp379 DeclarationName MethodName local
388 DeclarationNameInfo(MethodName,
404 Method->getLocation(), MethodName,
H A DAnalysisBasedWarnings.cpp1780 void warnUseOfTempInInvalidState(StringRef MethodName, StringRef State,
1784 diag::warn_use_of_temp_in_invalid_state) << MethodName << State);
1789 void warnUseInInvalidState(StringRef MethodName, StringRef VariableName,
1793 MethodName << VariableName << State);
H A DSemaDeclObjC.cpp3406 std::string MethodName = Method->getSelector().getAsString(); local
3408 unsigned MinPossibleEditDistance = abs((int)MethodName.size() - (int)Typo.size());
3412 unsigned EditDistance = Typo.edit_distance(MethodName, true, MaxEditDistance);
/external/clang/lib/CodeGen/
H A DCGObjCGNU.cpp889 StringRef CategoryName, const Selector MethodName,
891 std::string MethodNameColonStripped = MethodName.getAsString();
2621 Selector MethodName = OMD->getSelector(); local
2628 MethodName, isClassMethod);
888 SymbolNameForMethod( StringRef ClassName, StringRef CategoryName, const Selector MethodName, bool isClassMethod) argument
H A DCGDebugInfo.cpp218 SmallString<256> MethodName; local
219 llvm::raw_svector_ostream OS(MethodName);
1133 StringRef MethodName = getFunctionName(Method); local
1193 RecordTy, MethodName, MethodLinkageName, MethodDefUnit, MethodLine,
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime.Tests/
H A DAntlr.Runtime.Tree.Tests.pas157 constructor Create(MethodName: String); override;
1569 constructor TestITreeWizard.Create(MethodName: String);
/external/protobuf/src/google/protobuf/
H A Ddescriptor_unittest.cc1207 TEST_F(ServiceDescriptorTest, MethodName) {

Completed in 1517 milliseconds