Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lld/COFF/
H A DDriver.cpp1221 static void parsePDBAltPath(StringRef altPath) { in parsePDBAltPath() argument
1237 while (cursor < altPath.size()) { in parsePDBAltPath()
1239 if ((firstMark = altPath.find('%', cursor)) == StringRef::npos || in parsePDBAltPath()
1240 (secondMark = altPath.find('%', firstMark + 1)) == StringRef::npos) { in parsePDBAltPath()
1242 buf.append(altPath.substr(cursor)); in parsePDBAltPath()
1248 buf.append(altPath.substr(cursor, firstMark - cursor)); in parsePDBAltPath()
1249 StringRef var = altPath.substr(firstMark, secondMark - firstMark + 1); in parsePDBAltPath()