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

References

tools/clang/include/clang/Lex/LiteralSupport.h
  128     return Start != End && (Start + 1 != End || !isDigitSeparator(Start[0]));
  140     while (ptr != ThisTokEnd && (isHexDigit(*ptr) || isDigitSeparator(*ptr)))
  149            ((*ptr >= '0' && *ptr <= '7') || isDigitSeparator(*ptr)))
  157     while (ptr != ThisTokEnd && (isDigit(*ptr) || isDigitSeparator(*ptr)))
  166            (*ptr == '0' || *ptr == '1' || isDigitSeparator(*ptr)))
tools/clang/lib/Lex/LiteralSupport.cpp
  832   if (isDigitSeparator(*Pos)) {
  993       if (!isDigitSeparator(*Ptr))
 1011     if (isDigitSeparator(*Ptr)) {
 1050                         &isDigitSeparator);