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

/external/clang/lib/Lex/
H A DLexer.cpp2044 const char *EscapePtr = CurPtr-1; local
2046 while (isHorizontalWhitespace(*EscapePtr)) { // Skip whitespace.
2047 --EscapePtr;
2051 if (*EscapePtr == '\\') // Escaped newline.
2052 CurPtr = EscapePtr;
2053 else if (EscapePtr[0] == '/' && EscapePtr[-1] == '?' &&
2054 EscapePtr[-2] == '?') // Trigraph-escaped newline.
2055 CurPtr = EscapePtr-2;
2061 Diag(EscapePtr, dia
[all...]
H A DLiteralSupport.cpp1666 const char *EscapePtr = SpellingPtr;
1671 SpellingPtr = EscapePtr;

Completed in 381 milliseconds