Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/lib/Lex/
H A DLexer.cpp3189 auto RestOfBuffer = StringRef(CurPtr, BufferEnd - CurPtr).substr(TermLen); in FindConflictEnd() local
3190 size_t Pos = RestOfBuffer.find(Terminator); in FindConflictEnd()
3194 (RestOfBuffer[Pos - 1] != '\r' && RestOfBuffer[Pos - 1] != '\n')) { in FindConflictEnd()
3195 RestOfBuffer = RestOfBuffer.substr(Pos+TermLen); in FindConflictEnd()
3196 Pos = RestOfBuffer.find(Terminator); in FindConflictEnd()
3199 return RestOfBuffer.data()+Pos; in FindConflictEnd()