Home
last modified time | relevance | path

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

/external/llvm-project/clang/lib/Driver/ToolChains/
DGnu.cpp1839 StringRef PatchText = Second.second; in Parse() local
1840 if (!PatchText.empty()) { in Parse()
1841 if (size_t EndNumber = PatchText.find_first_not_of("0123456789")) { in Parse()
1843 if (PatchText.slice(0, EndNumber).getAsInteger(10, GoodVersion.Patch) || in Parse()
1846 GoodVersion.PatchSuffix = std::string(PatchText.substr(EndNumber)); in Parse()
/external/clang/lib/Driver/
DToolChains.cpp1306 StringRef PatchText = GoodVersion.PatchSuffix = Second.second.str(); in Parse() local
1307 if (!PatchText.empty()) { in Parse()
1308 if (size_t EndNumber = PatchText.find_first_not_of("0123456789")) { in Parse()
1310 if (PatchText.slice(0, EndNumber).getAsInteger(10, GoodVersion.Patch) || in Parse()
1313 GoodVersion.PatchSuffix = PatchText.substr(EndNumber); in Parse()