Home
last modified time | relevance | path

Searched refs:isPreprocessingNumberBody (Results 1 – 7 of 7) sorted by relevance

/llvm-project/clang/unittests/Basic/
H A DCharInfoTest.cpp340 TEST(CharInfoTest, isPreprocessingNumberBody) { in TEST() argument
341 EXPECT_TRUE(isPreprocessingNumberBody('0')); in TEST()
342 EXPECT_TRUE(isPreprocessingNumberBody('9')); in TEST()
344 EXPECT_TRUE(isPreprocessingNumberBody('a')); in TEST()
345 EXPECT_TRUE(isPreprocessingNumberBody('A')); in TEST()
347 EXPECT_TRUE(isPreprocessingNumberBody('z')); in TEST()
348 EXPECT_TRUE(isPreprocessingNumberBody('Z')); in TEST()
349 EXPECT_TRUE(isPreprocessingNumberBody('.')); in TEST()
350 EXPECT_TRUE(isPreprocessingNumberBody('_')); in TEST()
352 EXPECT_FALSE(isPreprocessingNumberBody('/')); in TEST()
[all …]
/llvm-project/clang/include/clang/Basic/
H A DCharInfo.h168 LLVM_READONLY inline bool isPreprocessingNumberBody(unsigned char c) { in isPreprocessingNumberBody() function
/llvm-project/clang/lib/Lex/
H A DTokenConcatenation.cpp272 return isPreprocessingNumberBody(FirstChar) || in AvoidConcat()
H A DDependencyDirectivesScanner.cpp390 if (!isPreprocessingNumberBody(Prev)) in isQuoteCppDigitSeparator()
H A DLiteralSupport.cpp938 if (isPreprocessingNumberBody(*ThisTokEnd) && in NumericLiteralParser()
H A DLexer.cpp2057 while (isPreprocessingNumberBody(C)) { in LexNumericConstant()
/llvm-project/clang/lib/CodeGen/
H A DCGDeclCXX.cpp845 if (!isPreprocessingNumberBody(FileName[i])) in EmitCXXGlobalInitFunc()