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

References

tools/clang/lib/CodeGen/CGDeclCXX.cpp
  588     if (!isPreprocessingNumberBody(FileName[i]))
tools/clang/lib/Lex/DependencyDirectivesSourceMinimizer.cpp
  318   if (!isPreprocessingNumberBody(Prev))
tools/clang/lib/Lex/Lexer.cpp
 1754   while (isPreprocessingNumberBody(C)) {
tools/clang/lib/Lex/LiteralSupport.cpp
  534   assert(!isPreprocessingNumberBody(*ThisTokEnd) && "didn't maximally munch?");
tools/clang/lib/Lex/TokenConcatenation.cpp
  265     return isPreprocessingNumberBody(FirstChar) ||
tools/clang/unittests/Basic/CharInfoTest.cpp
  341   EXPECT_TRUE(isPreprocessingNumberBody('0'));
  342   EXPECT_TRUE(isPreprocessingNumberBody('9'));
  344   EXPECT_TRUE(isPreprocessingNumberBody('a'));
  345   EXPECT_TRUE(isPreprocessingNumberBody('A'));
  347   EXPECT_TRUE(isPreprocessingNumberBody('z'));
  348   EXPECT_TRUE(isPreprocessingNumberBody('Z'));
  349   EXPECT_TRUE(isPreprocessingNumberBody('.'));
  350   EXPECT_TRUE(isPreprocessingNumberBody('_'));
  352   EXPECT_FALSE(isPreprocessingNumberBody('/'));
  353   EXPECT_FALSE(isPreprocessingNumberBody('('));
  354   EXPECT_FALSE(isPreprocessingNumberBody('\0'));
  356   EXPECT_FALSE(isPreprocessingNumberBody('\x80'));
  357   EXPECT_FALSE(isPreprocessingNumberBody('\xc2'));
  358   EXPECT_FALSE(isPreprocessingNumberBody('\xff'));