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()
2617 const char *EscapePtr = CurPtr-1; in SkipLineComment() local2619 while (isHorizontalWhitespace(*EscapePtr)) { // Skip whitespace. in SkipLineComment()2620 --EscapePtr; in SkipLineComment()2624 if (*EscapePtr == '\\') in SkipLineComment()2626 CurPtr = EscapePtr; in SkipLineComment()2627 else if (EscapePtr[0] == '/' && EscapePtr[-1] == '?' && in SkipLineComment()2628 EscapePtr[-2] == '?' && LangOpts.Trigraphs) in SkipLineComment()2630 CurPtr = EscapePtr-2; in SkipLineComment()2636 Diag(EscapePtr, diag::backslash_newline_space); in SkipLineComment()
2405 const char *EscapePtr = SpellingPtr; in getOffsetOfStringByte() local2410 SpellingPtr = EscapePtr; in getOffsetOfStringByte()