HomeSort by relevance Sort by last modified time
    Searched refs:isPreprocessingNumberBody (Results 1 - 5 of 5) sorted by null

  /external/clang/unittests/Basic/
CharInfoTest.cpp 341 TEST(CharInfoTest, isPreprocessingNumberBody) {
342 EXPECT_TRUE(isPreprocessingNumberBody('0'));
343 EXPECT_TRUE(isPreprocessingNumberBody('9'));
345 EXPECT_TRUE(isPreprocessingNumberBody('a'));
346 EXPECT_TRUE(isPreprocessingNumberBody('A'));
348 EXPECT_TRUE(isPreprocessingNumberBody('z'));
349 EXPECT_TRUE(isPreprocessingNumberBody('Z'));
350 EXPECT_TRUE(isPreprocessingNumberBody('.'));
351 EXPECT_TRUE(isPreprocessingNumberBody('_'));
353 EXPECT_FALSE(isPreprocessingNumberBody('/'));
    [all...]
  /external/clang/include/clang/Basic/
CharInfo.h 148 LLVM_READONLY static inline bool isPreprocessingNumberBody(unsigned char c) {
  /external/clang/lib/Lex/
TokenConcatenation.cpp 243 return isPreprocessingNumberBody(FirstChar) ||
Lexer.cpp     [all...]
  /external/clang/lib/CodeGen/
CGDeclCXX.cpp 393 if (!isPreprocessingNumberBody(FileName[i]))

Completed in 218 milliseconds