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

/external/clang/lib/Lex/
H A DLexer.cpp2072 const char *EscapePtr = CurPtr-1; local
2074 while (isHorizontalWhitespace(*EscapePtr)) { // Skip whitespace.
2075 --EscapePtr;
2079 if (*EscapePtr == '\\') // Escaped newline.
2080 CurPtr = EscapePtr;
2081 else if (EscapePtr[0] == '/' && EscapePtr[-1] == '?' &&
2082 EscapePtr[-2] == '?') // Trigraph-escaped newline.
2083 CurPtr = EscapePtr-2;
2089 Diag(EscapePtr, dia
[all...]
H A DLiteralSupport.cpp1680 const char *EscapePtr = SpellingPtr;
1685 SpellingPtr = EscapePtr;

Completed in 86 milliseconds