reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
210 if (isUTF8(StringRef(Start, End - Start), &ErrOffset)) 220 if (P == End) 232 while (P != End && (*P == ' ' || *P == '\r' || *P == '\n' || *P == '\t')) 242 char next() { return P == End ? 0 : *P++; } 243 char peek() { return P == End ? 0 : *P; } 256 if (P == End) 366 if (LLVM_UNLIKELY(P == End)) 475 if (LLVM_UNLIKELY(P + 2 > End || *P != '\\' || *(P + 1) != 'u')) {