reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/lib/Lex/Lexer.cpp
 2264     C = *CurPtr;
 2266     while (C != 0 &&                // Potentially EOF.
 2267            C != '\n' && C != '\r')  // Newline or DOS-style newline.
 2267            C != '\n' && C != '\r')  // Newline or DOS-style newline.
 2268       C = *++CurPtr;
 2271     if (C != 0) {
 2302     C = getAndAdvanceChar(CurPtr, Result);
 2307     if (C != 0 && CurPtr == OldPtr+1) {
 2315     if (CurPtr != OldPtr + 1 && C != '/' &&
 2321           if (isWhitespace(C)) {
 2335     if (C == '\r' || C == '\n' || CurPtr == BufferEnd + 1) {
 2335     if (C == '\r' || C == '\n' || CurPtr == BufferEnd + 1) {
 2340     if (C == '\0' && isCodeCompletionPoint(CurPtr-1)) {