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()
2561 const char *EscapePtr = CurPtr-1; in SkipLineComment() local2563 while (isHorizontalWhitespace(*EscapePtr)) { // Skip whitespace. in SkipLineComment()2564 --EscapePtr; in SkipLineComment()2568 if (*EscapePtr == '\\') in SkipLineComment()2570 CurPtr = EscapePtr; in SkipLineComment()2571 else if (EscapePtr[0] == '/' && EscapePtr[-1] == '?' && in SkipLineComment()2572 EscapePtr[-2] == '?' && LangOpts.Trigraphs) in SkipLineComment()2574 CurPtr = EscapePtr-2; in SkipLineComment()2580 Diag(EscapePtr, diag::backslash_newline_space); in SkipLineComment()
2367 const char *EscapePtr = SpellingPtr; in getOffsetOfStringByte() local2372 SpellingPtr = EscapePtr; in getOffsetOfStringByte()