Lines Matching refs:SpellingKind
5014 enum class SpellingKind : size_t { enum
5025 static const size_t NumSpellingKinds = (size_t)SpellingKind::NumSpellingKinds;
5031 ArrayRef<std::string> operator[](SpellingKind K) const { in operator []()
5036 SpellingKind Kind = in add()
5037 StringSwitch<SpellingKind>(Spelling.variety()) in add()
5038 .Case("GNU", SpellingKind::GNU) in add()
5039 .Case("CXX11", SpellingKind::CXX11) in add()
5040 .Case("C23", SpellingKind::C23) in add()
5041 .Case("Declspec", SpellingKind::Declspec) in add()
5042 .Case("Microsoft", SpellingKind::Microsoft) in add()
5043 .Case("Keyword", SpellingKind::Keyword) in add()
5044 .Case("Pragma", SpellingKind::Pragma) in add()
5045 .Case("HLSLAnnotation", SpellingKind::HLSLAnnotation); in add()
5049 case SpellingKind::CXX11: in add()
5050 case SpellingKind::C23: in add()
5053 case SpellingKind::Pragma: in add()
5158 SpellingKind K = (SpellingKind)Kind; in WriteDocumentation()
5161 if (K == SpellingKind::Microsoft) in WriteDocumentation()