Home
last modified time | relevance | path

Searched refs:Spellings (Results 1 – 4 of 4) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Basic/
DAttr.td300 list<Spelling> Spellings = spellings;
505 list<Spelling> Spellings;
625 let Spellings = [GCC<"abi_tag", /*AllowInC*/0>];
633 let Spellings = [Clang<"address_space">];
639 let Spellings = [GCC<"alias">];
646 let Spellings = [CXX11<"clang", "builtin_alias">,
655 let Spellings = [Clang<"__clang_arm_builtin_alias">];
662 let Spellings = [GCC<"aligned">, Declspec<"align">, Keyword<"alignas">,
674 let Spellings = [
695 let Spellings = [];
[all …]
/freebsd-12-stable/contrib/llvm-project/clang/utils/TableGen/
DClangAttrEmitter.cpp76 std::vector<Record *> Spellings = Attr.getValueAsListOfDefs("Spellings"); in GetFlattenedSpellings() local
79 for (const auto &Spelling : Spellings) { in GetFlattenedSpellings()
1393 std::vector<FlattenedSpelling> Spellings = GetFlattenedSpellings(R); in writeGetSpellingFunction() local
1396 if (Spellings.empty()) { in writeGetSpellingFunction()
1406 for (unsigned I = 0; I < Spellings.size(); ++I) in writeGetSpellingFunction()
1408 " return \"" << Spellings[I].name() << "\";\n"; in writeGetSpellingFunction()
1419 std::vector<FlattenedSpelling> Spellings = GetFlattenedSpellings(R); in writePrettyPrintFunction() local
1424 if (Spellings.empty()) { in writePrettyPrintFunction()
1436 for (unsigned I = 0; I < Spellings.size(); ++ I) { in writePrettyPrintFunction()
1442 std::string Name = Spellings[I].name(); in writePrettyPrintFunction()
[all …]
/freebsd-12-stable/contrib/llvm-project/clang/lib/Sema/
DParsedAttr.cpp138 for (auto &S : Ptr->Spellings) in get()
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Sema/
DParsedAttr.h69 ArrayRef<Spelling> Spellings; member