Home
last modified time | relevance | path

Searched refs:baseName (Results 1 – 8 of 8) sorted by relevance

/freebsd/contrib/ntp/sntp/unity/auto/
H A DparseOutput.rb51 baseName = testName[testName.size - 1].split(".")
52 @testSuite = "test." + baseName[0]
/freebsd/contrib/llvm-project/clang/lib/CIR/CodeGen/
H A DCIRGenBuilder.h64 std::string getUniqueRecordName(const std::string &baseName) { in getUniqueRecordName() argument
65 auto it = recordNames.find(baseName); in getUniqueRecordName()
67 recordNames[baseName] = 0; in getUniqueRecordName()
68 return baseName; in getUniqueRecordName()
71 return baseName + "." + std::to_string(recordNames[baseName]++); in getUniqueRecordName()
H A DCIRGenModule.cpp1158 std::string CIRGenModule::getUniqueGlobalName(const std::string &baseName) { in getUniqueGlobalName() argument
1161 auto it = cgGlobalNames.find(baseName); in getUniqueGlobalName()
1163 cgGlobalNames[baseName] = 1; in getUniqueGlobalName()
1164 return baseName; in getUniqueGlobalName()
1168 baseName + "." + std::to_string(cgGlobalNames[baseName]++); in getUniqueGlobalName()
H A DCIRGenModule.h146 std::string getUniqueGlobalName(const std::string &baseName);
/freebsd/contrib/llvm-project/clang/utils/TableGen/
H A DClangASTNodesEmitter.cpp56 std::string baseName(ASTNode node) { in baseName() function in __anon327c07050111::ClangASTNodesEmitter
121 OS << NodeName << "(" << Child.getName() << ", " << baseName(Base) << ")"; in EmitNode()
/freebsd/contrib/llvm-project/lld/COFF/
H A DLTO.cpp254 StringRef baseName = sys::path::stem(bitcodeFilePath); in compile() local
258 outputFileBaseName + ".lto." + baseName + Ext); in compile()
H A DSymbolTable.cpp272 StringRef baseName = name; in loadMinGWSymbols() local
274 baseName = ltrim1(baseName, "_@"); in loadMinGWSymbols()
275 baseName = baseName.substr(0, baseName.find('@')); in loadMinGWSymbols()
277 std::string newName = ("_" + baseName).str(); in loadMinGWSymbols()
/freebsd/contrib/llvm-project/lld/ELF/
H A DLTO.cpp407 StringRef baseName = bitcodeFilePath.ends_with(")") in compile() local
413 outputFileBaseName + ".lto." + baseName + ext); in compile()