Home
last modified time | relevance | path

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

/llvm-project-15.0.7/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-15.0.7/clang/include/clang/Basic/
H A DCharInfo.h153 LLVM_READONLY inline bool isPreprocessingNumberBody(unsigned char c) { in isPreprocessingNumberBody() function
/llvm-project-15.0.7/clang/lib/Lex/
H A DTokenConcatenation.cpp265 return isPreprocessingNumberBody(FirstChar) || in AvoidConcat()
H A DDependencyDirectivesScanner.cpp361 if (!isPreprocessingNumberBody(Prev)) in isQuoteCppDigitSeparator()
H A DLiteralSupport.cpp867 if (isPreprocessingNumberBody(*ThisTokEnd)) { in NumericLiteralParser()
H A DLexer.cpp1862 while (isPreprocessingNumberBody(C)) { in LexNumericConstant()
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCGDeclCXX.cpp754 if (!isPreprocessingNumberBody(FileName[i])) in getTransformedFileName()