Searched refs:InfoTable (Results 1 – 11 of 11) sorted by relevance
/external/clang/include/clang/Basic/ |
D | CharInfo.h | 20 extern const uint16_t InfoTable[256]; 52 if (InfoTable[c] & (CHAR_UPPER|CHAR_LOWER|CHAR_UNDER)) 62 if (InfoTable[c] & (CHAR_UPPER|CHAR_LOWER|CHAR_DIGIT|CHAR_UNDER)) 73 return (InfoTable[c] & (CHAR_HORZ_WS|CHAR_SPACE)) != 0; in isHorizontalWhitespace() 81 return (InfoTable[c] & CHAR_VERT_WS) != 0; in isVerticalWhitespace() 90 return (InfoTable[c] & (CHAR_HORZ_WS|CHAR_VERT_WS|CHAR_SPACE)) != 0; in isWhitespace() 96 return (InfoTable[c] & CHAR_DIGIT) != 0; in isDigit() 102 return (InfoTable[c] & CHAR_LOWER) != 0; in isLowercase() 108 return (InfoTable[c] & CHAR_UPPER) != 0; in isUppercase() 114 return (InfoTable[c] & (CHAR_UPPER|CHAR_LOWER)) != 0; in isLetter() [all …]
|
/external/clang/unittests/Basic/ |
D | CharInfoTest.cpp | 19 EXPECT_EQ((unsigned)CHAR_SPACE, InfoTable[(unsigned)' ']); in TEST() 20 EXPECT_EQ((unsigned)CHAR_HORZ_WS, InfoTable[(unsigned)'\t']); in TEST() 21 EXPECT_EQ((unsigned)CHAR_HORZ_WS, InfoTable[(unsigned)'\f']); // ?? in TEST() 22 EXPECT_EQ((unsigned)CHAR_HORZ_WS, InfoTable[(unsigned)'\v']); // ?? in TEST() 23 EXPECT_EQ((unsigned)CHAR_VERT_WS, InfoTable[(unsigned)'\n']); in TEST() 24 EXPECT_EQ((unsigned)CHAR_VERT_WS, InfoTable[(unsigned)'\r']); in TEST() 25 EXPECT_EQ((unsigned)CHAR_UNDER, InfoTable[(unsigned)'_']); in TEST() 26 EXPECT_EQ((unsigned)CHAR_PERIOD, InfoTable[(unsigned)'.']); in TEST() 29 EXPECT_EQ((unsigned)CHAR_XLOWER, InfoTable[i]); in TEST() 30 EXPECT_EQ((unsigned)CHAR_XUPPER, InfoTable[i+'A'-'a']); in TEST() [all …]
|
/external/clang/lib/Driver/ |
D | DriverOptions.cpp | 23 static const OptTable::Info InfoTable[] = { variable 37 : OptTable(InfoTable) {} in DriverOptTable()
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-mt/ |
D | llvm-mt.cpp | 50 static const opt::OptTable::Info InfoTable[] = { variable 64 CvtResOptTable() : OptTable(InfoTable, true) {} in CvtResOptTable()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ToolDrivers/llvm-dlltool/ |
D | DlltoolDriver.cpp | 42 static const llvm::opt::OptTable::Info InfoTable[] = { variable 52 DllOptTable() : OptTable(InfoTable, false) {} in DllOptTable()
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-rc/ |
D | llvm-rc.cpp | 56 static const opt::OptTable::Info InfoTable[] = { variable 70 RcOptTable() : OptTable(InfoTable, /* IgnoreCase = */ true) {} in RcOptTable()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ToolDrivers/llvm-lib/ |
D | LibDriver.cpp | 43 static const opt::OptTable::Info InfoTable[] = { variable 53 LibOptTable() : OptTable(InfoTable, true) {} in LibOptTable()
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-cvtres/ |
D | llvm-cvtres.cpp | 51 static const opt::OptTable::Info InfoTable[] = { variable 65 CvtResOptTable() : OptTable(InfoTable, true) {} in CvtResOptTable()
|
/external/clang/lib/Basic/ |
D | CharInfo.cpp | 16 const uint16_t clang::charinfo::InfoTable[256] = { member in clang::charinfo
|
/external/llvm/unittests/Option/ |
D | OptionParsingTest.cpp | 38 static const OptTable::Info InfoTable[] = { variable 51 : OptTable(InfoTable, IgnoreCase) {} in TestOptTable()
|
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/Option/ |
D | OptionParsingTest.cpp | 39 static const OptTable::Info InfoTable[] = { variable 52 : OptTable(InfoTable, IgnoreCase) {} in TestOptTable()
|