Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/clang/lib/Format/
H A DFormatTokenLexer.cpp911 size_t BackslashPos = FormatTok->TokenText.find('\\'); in getNextToken() local
912 while (BackslashPos != StringRef::npos) { in getNextToken()
913 if (BackslashPos + 1 < FormatTok->TokenText.size() && in getNextToken()
914 FormatTok->TokenText[BackslashPos + 1] == '\n') { in getNextToken()
917 Offset += BackslashPos + 1; in getNextToken()
919 FormatTok->TokenText = FormatTok->TokenText.substr(0, BackslashPos + 1); in getNextToken()
925 BackslashPos = FormatTok->TokenText.find('\\', BackslashPos + 1); in getNextToken()