Home
last modified time | relevance | path

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

12

/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/WebKit/
H A DUncountedCallArgsChecker.cpp223 auto MethodName = safeGetName(Decl); in isMethodOnWTFContainerType() local
229 (MethodName == "find" || MethodName == "findIf" || in isMethodOnWTFContainerType()
230 MethodName == "reverseFind" || MethodName == "reverseFindIf" || in isMethodOnWTFContainerType()
231 MethodName == "findIgnoringASCIICase" || MethodName == "get" || in isMethodOnWTFContainerType()
232 MethodName == "inlineGet" || MethodName == "contains" || in isMethodOnWTFContainerType()
233 MethodName == "containsIf" || in isMethodOnWTFContainerType()
234 MethodName == "containsIgnoringASCIICase" || in isMethodOnWTFContainerType()
235 MethodName == "startsWith" || MethodName == "endsWith" || in isMethodOnWTFContainerType()
236 MethodName == "startsWithIgnoringASCIICase" || in isMethodOnWTFContainerType()
237 MethodName == "endsWithIgnoringASCIICase" || in isMethodOnWTFContainerType()
[all …]
H A DPtrTypesSemantics.cpp28 const auto MethodName = safeGetName(MD); in hasPublicMethodInBaseClass() local
29 if (MethodName == NameToMatch && MD->getAccess() == AS_public) in hasPublicMethodInBaseClass()
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DRichManglingContext.cpp29 delete get<CPlusPlusLanguage::MethodName>(m_cxx_method_parser); in ResetCxxMethodParser()
62 m_cxx_method_parser = new CPlusPlusLanguage::MethodName(demangled); in FromCxxMethodName()
74 get<CPlusPlusLanguage::MethodName>(m_cxx_method_parser)->GetBasename(); in IsCtorOrDtor()
121 return get<CPlusPlusLanguage::MethodName>(m_cxx_method_parser) in ParseFunctionBaseName()
138 return get<CPlusPlusLanguage::MethodName>(m_cxx_method_parser) in ParseFunctionDeclContextName()
155 return get<CPlusPlusLanguage::MethodName>(m_cxx_method_parser) in ParseFullName()
H A DModule.cpp657 CPlusPlusLanguage::MethodName cpp_method(name); in LookupInfo()
675 CPlusPlusLanguage::MethodName cpp_method(name); in LookupInfo()
708 CPlusPlusLanguage::MethodName cpp_method(name); in LookupInfo()
798 CPlusPlusLanguage::MethodName cpp_method(full_name); in Prune()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/
H A DPDBSymbol.h17 #define FORWARD_SYMBOL_METHOD(MethodName) \ argument
18 decltype(auto) MethodName() const { return RawSymbol->MethodName(); }
34 #define FORWARD_SYMBOL_ID_METHOD(MethodName) \ argument
35 FORWARD_SYMBOL_ID_METHOD_WITH_NAME(MethodName, MethodName)
/freebsd/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/
H A DObjCLanguage.h26 class MethodName {
39 static std::optional<const MethodName> Create(llvm::StringRef name,
115 MethodName(llvm::StringRef name, Type type) in MethodName() function
H A DObjCLanguage.cpp63 std::optional<const ObjCLanguage::MethodName>
64 ObjCLanguage::MethodName::Create(llvm::StringRef name, bool strict) { in Create()
99 ObjCLanguage::MethodName method_name(name, type); in Create()
103 llvm::StringRef ObjCLanguage::MethodName::GetClassName() const { in GetClassName()
116 llvm::StringRef ObjCLanguage::MethodName::GetClassNameWithCategory() const { in GetClassNameWithCategory()
123 llvm::StringRef ObjCLanguage::MethodName::GetSelector() const { in GetSelector()
132 llvm::StringRef ObjCLanguage::MethodName::GetCategory() const { in GetCategory()
145 std::string ObjCLanguage::MethodName::GetFullNameWithoutCategory() const { in GetFullNameWithoutCategory()
182 std::optional<const ObjCLanguage::MethodName> objc_method = in GetMethodNameVariants()
183 ObjCLanguage::MethodName in GetMethodNameVariants()
[all...]
/freebsd/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
H A DCPlusPlusLanguage.h28 class MethodName {
30 MethodName() in MethodName() function
33 MethodName(ConstString s) in MethodName() function
74 // | MethodName | Returns |
150 // CPlusPlusLanguage::MethodName which has to have a fully qualified C++ name
H A DCPlusPlusLanguage.cpp84 CPlusPlusLanguage::MethodName cxx_method(demangled_name); in GetDemangledFunctionNameWithoutArguments()
109 void CPlusPlusLanguage::MethodName::Clear() { in Clear()
184 CPlusPlusLanguage::MethodName cpp_method{ConstString(full_name)}; in PrettyPrintFunctionNameWithArgs()
211 bool CPlusPlusLanguage::MethodName::TrySimplifiedParse() { in TrySimplifiedParse()
254 void CPlusPlusLanguage::MethodName::Parse() { in Parse()
275 llvm::StringRef CPlusPlusLanguage::MethodName::GetBasename() { in GetBasename()
281 llvm::StringRef CPlusPlusLanguage::MethodName::GetContext() { in GetContext()
287 llvm::StringRef CPlusPlusLanguage::MethodName::GetArguments() { in GetArguments()
293 llvm::StringRef CPlusPlusLanguage::MethodName::GetQualifiers() { in GetQualifiers()
299 llvm::StringRef CPlusPlusLanguage::MethodName::GetReturnType() { in GetReturnType()
[all …]
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DMoveChecker.cpp516 std::string MethodName = MethodDec->getName().lower(); in isStateResetMethod() local
519 if (MethodName == "assign" || MethodName == "clear" || in isStateResetMethod()
520 MethodName == "destroy" || MethodName == "reset" || in isStateResetMethod()
521 MethodName == "resize" || MethodName == "shrink") in isStateResetMethod()
/freebsd/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/contrib/llvm-project/clang/include/clang/Analysis/Analyses/
H A DConsumed.h122 virtual void warnUseOfTempInInvalidState(StringRef MethodName, in warnUseOfTempInInvalidState() argument
136 virtual void warnUseInInvalidState(StringRef MethodName, in warnUseInInvalidState() argument
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DVTableBuilder.cpp2181 std::string MethodName = PredefinedExpr::ComputeName( in dumpLayout() local
2184 MethodNamesAndDecls.insert(std::make_pair(MethodName, MD)); in dumpLayout()
2188 const std::string &MethodName = I.first; in dumpLayout() local
2196 Out << "Thunks for '" << MethodName << "' (" << ThunksVector.size(); in dumpLayout()
2245 std::string MethodName = PredefinedExpr::ComputeName( in dumpLayout() local
2252 IndicesMap[VTableIndex] = MethodName + " [complete]"; in dumpLayout()
2253 IndicesMap[VTableIndex + 1] = MethodName + " [deleting]"; in dumpLayout()
2256 IndicesMap[MethodVTableIndices[MD]] = MethodName; in dumpLayout()
2268 const std::string &MethodName = I.second; in dumpLayout() local
2270 Out << llvm::format("%4" PRIu64 " | ", VTableIndex) << MethodName in dumpLayout()
[all …]
H A DODRDiagsEmitter.cpp932 MethodName, in diagnoseMismatch() enumerator
1082 DiagMethodError(MethodName); in diagnoseMismatch()
1083 DiagMethodNote(MethodName); in diagnoseMismatch()
/freebsd/sys/contrib/dev/acpica/include/
H A Dachware.h241 char *MethodName,
/freebsd/contrib/llvm-project/llvm/utils/TableGen/Common/
H A DPredicateExpander.h80 void expandTIIFunctionCall(raw_ostream &OS, StringRef MethodName);
H A DPredicateExpander.cpp209 StringRef MethodName) { in expandTIIFunctionCall() argument
212 OS << MethodName << (isByRef() ? "(MI)" : "(*MI)"); in expandTIIFunctionCall()
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DManualDWARFIndex.cpp293 std::optional<const ObjCLanguage::MethodName> objc_method = in IndexUnitImpl()
294 ObjCLanguage::MethodName::Create(name, true); in IndexUnitImpl()
H A DDWARFASTParserClang.cpp995 const ObjCLanguage::MethodName &objc_method, const DWARFDIE &die, in ParseObjCMethod()
1256 if (std::optional<const ObjCLanguage::MethodName> objc_method = in ParseSubroutine()
1257 ObjCLanguage::MethodName::Create(attrs.name.GetStringRef(), in ParseSubroutine()
2672 std::optional<const ObjCLanguage::MethodName> prop_getter_method = in PropertyAttributes()
2673 ObjCLanguage::MethodName::Create(prop_getter_name, true); in PropertyAttributes()
2680 std::optional<const ObjCLanguage::MethodName> prop_setter_method = in PropertyAttributes()
2681 ObjCLanguage::MethodName::Create(prop_setter_name, true); in PropertyAttributes()
H A DDWARFASTParserClang.h395 ParseObjCMethod(const lldb_private::ObjCLanguage::MethodName &objc_method,
/freebsd/contrib/llvm-project/clang/lib/ARCMigrate/
H A DObjCMT.cpp1320 std::string MethodName = std::string(MethodIdName->getName()); in migrateFactoryMethod() local
1322 StringRef STRefMethodName(MethodName); in migrateFactoryMethod()
1332 MethodName = std::string(STRefMethodName.substr(len)); in migrateFactoryMethod()
1334 std::string MethodNameSubStr = MethodName.substr(0, 3); in migrateFactoryMethod()
1342 StringRef LoweredMethodName(MethodName); in migrateFactoryMethod()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DAnalysisBasedWarnings.cpp2159 void warnUseOfTempInInvalidState(StringRef MethodName, StringRef State, in warnUseOfTempInInvalidState() argument
2163 diag::warn_use_of_temp_in_invalid_state) << MethodName << State); in warnUseOfTempInInvalidState()
2168 void warnUseInInvalidState(StringRef MethodName, StringRef VariableName, in warnUseInInvalidState() argument
2172 MethodName << VariableName << State); in warnUseInInvalidState()
H A DSemaLambda.cpp981 DeclarationName MethodName = in CreateLambdaCallOperator() local
987 DeclarationNameInfo(MethodName, IntroducerRange.getBegin(), in CreateLambdaCallOperator()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DItaniumCXXABI.cpp3339 SmallString<256> MethodName; in getOrCreateVirtualFunctionPointerThunk() local
3340 llvm::raw_svector_ostream Out(MethodName); in getOrCreateVirtualFunctionPointerThunk()
3342 MethodName += "_vfpthunk_"; in getOrCreateVirtualFunctionPointerThunk()
3343 StringRef ThunkName = MethodName.str(); in getOrCreateVirtualFunctionPointerThunk()
H A DCGDebugInfo.cpp276 SmallString<256> MethodName; in getObjCMethodName() local
277 llvm::raw_svector_ostream OS(MethodName); in getObjCMethodName()
2025 StringRef MethodName = getFunctionName(Method); in CreateCXXMemberFunction() local
2129 RecordTy, MethodName, MethodLinkageName, MethodDefUnit, MethodLine, in CreateCXXMemberFunction()

12