| /freebsd/contrib/llvm-project/lldb/source/Target/ |
| H A D | RegisterFlags.cpp | 248 const FieldEnum::Enumerators &enumerators) { in DumpEnumerators() argument 249 for (auto it = enumerators.cbegin(); it != enumerators.cend(); ++it) { in DumpEnumerators() 258 if (std::next(it) != enumerators.cend()) in DumpEnumerators() 297 const FieldEnum::Enumerators &enumerators = enum_type->GetEnumerators(); in DumpEnums() local 298 if (enumerators.empty()) in DumpEnums() 313 DumpEnumerators(strm, indent, current_width, max_width, enumerators); in DumpEnums() 344 const Enumerators &enumerators = GetEnumerators(); in ToXML() local 345 if (enumerators.empty()) { in ToXML() 352 for (const auto &enumerator : enumerators) { in ToXML() 423 FieldEnum::FieldEnum(std::string id, const Enumerators &enumerators) in FieldEnum() argument [all …]
|
| /freebsd/contrib/llvm-project/lldb/source/Interpreter/ |
| H A D | OptionValueEnumeration.cpp | 17 const OptionEnumValues &enumerators, enum_type value) in OptionValueEnumeration() argument 19 SetEnumerations(enumerators); in OptionValueEnumeration() 96 const OptionEnumValues &enumerators) { in SetEnumerations() argument 99 for (const auto &enumerator : enumerators) { in SetEnumerations()
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/RegisterTypeBuilder/ |
| H A D | RegisterTypeBuilderClang.cpp | 72 const FieldEnum::Enumerators &enumerators = enum_type->GetEnumerators(); in GetRegisterType() local 73 if (!enumerators.empty()) { in GetRegisterType() 98 for (auto enumerator : enumerators) { in GetRegisterType()
|
| /freebsd/contrib/llvm-project/lldb/source/Core/ |
| H A D | DumpRegisterInfo.cpp | 117 std::string enumerators = flags_type->DumpEnums(terminal_width); in DoDumpRegisterInfo() local 118 if (enumerators.size()) in DoDumpRegisterInfo() 119 strm << "\n\n" << enumerators; in DoDumpRegisterInfo()
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/Interpreter/ |
| H A D | OptionValueEnumeration.h | 33 OptionValueEnumeration(const OptionEnumValues &enumerators, enum_type value); 74 void SetEnumerations(const OptionEnumValues &enumerators);
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/BinaryFormat/ |
| H A D | Swift.def | 9 // Macros for running through Swift enumerators.
|
| H A D | MsgPack.def | 10 /// Macros for running through MessagePack enumerators.
|
| H A D | Dwarf.def | 9 // Macros for running through Dwarf enumerators.
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ |
| H A D | ClangPersistentVariables.cpp | 97 for (clang::EnumConstantDecl *enumerator_decl : enum_decl->enumerators()) { in RegisterPersistentDecl()
|
| /freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | EnumCastOutOfRangeChecker.cpp | 78 llvm::transform(ED->enumerators(), DeclValues.begin(), in getDeclValuesForEnum()
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/Target/ |
| H A D | RegisterFlags.h | 44 FieldEnum(std::string id, const Enumerators &enumerators);
|
| /freebsd/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaBPF.cpp | 108 return llvm::is_contained(ET->getDecl()->enumerators(), Enumerator); in isValidPreserveEnumValueArg()
|
| H A D | SemaStmt.cpp | 1608 !ET->getDecl()->enumerators().empty()) { in ActOnFinishSwitchStmt() 1614 for (auto *EDI : ED->enumerators()) { in ActOnFinishSwitchStmt() 1780 for (auto *EDI : ED->enumerators()) { in DiagnoseAssignmentEnum()
|
| /freebsd/sys/contrib/device-tree/Bindings/clock/ |
| H A D | qcom,rpmcc.txt | 36 The clock enumerators are defined in <dt-bindings/clock/qcom,rpmcc.h>
|
| /freebsd/sys/x86/x86/ |
| H A D | local_apic.c | 1989 static SLIST_HEAD(, apic_enumerator) enumerators = 1990 SLIST_HEAD_INITIALIZER(enumerators); 1999 SLIST_FOREACH(apic_enum, &enumerators, apic_next) { in apic_register_enumerator() 2005 SLIST_INSERT_HEAD(&enumerators, enumerator, apic_next); in apic_register_enumerator() 2030 SLIST_FOREACH(enumerator, &enumerators, apic_next) { in apic_init()
|
| /freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
| H A D | DeclNodes.td | 37 def EnumConstant : DeclNode<Value, "enumerators">;
|
| H A D | DiagnosticParseKinds.td | 113 "missing ',' between enumerators">; 128 "%select{|; missing list of enumerators?}0">,
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/ |
| H A D | ProcessGDBRemote.cpp | 4326 std::map<uint64_t, FieldEnum::Enumerator> enumerators; in ParseEnumEvalues() local 4329 "evalue", [&enumerators, &log](const XMLNode &enumerator_node) { in ParseEnumEvalues() 4364 enumerators.insert_or_assign( in ParseEnumEvalues() 4372 for (auto [_, enumerator] : enumerators) in ParseEnumEvalues() 4407 FieldEnum::Enumerators enumerators = ParseEnumEvalues(enum_node); in ParseEnums() local 4408 if (!enumerators.empty()) { in ParseEnums() 4413 id, std::make_unique<FieldEnum>(id, enumerators)); in ParseEnums()
|
| /freebsd/contrib/llvm-project/clang/lib/AST/ |
| H A D | TemplateBase.cpp | 60 for (const EnumConstantDecl *ECD : ET->getDecl()->enumerators()) { in printIntegral()
|
| H A D | ASTStructuralEquivalence.cpp | 2142 CopyEnumerators(D1->enumerators(), D1Enums); in IsStructurallyEquivalent() 2143 CopyEnumerators(D2->enumerators(), D2Enums); in IsStructurallyEquivalent()
|
| /freebsd/contrib/llvm-project/clang/lib/Index/ |
| H A D | USRGeneration.cpp | 593 auto enum_range = ED->enumerators(); in VisitTagDecl()
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/ |
| H A D | TypeSystemClang.cpp | 8391 ast.computeEnumBits(enum_decl->enumerators(), NumNegativeBits, in CompleteTagDeclarationDefinition() 8583 clang::EnumDecl::enumerator_range enumerators = enum_decl->enumerators(); in DumpEnumValue() local 8584 if (enumerators.empty()) in DumpEnumValue() 8587 for (auto *enumerator : enumerators) { in DumpEnumValue() 8630 for (auto *enumerator : enum_decl->enumerators()) in DumpEnumValue()
|
| /freebsd/contrib/llvm-project/clang/include/clang/ExtractAPI/ |
| H A D | ExtractAPIVisitor.h | 449 Decl->enumerators()); in VisitEnumDecl()
|
| /freebsd/contrib/llvm-project/lldb/docs/ |
| H A D | python_api_enums.rst | 7 Python API enumerators and constants
|
| /freebsd/contrib/llvm-project/clang/lib/Frontend/ |
| H A D | ASTUnit.cpp | 958 for (const auto *EI : EnumD->enumerators()) { in AddTopLevelDeclarationToHash()
|