Home
last modified time | relevance | path

Searched refs:SpellingKind (Results 1 – 2 of 2) sorted by relevance

/external/llvm-project/clang/utils/TableGen/
DClangAttrEmitter.cpp3978 enum class SpellingKind { enum
3987 static const size_t NumSpellingKinds = (size_t)SpellingKind::Pragma + 1;
3993 ArrayRef<std::string> operator[](SpellingKind K) const { in operator []()
3998 SpellingKind Kind = StringSwitch<SpellingKind>(Spelling.variety()) in add()
3999 .Case("GNU", SpellingKind::GNU) in add()
4000 .Case("CXX11", SpellingKind::CXX11) in add()
4001 .Case("C2x", SpellingKind::C2x) in add()
4002 .Case("Declspec", SpellingKind::Declspec) in add()
4003 .Case("Microsoft", SpellingKind::Microsoft) in add()
4004 .Case("Keyword", SpellingKind::Keyword) in add()
[all …]
/external/clang/utils/TableGen/
DClangAttrEmitter.cpp3121 enum SpellingKind { enum
3170 SpellingKind Kind = StringSwitch<SpellingKind>(I.variety()) in WriteDocumentation()