Home
last modified time | relevance | path

Searched refs:InfoTable (Results 1 – 25 of 25) sorted by relevance

/llvm-project-15.0.7/clang/include/clang/Basic/
H A DCharInfo.h19 extern const uint16_t InfoTable[256];
57 if (InfoTable[c] & (CHAR_UPPER|CHAR_LOWER|CHAR_UNDER))
78 return (InfoTable[c] & (CHAR_HORZ_WS|CHAR_SPACE)) != 0; in isHorizontalWhitespace()
86 return (InfoTable[c] & CHAR_VERT_WS) != 0; in isVerticalWhitespace()
101 return (InfoTable[c] & CHAR_DIGIT) != 0; in isDigit()
107 return (InfoTable[c] & CHAR_LOWER) != 0; in isLowercase()
113 return (InfoTable[c] & CHAR_UPPER) != 0; in isUppercase()
119 return (InfoTable[c] & (CHAR_UPPER|CHAR_LOWER)) != 0; in isLetter()
131 return (InfoTable[c] & (CHAR_DIGIT|CHAR_XLETTER)) != 0; in isHexDigit()
155 return (InfoTable[c] & in isPreprocessingNumberBody()
[all …]
/llvm-project-15.0.7/clang/unittests/Basic/
H A DCharInfoTest.cpp18 EXPECT_EQ((unsigned)CHAR_SPACE, InfoTable[(unsigned)' ']); in TEST()
19 EXPECT_EQ((unsigned)CHAR_HORZ_WS, InfoTable[(unsigned)'\t']); in TEST()
22 EXPECT_EQ((unsigned)CHAR_VERT_WS, InfoTable[(unsigned)'\n']); in TEST()
23 EXPECT_EQ((unsigned)CHAR_VERT_WS, InfoTable[(unsigned)'\r']); in TEST()
24 EXPECT_EQ((unsigned)CHAR_UNDER, InfoTable[(unsigned)'_']); in TEST()
25 EXPECT_EQ((unsigned)CHAR_PERIOD, InfoTable[(unsigned)'.']); in TEST()
28 EXPECT_EQ((unsigned)CHAR_XLOWER, InfoTable[i]); in TEST()
29 EXPECT_EQ((unsigned)CHAR_XUPPER, InfoTable[i+'A'-'a']); in TEST()
33 EXPECT_EQ((unsigned)CHAR_LOWER, InfoTable[i]); in TEST()
34 EXPECT_EQ((unsigned)CHAR_UPPER, InfoTable[i+'A'-'a']); in TEST()
[all …]
/llvm-project-15.0.7/clang/lib/Driver/
H A DDriverOptions.cpp23 static const OptTable::Info InfoTable[] = { variable
37 : OptTable(InfoTable) {} in DriverOptTable()
/llvm-project-15.0.7/llvm/tools/llvm-mt/
H A Dllvm-mt.cpp48 const opt::OptTable::Info InfoTable[] = { variable
62 CvtResOptTable() : OptTable(InfoTable, true) {} in CvtResOptTable()
/llvm-project-15.0.7/llvm/tools/llvm-strings/
H A Dllvm-strings.cpp46 const opt::OptTable::Info InfoTable[] = { variable
60 StringsOptTable() : OptTable(InfoTable) { setGroupedShortOptions(true); } in StringsOptTable()
/llvm-project-15.0.7/llvm/lib/ToolDrivers/llvm-dlltool/
H A DDlltoolDriver.cpp44 static const llvm::opt::OptTable::Info InfoTable[] = { variable
54 DllOptTable() : OptTable(InfoTable, false) {} in DllOptTable()
/llvm-project-15.0.7/llvm/tools/llvm-cxxfilt/
H A Dllvm-cxxfilt.cpp39 const opt::OptTable::Info InfoTable[] = { variable
53 CxxfiltOptTable() : OptTable(InfoTable) { setGroupedShortOptions(true); } in CxxfiltOptTable()
/llvm-project-15.0.7/llvm/tools/llvm-cvtres/
H A Dllvm-cvtres.cpp51 const opt::OptTable::Info InfoTable[] = { variable
65 CvtResOptTable() : OptTable(InfoTable, true) {} in CvtResOptTable()
/llvm-project-15.0.7/clang/lib/Basic/
H A DCharInfo.cpp15 const uint16_t clang::charinfo::InfoTable[256] = { member in clang::charinfo
/llvm-project-15.0.7/llvm/tools/llvm-tli-checker/
H A Dllvm-tli-checker.cpp42 static const opt::OptTable::Info InfoTable[] = { variable
56 TLICheckerOptTable() : OptTable(InfoTable) {} in TLICheckerOptTable()
/llvm-project-15.0.7/llvm/lib/ToolDrivers/llvm-lib/
H A DLibDriver.cpp47 static const opt::OptTable::Info InfoTable[] = { variable
57 LibOptTable() : OptTable(InfoTable, true) {} in LibOptTable()
/llvm-project-15.0.7/lldb/tools/lldb-server/
H A Dlldb-gdbserver.cpp285 const opt::OptTable::Info InfoTable[] = { variable
299 LLGSOptTable() : OptTable(InfoTable) {} in LLGSOptTable()
/llvm-project-15.0.7/llvm/unittests/Option/
H A DOptionParsingTest.cpp38 static const OptTable::Info InfoTable[] = { variable
51 : OptTable(InfoTable, IgnoreCase) {} in TestOptTable()
/llvm-project-15.0.7/llvm/tools/llvm-ml/
H A Dllvm-ml.cpp66 const opt::OptTable::Info InfoTable[] = { variable
80 MLOptTable() : OptTable(InfoTable, /*IgnoreCase=*/false) {} in MLOptTable()
/llvm-project-15.0.7/llvm/tools/llvm-symbolizer/
H A Dllvm-symbolizer.cpp62 const opt::OptTable::Info InfoTable[] = { variable
76 SymbolizerOptTable() : OptTable(InfoTable) { in SymbolizerOptTable()
/llvm-project-15.0.7/llvm/tools/llvm-dwarfutil/
H A Dllvm-dwarfutil.cpp47 const opt::OptTable::Info InfoTable[] = { variable
61 DwarfutilOptTable() : OptTable(InfoTable) {} in DwarfutilOptTable()
/llvm-project-15.0.7/lldb/tools/driver/
H A DDriver.cpp67 const opt::OptTable::Info InfoTable[] = { variable
81 LLDBOptTable() : OptTable(InfoTable) {} in LLDBOptTable()
/llvm-project-15.0.7/llvm/tools/llvm-ifs/
H A Dllvm-ifs.cpp66 const opt::OptTable::Info InfoTable[] = { variable
80 IFSOptTable() : OptTable(InfoTable) { setGroupedShortOptions(true); } in IFSOptTable()
/llvm-project-15.0.7/llvm/tools/llvm-readobj/
H A Dllvm-readobj.cpp69 const opt::OptTable::Info InfoTable[] = { variable
83 ReadobjOptTable() : OptTable(InfoTable) { setGroupedShortOptions(true); } in ReadobjOptTable()
/llvm-project-15.0.7/llvm/tools/dsymutil/
H A Ddsymutil.cpp70 const opt::OptTable::Info InfoTable[] = { variable
84 DsymutilOptTable() : OptTable(InfoTable) {} in DsymutilOptTable()
/llvm-project-15.0.7/llvm/tools/llvm-rc/
H A Dllvm-rc.cpp62 const opt::OptTable::Info InfoTable[] = { variable
76 RcOptTable() : OptTable(InfoTable, /* IgnoreCase = */ true) {} in RcOptTable()
/llvm-project-15.0.7/llvm/tools/llvm-size/
H A Dllvm-size.cpp54 const opt::OptTable::Info InfoTable[] = { variable
68 SizeOptTable() : OptTable(InfoTable) { setGroupedShortOptions(true); } in SizeOptTable()
/llvm-project-15.0.7/clang/tools/clang-linker-wrapper/
H A DClangLinkerWrapper.cpp142 static const OptTable::Info InfoTable[] = { variable
153 WrapperOptTable() : OptTable(InfoTable) {} in WrapperOptTable()
/llvm-project-15.0.7/lldb/tools/lldb-vscode/
H A Dlldb-vscode.cpp86 static const llvm::opt::OptTable::Info InfoTable[] = { variable
98 LLDBVSCodeOptTable() : OptTable(InfoTable, true) {} in LLDBVSCodeOptTable()
/llvm-project-15.0.7/llvm/tools/llvm-nm/
H A Dllvm-nm.cpp69 const opt::OptTable::Info InfoTable[] = { variable
83 NmOptTable() : OptTable(InfoTable) { setGroupedShortOptions(true); } in NmOptTable()