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

/external/clang/lib/Lex/
H A DLexer.cpp1951 const char *EscapePtr = CurPtr-1; local
1952 while (isHorizontalWhitespace(*EscapePtr)) // Skip whitespace.
1953 --EscapePtr;
1955 if (*EscapePtr == '\\') // Escaped newline.
1956 CurPtr = EscapePtr;
1957 else if (EscapePtr[0] == '/' && EscapePtr[-1] == '?' &&
1958 EscapePtr[-2] == '?') // Trigraph-escaped newline.
1959 CurPtr = EscapePtr-2;
H A DLiteralSupport.cpp1551 const char *EscapePtr = SpellingPtr;
1556 SpellingPtr = EscapePtr;

Completed in 109 milliseconds