Home
last modified time | relevance | path

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

/external/clang/utils/TableGen/
DClangAttrEmitter.cpp3168 unsigned SupportedSpellings = 0; in WriteDocumentation() local
3178 SupportedSpellings |= Kind; in WriteDocumentation()
3203 if (!SupportedSpellings) in WriteDocumentation()
3213 if (SupportedSpellings & GNU) OS << "X"; in WriteDocumentation()
3215 if (SupportedSpellings & CXX11) OS << "X"; in WriteDocumentation()
3217 if (SupportedSpellings & Declspec) OS << "X"; in WriteDocumentation()
3219 if (SupportedSpellings & Keyword) OS << "X"; in WriteDocumentation()
3221 if (SupportedSpellings & Pragma) OS << "X"; in WriteDocumentation()
/external/llvm-project/clang/utils/TableGen/
DClangAttrEmitter.cpp4031 SpellingList SupportedSpellings; member in clang::DocumentationData
4037 SupportedSpellings(std::move(HeadingAndSpellings.second)) {} in DocumentationData()
4092 SpellingList SupportedSpellings; in GetAttributeHeadingAndSpellings() local
4094 SupportedSpellings.add(Attribute, I); in GetAttributeHeadingAndSpellings()
4096 return std::make_pair(std::move(Heading), std::move(SupportedSpellings)); in GetAttributeHeadingAndSpellings()
4116 for (StringRef Spelling : Doc.SupportedSpellings[K]) { in WriteDocumentation()