Home
last modified time | relevance | path

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

/netbsd/external/apache2/llvm/dist/clang/lib/Format/
H A DFormatTokenLexer.cpp909 size_t BackslashPos = FormatTok->TokenText.find('\\'); in getNextToken() local
910 while (BackslashPos != StringRef::npos) { in getNextToken()
911 if (BackslashPos + 1 < FormatTok->TokenText.size() && in getNextToken()
912 FormatTok->TokenText[BackslashPos + 1] == '\n') { in getNextToken()
915 Offset += BackslashPos + 1; in getNextToken()
917 FormatTok->TokenText = FormatTok->TokenText.substr(0, BackslashPos + 1); in getNextToken()
923 BackslashPos = FormatTok->TokenText.find('\\', BackslashPos + 1); in getNextToken()