Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DBuiltins.td87 let Spellings = ["__builtin_acos"];
94 let Spellings = ["__builtin_acoshf128"];
101 let Spellings = ["__builtin_asin"];
108 let Spellings = ["__builtin_asinhf128"];
115 let Spellings = ["__builtin_atan"];
122 let Spellings = ["__builtin_atanhf128"];
129 let Spellings = ["__builtin_cbrtf128"];
135 let Spellings = ["__builtin_ceil"];
141 let Spellings = ["__builtin_cos"];
147 let Spellings = ["__builtin_cosh"];
[all …]
H A DAttr.td382 list<Spelling> Spellings = spellings;
490 list<Spelling> Spellings = spellings;
649 list<Spelling> Spellings;
780 let Spellings = [GCC<"abi_tag", /*AllowInC*/0>];
788 let Spellings = [Clang<"address_space">];
794 let Spellings = [GCC<"alias">];
801 let Spellings = [CXX11<"clang", "builtin_alias">,
810 let Spellings = [Clang<"__clang_arm_builtin_alias">];
817 let Spellings = [GCC<"aligned">, Declspec<"align">, CustomKeyword<"alignas">,
829 let Spellings = [
[all …]
H A DBuiltinsBPF.td13 let Spellings = ["__builtin_preserve_field_info"];
20 let Spellings = ["__builtin_btf_type_id"];
27 let Spellings = ["__builtin_preserve_type_info"];
34 let Spellings = ["__builtin_preserve_enum_value"];
H A DBuiltinsBase.td80 list<string> Spellings;
H A DBuiltinsRISCV.td16 let Spellings = ["__builtin_riscv_" # NAME];
/freebsd/contrib/llvm-project/clang/utils/TableGen/
H A DClangAttrEmitter.cpp83 std::vector<Record *> Spellings = Attr.getValueAsListOfDefs("Spellings"); in GetFlattenedSpellings() local
86 for (const auto &Spelling : Spellings) { in GetFlattenedSpellings()
1552 std::vector<FlattenedSpelling> Spellings = GetFlattenedSpellings(R); in writeGetSpellingFunction() local
1555 if (Spellings.empty()) { in writeGetSpellingFunction()
1565 for (unsigned I = 0; I < Spellings.size(); ++I) in writeGetSpellingFunction()
1567 " return \"" << Spellings[I].name() << "\";\n"; in writeGetSpellingFunction()
1578 std::vector<FlattenedSpelling> Spellings = GetFlattenedSpellings(R); in writePrettyPrintFunction() local
1583 if (Spellings.empty()) { in writePrettyPrintFunction()
1595 for (unsigned I = 0; I < Spellings.size(); ++ I) { in writePrettyPrintFunction()
1601 std::string Name = Spellings[I].name(); in writePrettyPrintFunction()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaCodeComplete.cpp4638 for (const auto &S : A.Spellings) { in CodeCompleteAttribute()