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

References

tools/clang/lib/Lex/Lexer.cpp
 2500   if (C == 0 && CurPtr == BufferEnd+1) {
 2518   if (C == '/')
 2519     C = *CurPtr++;
 2529       while (C != '/' && ((intptr_t)CurPtr & 0x0F) != 0)
 2530         C = *CurPtr++;
 2532       if (C == '/') goto FoundSlash;
 2568       C = *CurPtr++;
 2572     while (C != '/' && C != '\0')
 2572     while (C != '/' && C != '\0')
 2573       C = *CurPtr++;
 2575     if (C == '/') {
 2594     } else if (C == 0 && CurPtr == BufferEnd+1) {
 2611     } else if (C == '\0' && isCodeCompletionPoint(CurPtr-1)) {
 2617     C = *CurPtr++;