Searched refs:EscapePtr (Results 1 – 3 of 3) sorted by relevance
230 const char *EscapePtr = CurPtr - 1; in findBCPLCommentEnd() local231 while(isHorizontalWhitespace(*EscapePtr)) in findBCPLCommentEnd()232 EscapePtr--; in findBCPLCommentEnd()234 if (*EscapePtr == '\\' || in findBCPLCommentEnd()235 (EscapePtr - 2 >= BufferPtr && EscapePtr[0] == '/' && in findBCPLCommentEnd()236 EscapePtr[-1] == '?' && EscapePtr[-2] == '?')) { in findBCPLCommentEnd()
2491 const char *EscapePtr = CurPtr-1; in SkipLineComment() local2493 while (isHorizontalWhitespace(*EscapePtr)) { // Skip whitespace. in SkipLineComment()2494 --EscapePtr; in SkipLineComment()2498 if (*EscapePtr == '\\') in SkipLineComment()2500 CurPtr = EscapePtr; in SkipLineComment()2501 else if (EscapePtr[0] == '/' && EscapePtr[-1] == '?' && in SkipLineComment()2502 EscapePtr[-2] == '?' && LangOpts.Trigraphs) in SkipLineComment()2504 CurPtr = EscapePtr-2; in SkipLineComment()2510 Diag(EscapePtr, diag::backslash_newline_space); in SkipLineComment()
2269 const char *EscapePtr = SpellingPtr; in getOffsetOfStringByte() local2274 SpellingPtr = EscapePtr; in getOffsetOfStringByte()