Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/lld/COFF/
H A DDriver.cpp1121 static void parsePDBAltPath(StringRef altPath) { in parsePDBAltPath() argument
1137 while (cursor < altPath.size()) { in parsePDBAltPath()
1139 if ((firstMark = altPath.find('%', cursor)) == StringRef::npos || in parsePDBAltPath()
1140 (secondMark = altPath.find('%', firstMark + 1)) == StringRef::npos) { in parsePDBAltPath()
1142 buf.append(altPath.substr(cursor)); in parsePDBAltPath()
1148 buf.append(altPath.substr(cursor, firstMark - cursor)); in parsePDBAltPath()
1149 StringRef var = altPath.substr(firstMark, secondMark - firstMark + 1); in parsePDBAltPath()