| /openbsd-src/gnu/llvm/lldb/source/Core/ |
| H A D | RichManglingContext.cpp | 29 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 D | Module.cpp | 660 CPlusPlusLanguage::MethodName cpp_method(name); in LookupInfo() 678 CPlusPlusLanguage::MethodName cpp_method(name); in LookupInfo() 711 CPlusPlusLanguage::MethodName cpp_method(name); in LookupInfo() 803 CPlusPlusLanguage::MethodName cpp_method(full_name); in Prune()
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/DebugInfo/PDB/ |
| H A D | PDBSymbol.h | 17 #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)
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/Language/ObjC/ |
| H A D | ObjCLanguage.h | 26 class MethodName { 30 MethodName() : m_full(), m_class(), m_category(), m_selector() {} in MethodName() function 32 MethodName(const char *name, bool strict) in MethodName() function 37 MethodName(llvm::StringRef name, bool strict) in MethodName() function
|
| H A D | ObjCLanguage.cpp | 63 void ObjCLanguage::MethodName::Clear() { in Clear() 72 bool ObjCLanguage::MethodName::SetName(llvm::StringRef name, bool strict) { in SetName() 107 bool ObjCLanguage::MethodName::SetName(const char *name, bool strict) { in SetName() 111 ConstString ObjCLanguage::MethodName::GetClassName() { in GetClassName() 137 ConstString ObjCLanguage::MethodName::GetClassNameWithCategory() { in GetClassNameWithCategory() 160 ConstString ObjCLanguage::MethodName::GetSelector() { in GetSelector() 175 ConstString ObjCLanguage::MethodName::GetCategory() { in GetCategory() 194 ConstString ObjCLanguage::MethodName::GetFullNameWithoutCategory( in GetFullNameWithoutCategory() 219 ObjCLanguage::MethodName objc_method(method_name.GetCString(), false); in GetMethodNameVariants() 228 objc_method.GetType() == MethodName::eTypeClassMethod; in GetMethodNameVariants() [all …]
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/Language/CPlusPlus/ |
| H A D | CPlusPlusLanguage.h | 28 class MethodName { 30 MethodName() in MethodName() function 33 MethodName(ConstString s) in MethodName() function
|
| H A D | CPlusPlusLanguage.cpp | 83 CPlusPlusLanguage::MethodName cxx_method(demangled_name); in GetDemangledFunctionNameWithoutArguments() 108 void CPlusPlusLanguage::MethodName::Clear() { in Clear() 183 CPlusPlusLanguage::MethodName cpp_method{ConstString(full_name)}; in PrettyPrintFunctionNameWithArgs() 210 bool CPlusPlusLanguage::MethodName::TrySimplifiedParse() { in TrySimplifiedParse() 253 void CPlusPlusLanguage::MethodName::Parse() { in Parse() 274 llvm::StringRef CPlusPlusLanguage::MethodName::GetBasename() { in GetBasename() 280 llvm::StringRef CPlusPlusLanguage::MethodName::GetContext() { in GetContext() 286 llvm::StringRef CPlusPlusLanguage::MethodName::GetArguments() { in GetArguments() 292 llvm::StringRef CPlusPlusLanguage::MethodName::GetQualifiers() { in GetQualifiers() 298 llvm::StringRef CPlusPlusLanguage::MethodName::GetReturnType() { in GetReturnType() [all …]
|
| /openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/WebKit/ |
| H A D | PtrTypesSemantics.cpp | 28 const auto MethodName = safeGetName(MD); in hasPublicRefAndDeref() local 30 if (MethodName == "ref" && MD->getAccess() == AS_public) { in hasPublicRefAndDeref() 34 } else if (MethodName == "deref" && MD->getAccess() == AS_public) { in hasPublicRefAndDeref()
|
| /openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | MoveChecker.cpp | 514 std::string MethodName = MethodDec->getName().lower(); in isStateResetMethod() local 517 if (MethodName == "assign" || MethodName == "clear" || in isStateResetMethod() 518 MethodName == "destroy" || MethodName == "reset" || in isStateResetMethod() 519 MethodName == "resize" || MethodName == "shrink") in isStateResetMethod()
|
| /openbsd-src/gnu/llvm/clang/include/clang/Analysis/Analyses/ |
| H A D | Consumed.h | 122 virtual void warnUseOfTempInInvalidState(StringRef MethodName, in warnUseOfTempInInvalidState() argument 136 virtual void warnUseInInvalidState(StringRef MethodName, in warnUseInInvalidState() argument
|
| /openbsd-src/gnu/llvm/clang/lib/AST/ |
| H A D | VTableBuilder.cpp | 2111 std::string MethodName = in dumpLayout() local 2115 MethodNamesAndDecls.insert(std::make_pair(MethodName, MD)); in dumpLayout() 2119 const std::string &MethodName = I.first; in dumpLayout() local 2128 Out << "Thunks for '" << MethodName << "' (" << ThunksVector.size(); in dumpLayout() 2177 std::string MethodName = in dumpLayout() local 2185 IndicesMap[VTableIndex] = MethodName + " [complete]"; in dumpLayout() 2186 IndicesMap[VTableIndex + 1] = MethodName + " [deleting]"; in dumpLayout() 2189 IndicesMap[MethodVTableIndices[MD]] = MethodName; in dumpLayout() 2201 const std::string &MethodName = I.second; in dumpLayout() local 2203 Out << llvm::format("%4" PRIu64 " | ", VTableIndex) << MethodName in dumpLayout() [all …]
|
| H A D | ODRDiagsEmitter.cpp | 930 MethodName, in diagnoseMismatch() enumerator 1077 DiagMethodError(MethodName); in diagnoseMismatch() 1078 DiagMethodNote(MethodName); in diagnoseMismatch()
|
| /openbsd-src/gnu/llvm/llvm/utils/TableGen/ |
| H A D | PredicateExpander.h | 76 void expandTIIFunctionCall(raw_ostream &OS, StringRef MethodName);
|
| H A D | PredicateExpander.cpp | 185 StringRef MethodName) { in expandTIIFunctionCall() argument 188 OS << MethodName << (isByRef() ? "(MI)" : "(*MI)"); in expandTIIFunctionCall()
|
| /openbsd-src/gnu/usr.bin/perl/cpan/IO-Compress/t/ |
| H A D | 004gziphdr.t | 51 is $hdr->{MethodName}, 'Deflated'; 80 ok $hdr->{MethodName} eq 'Deflated'; 474 is $hdr->{MethodName}, "Deflated"; 516 is $hdr->{MethodName}, "Deflated";
|
| /openbsd-src/gnu/llvm/clang/lib/ARCMigrate/ |
| H A D | ObjCMT.cpp | 1322 std::string MethodName = std::string(MethodIdName->getName()); in migrateFactoryMethod() local 1324 StringRef STRefMethodName(MethodName); in migrateFactoryMethod() 1334 MethodName = std::string(STRefMethodName.substr(len)); in migrateFactoryMethod() 1336 std::string MethodNameSubStr = MethodName.substr(0, 3); in migrateFactoryMethod() 1344 StringRef LoweredMethodName(MethodName); in migrateFactoryMethod()
|
| /openbsd-src/gnu/llvm/clang/lib/Sema/ |
| H A D | AnalysisBasedWarnings.cpp | 2123 void warnUseOfTempInInvalidState(StringRef MethodName, StringRef State, in warnUseOfTempInInvalidState() argument 2127 diag::warn_use_of_temp_in_invalid_state) << MethodName << State); in warnUseOfTempInInvalidState() 2132 void warnUseInInvalidState(StringRef MethodName, StringRef VariableName, in warnUseInInvalidState() argument 2136 MethodName << VariableName << State); in warnUseInInvalidState()
|
| H A D | SemaLambda.cpp | 393 DeclarationName MethodName in startLambdaDefinition() local 399 DeclarationNameInfo(MethodName, IntroducerRange.getBegin(), in startLambdaDefinition() 413 Method->getLocation(), MethodName, in startLambdaDefinition()
|
| H A D | SemaDeclObjC.cpp | 3678 std::string MethodName = Method->getSelector().getAsString(); in HelperSelectorsForTypoCorrection() local 3680 unsigned MinPossibleEditDistance = abs((int)MethodName.size() - (int)Typo.size()); in HelperSelectorsForTypoCorrection() 3684 unsigned EditDistance = Typo.edit_distance(MethodName, true, MaxEditDistance); in HelperSelectorsForTypoCorrection()
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/SymbolFile/DWARF/ |
| H A D | ManualDWARFIndex.cpp | 279 ObjCLanguage::MethodName objc_method(name, true); in IndexUnitImpl()
|
| H A D | DWARFASTParserClang.cpp | 981 ObjCLanguage::MethodName objc_method(attrs.name.GetStringRef(), true); in ParseSubroutine() 2609 ObjCLanguage::MethodName prop_getter_method(prop_getter_name, true); in PropertyAttributes() 2614 ObjCLanguage::MethodName prop_setter_method(prop_setter_name, true); in PropertyAttributes()
|
| /openbsd-src/gnu/llvm/clang/lib/CodeGen/ |
| H A D | CGDebugInfo.cpp | 267 SmallString<256> MethodName; in getObjCMethodName() local 268 llvm::raw_svector_ostream OS(MethodName); in getObjCMethodName() 1771 StringRef MethodName = getFunctionName(Method); in CreateCXXMemberFunction() local 1894 RecordTy, MethodName, MethodLinkageName, MethodDefUnit, MethodLine, in CreateCXXMemberFunction()
|