Searched refs:EscapePtr (Results 1 - 2 of 2) sorted by relevance

/external/clang/lib/Lex/
H A DLexer.cpp2040 const char *EscapePtr = CurPtr-1; local
2042 while (isHorizontalWhitespace(*EscapePtr)) { // Skip whitespace.
2043 --EscapePtr;
2047 if (*EscapePtr == '\\') // Escaped newline.
2048 CurPtr = EscapePtr;
2049 else if (EscapePtr[0] == '/' && EscapePtr[-1] == '?' &&
2050 EscapePtr[-2] == '?') // Trigraph-escaped newline.
2051 CurPtr = EscapePtr-2;
2057 Diag(EscapePtr, dia
[all...]
H A DLiteralSupport.cpp1657 const char *EscapePtr = SpellingPtr;
1662 SpellingPtr = EscapePtr;

Completed in 126 milliseconds