Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/lib/Lex/
H A DLexer.cpp3058 auto RestOfBuffer = StringRef(CurPtr, BufferEnd - CurPtr).substr(TermLen); in FindConflictEnd() local
3059 size_t Pos = RestOfBuffer.find(Terminator); in FindConflictEnd()
3063 (RestOfBuffer[Pos - 1] != '\r' && RestOfBuffer[Pos - 1] != '\n')) { in FindConflictEnd()
3064 RestOfBuffer = RestOfBuffer.substr(Pos+TermLen); in FindConflictEnd()
3065 Pos = RestOfBuffer.find(Terminator); in FindConflictEnd()
3068 return RestOfBuffer.data()+Pos; in FindConflictEnd()