Home
last modified time | relevance | path

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

12

/freebsd-12.1/contrib/llvm/tools/lldb/source/Core/
H A DRichManglingContext.cpp30 delete get<CPlusPlusLanguage::MethodName>(m_cxx_method_parser); in ResetProvider()
59 m_cxx_method_parser = new CPlusPlusLanguage::MethodName(demangled); in FromCxxMethodName()
71 get<CPlusPlusLanguage::MethodName>(m_cxx_method_parser)->GetBasename(); in IsCtorOrDtor()
86 return get<CPlusPlusLanguage::MethodName>(m_cxx_method_parser)->IsValid(); in IsFunction()
133 get<CPlusPlusLanguage::MethodName>(m_cxx_method_parser)->GetBasename(); in ParseFunctionBaseName()
151 get<CPlusPlusLanguage::MethodName>(m_cxx_method_parser)->GetContext(); in ParseFunctionDeclContextName()
168 m_buffer = get<CPlusPlusLanguage::MethodName>(m_cxx_method_parser) in ParseFullName()
H A DModule.cpp663 CPlusPlusLanguage::MethodName cpp_method(name); in LookupInfo()
681 CPlusPlusLanguage::MethodName cpp_method(name); in LookupInfo()
714 CPlusPlusLanguage::MethodName cpp_method(name); in LookupInfo()
772 CPlusPlusLanguage::MethodName cpp_method(full_name); in Prune()
H A DMangled.cpp108 CPlusPlusLanguage::MethodName cxx_method(demangled); in get_demangled_name_without_arguments()
/freebsd-12.1/contrib/llvm/include/llvm/DebugInfo/PDB/
H A DPDBSymbol.h20 #define FORWARD_SYMBOL_METHOD(MethodName) \ argument
21 auto MethodName() const->decltype(RawSymbol->MethodName()) { \
22 return RawSymbol->MethodName(); \
39 #define FORWARD_SYMBOL_ID_METHOD(MethodName) \ argument
40 FORWARD_SYMBOL_ID_METHOD_WITH_NAME(MethodName, MethodName)
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/
H A DObjCLanguage.h27 class MethodName {
31 MethodName() in MethodName() function
35 MethodName(const char *name, bool strict) in MethodName() function
40 MethodName(llvm::StringRef name, bool strict) in MethodName() function
H A DObjCLanguage.cpp75 void ObjCLanguage::MethodName::Clear() { in Clear()
84 bool ObjCLanguage::MethodName::SetName(llvm::StringRef name, bool strict) { in SetName()
119 bool ObjCLanguage::MethodName::SetName(const char *name, bool strict) { in SetName()
123 const ConstString &ObjCLanguage::MethodName::GetClassName() { in GetClassName()
149 const ConstString &ObjCLanguage::MethodName::GetClassNameWithCategory() { in GetClassNameWithCategory()
172 const ConstString &ObjCLanguage::MethodName::GetSelector() { in GetSelector()
187 const ConstString &ObjCLanguage::MethodName::GetCategory() { in GetCategory()
206 ConstString ObjCLanguage::MethodName::GetFullNameWithoutCategory( in GetFullNameWithoutCategory()
228 size_t ObjCLanguage::MethodName::GetFullNames(std::vector<ConstString> &names, in GetFullNames()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/
H A DCPlusPlusLanguage.h29 class MethodName {
31 MethodName() in MethodName() function
35 MethodName(const ConstString &s) in MethodName() function
H A DCPlusPlusLanguage.cpp80 void CPlusPlusLanguage::MethodName::Clear() { in Clear()
147 bool CPlusPlusLanguage::MethodName::TrySimplifiedParse() { in TrySimplifiedParse()
189 void CPlusPlusLanguage::MethodName::Parse() { in Parse()
209 llvm::StringRef CPlusPlusLanguage::MethodName::GetBasename() { in GetBasename()
215 llvm::StringRef CPlusPlusLanguage::MethodName::GetContext() { in GetContext()
221 llvm::StringRef CPlusPlusLanguage::MethodName::GetArguments() { in GetArguments()
227 llvm::StringRef CPlusPlusLanguage::MethodName::GetQualifiers() { in GetQualifiers()
233 std::string CPlusPlusLanguage::MethodName::GetScopeQualifiedName() { in GetScopeQualifiedName()
/freebsd-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
H A DMoveChecker.cpp502 std::string MethodName = MethodDec->getName().lower(); in isStateResetMethod() local
505 if (MethodName == "reset" || MethodName == "clear" || in isStateResetMethod()
506 MethodName == "destroy" || MethodName == "resize" || in isStateResetMethod()
507 MethodName == "shrink") in isStateResetMethod()
/freebsd-12.1/sys/contrib/dev/acpica/common/
H A Ddmextern.c518 char *MethodName; in AcpiDmGetExternalsFromFile() local
554 MethodName = strtok (NULL, METHOD_SEPARATORS); /* Method namepath */ in AcpiDmGetExternalsFromFile()
555 if (!MethodName) in AcpiDmGetExternalsFromFile()
596 AslGbl_ExternalRefFilename, ArgCount, MethodName); in AcpiDmGetExternalsFromFile()
598 AcpiDmAddPathToExternalList (MethodName, ACPI_TYPE_METHOD, in AcpiDmGetExternalsFromFile()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/
H A DConsumed.h123 virtual void warnUseOfTempInInvalidState(StringRef MethodName, in warnUseOfTempInInvalidState() argument
137 virtual void warnUseInInvalidState(StringRef MethodName, in warnUseInInvalidState() argument
/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DVTableBuilder.cpp2096 std::string MethodName = in dumpLayout() local
2104 const std::string &MethodName = I.first; in dumpLayout() local
2162 std::string MethodName = in dumpLayout() local
2170 IndicesMap[VTableIndex] = MethodName + " [complete]"; in dumpLayout()
2174 IndicesMap[MethodVTableIndices[MD]] = MethodName; in dumpLayout()
2186 const std::string &MethodName = I.second; in dumpLayout() local
3181 std::string MethodName = PredefinedExpr::ComputeName( in dumpLayout() local
3188 const std::string &MethodName = MethodNameAndDecl.first; in dumpLayout() local
3615 std::string MethodName = PredefinedExpr::ComputeName( in dumpMethodLocations() local
3621 IndicesMap[I.second] = MethodName; in dumpMethodLocations()
[all …]
/freebsd-12.1/sys/contrib/dev/acpica/include/
H A Dachware.h241 char *MethodName,
/freebsd-12.1/contrib/llvm/utils/TableGen/
H A DPredicateExpander.cpp186 StringRef MethodName) { in expandTIIFunctionCall() argument
189 OS << MethodName << (isByRef() ? "(MI)" : "(*MI)"); in expandTIIFunctionCall()
H A DPredicateExpander.h77 void expandTIIFunctionCall(raw_ostream &OS, StringRef MethodName);
/freebsd-12.1/contrib/llvm/tools/clang/lib/ARCMigrate/
H A DObjCMT.cpp1322 std::string MethodName = MethodIdName->getName(); in migrateFactoryMethod() local
1324 StringRef STRefMethodName(MethodName); in migrateFactoryMethod()
1334 MethodName = STRefMethodName.substr(len); in migrateFactoryMethod()
1336 std::string MethodNameSubStr = MethodName.substr(0, 3); in migrateFactoryMethod()
1344 StringRef LoweredMethodName(MethodName); in migrateFactoryMethod()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DAnalysisBasedWarnings.cpp1932 void warnUseOfTempInInvalidState(StringRef MethodName, StringRef State, in warnUseOfTempInInvalidState() argument
1936 diag::warn_use_of_temp_in_invalid_state) << MethodName << State); in warnUseOfTempInInvalidState()
1941 void warnUseInInvalidState(StringRef MethodName, StringRef VariableName, in warnUseInInvalidState() argument
1945 MethodName << VariableName << State); in warnUseInInvalidState()
H A DSemaLambda.cpp402 DeclarationName MethodName in startLambdaDefinition() local
411 DeclarationNameInfo(MethodName, in startLambdaDefinition()
427 Method->getLocation(), MethodName, in startLambdaDefinition()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Breakpoint/
H A DBreakpointResolverName.cpp223 ObjCLanguage::MethodName objc_method(name.GetCString(), false); in AddNameLookup()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/
H A DManualDWARFIndex.cpp255 ObjCLanguage::MethodName objc_method(name, true); in IndexUnitImpl()
H A DDWARFASTParserClang.cpp1327 ObjCLanguage::MethodName objc_method(type_name_cstr, true); in ParseTypeFromDWARF()
2830 ObjCLanguage::MethodName prop_getter_method(prop_getter_name, true); in ParseChildMembers()
2835 ObjCLanguage::MethodName prop_setter_method(prop_setter_name, true); in ParseChildMembers()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Expression/
H A DIRExecutionUnit.cpp662 CPlusPlusLanguage::MethodName cpp_name(demangled); in FindBestAlternateMangledName()
689 CPlusPlusLanguage::MethodName alternate_cpp_name(demangled); in FindBestAlternateMangledName()
/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGObjCGNU.cpp47 StringRef CategoryName, const Selector MethodName, in SymbolNameForMethod() argument
49 std::string MethodNameColonStripped = MethodName.getAsString(); in SymbolNameForMethod()
3757 Selector MethodName = OMD->getSelector(); in GenerateMethod() local
3764 MethodName, isClassMethod); in GenerateMethod()
H A DCGDebugInfo.cpp279 SmallString<256> MethodName; in getObjCMethodName() local
280 llvm::raw_svector_ostream OS(MethodName); in getObjCMethodName()
1503 StringRef MethodName = getFunctionName(Method); in CreateCXXMemberFunction() local
1593 RecordTy, MethodName, MethodLinkageName, MethodDefUnit, MethodLine, in CreateCXXMemberFunction()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Symbol/
H A DSymtab.cpp345 ObjCLanguage::MethodName objc_method(entry.cstring.GetStringRef(), true); in InitNameIndexes()

12