Home
last modified time | relevance | path

Searched refs:ContainerName (Results 1 – 5 of 5) sorted by relevance

/llvm-project-15.0.7/clang-tools-extra/clang-tidy/modernize/
H A DLoopConvertUtils.cpp855 StringRef ContainerName; in createIndexName() local
857 ContainerName = TheContainer->getName(); in createIndexName()
859 size_t Len = ContainerName.size(); in createIndexName()
860 if (Len > 1 && ContainerName.endswith(Style == NS_UpperCase ? "S" : "s")) { in createIndexName()
861 IteratorName = std::string(ContainerName.substr(0, Len - 1)); in createIndexName()
867 if (Len > 2 && ContainerName.endswith(Style == NS_UpperCase ? "S_" : "s_")) { in createIndexName()
868 IteratorName = std::string(ContainerName.substr(0, Len - 2)); in createIndexName()
/llvm-project-15.0.7/clang/lib/StaticAnalyzer/Checkers/
H A DGCDAntipatternChecker.cpp81 std::string ContainerName = CD->getNameAsString(); in isTest() local
82 StringRef CN(ContainerName); in isTest()
/llvm-project-15.0.7/llvm/tools/llvm-rtdyld/
H A Dllvm-rtdyld.cpp846 std::string ContainerName = in linkAndVerify() local
848 StubMap[ContainerName][SymbolName] = {SectionID, StubOffset}; in linkAndVerify()
/llvm-project-15.0.7/llvm/tools/dsymutil/
H A DDwarfLinkerForBinary.cpp595 [&DebugMap, &RL, this](StringRef ContainerName, in link()
604 StringRef ObjFile = ContainerName; in link()
/llvm-project-15.0.7/llvm/include/llvm/DWARFLinker/
H A DDWARFLinker.h217 typedef std::function<ErrorOr<DWARFFile &>(StringRef ContainerName,