Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/lib/Format/
H A DFormatTokenLexer.cpp1195 size_t BackslashPos = FormatTok->TokenText.find('\\'); in getNextToken() local
1196 while (BackslashPos != StringRef::npos) { in getNextToken()
1197 if (BackslashPos + 1 < FormatTok->TokenText.size() && in getNextToken()
1198 FormatTok->TokenText[BackslashPos + 1] == '\n') { in getNextToken()
1199 truncateToken(BackslashPos + 1); in getNextToken()
1202 BackslashPos = FormatTok->TokenText.find('\\', BackslashPos + 1); in getNextToken()