Searched refs:enum_type (Results 1 - 18 of 18) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DOptionValueEnumeration.h24 typedef int64_t enum_type; typedef in class:lldb_private::OptionValueEnumeration
26 enum_type value;
32 OptionValueEnumeration(const OptionEnumValues &enumerators, enum_type value);
63 enum_type operator=(enum_type value) {
68 enum_type GetCurrentValue() const { return m_current_value; }
70 enum_type GetDefaultValue() const { return m_default_value; }
72 void SetCurrentValue(enum_type value) { m_current_value = value; }
74 void SetDefaultValue(enum_type value) { m_default_value = value; }
79 enum_type m_current_valu
[all...]
/freebsd-11-stable/usr.sbin/bsnmpd/tools/libbsnmptools/
H A Dbsnmptools.h68 struct enum_type { struct
74 SLIST_ENTRY(enum_type) link;
77 SLIST_HEAD(snmp_enum_tc, enum_type);
264 struct enum_type *snmp_enumtc_init(char *);
265 void snmp_enumtc_free(struct enum_type *);
266 void snmp_enumtc_insert(struct snmp_toolinfo *, struct enum_type *);
267 struct enum_type *snmp_enumtc_lookup(struct snmp_toolinfo *, char *);
H A Dbsnmpmap.c163 struct enum_type *t;
549 struct enum_type *
552 struct enum_type *enum_tc;
554 if ((enum_tc = calloc(1, sizeof(struct enum_type))) == NULL) {
569 snmp_enumtc_free(struct enum_type *tc)
579 snmp_enumtc_insert(struct snmp_toolinfo *snmptoolctx, struct enum_type *entry)
587 struct enum_type *
590 struct enum_type *temp;
H A Dbsnmpimport.c337 struct enum_type *t;
590 struct enum_type *t;
885 struct enum_type *t;
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/DataFormatters/
H A DTypeFormat.h198 void SetTypeName(ConstString enum_type) { m_enum_type = enum_type; } argument
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/
H A DPDBASTParser.cpp464 auto enum_type = llvm::dyn_cast<PDBSymbolTypeEnum>(&type); local
465 assert(enum_type);
468 MSVCUndecoratedNameParser::DropScope(enum_type->getName());
470 uint64_t bytes = enum_type->getLength();
476 auto underlying_type_up = enum_type->getUnderlyingType();
484 auto first_child = enum_type->findOneChild<PDBSymbolData>();
506 auto enum_values = enum_type->findAllChildren<PDBSymbolData>();
519 if (enum_type->isConstType())
522 if (enum_type->isVolatileType())
1118 bool PDBASTParser::AddEnumValue(CompilerType enum_type, argument
[all...]
H A DPDBASTParser.h83 bool AddEnumValue(lldb_private::CompilerType enum_type,
H A DSymbolFilePDB.cpp1484 if (auto enum_type = llvm::dyn_cast<PDBSymbolTypeEnum>(result.get()))
1485 type_name = enum_type->getName();
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/
H A DOptionValueEnumeration.cpp17 const OptionEnumValues &enumerators, enum_type value)
/freebsd-11-stable/contrib/binutils/binutils/
H A Ddebug.h205 bfd_boolean (*enum_type) member in struct:debug_write_fns
375 was also passed when enum_type, start_struct_type, or
H A Ddebug.c2552 return (*fns->enum_type) (fhandle, tag, (const char **) NULL,
2554 return (*fns->enum_type) (fhandle, tag, type->u.kenum->names,
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DClangASTContext.h823 const CompilerType &enum_type, const Declaration &decl, const char *name,
826 const CompilerType &enum_type, const Declaration &decl, const char *name,
/freebsd-11-stable/contrib/gdb/gdb/
H A Ddwarfread.c479 static struct type *enum_type (struct dieinfo *, struct objfile *);
1583 Note that we need to call enum_type regardless of whether or not we
1595 type = enum_type (dip, objfile);
1611 enum_type -- decode and return a type for an enumeration
1615 static type *enum_type (struct dieinfo *dip, struct objfile *objfile)
1639 enum_type (struct dieinfo *dip, struct objfile *objfile) function
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/
H A DClangASTContext.cpp2970 const clang::EnumType *enum_type = llvm::dyn_cast<clang::EnumType>( local
2973 if (enum_type) {
2974 IsIntegerType(enum_type->getDecl()->getIntegerType().getAsOpaquePtr(),
5137 const clang::EnumType *enum_type = local
5139 if (enum_type) {
5140 const clang::EnumDecl *enum_decl = enum_type->getDecl();
7839 const CompilerType &enum_type, const Declaration &decl, const char *name,
7842 if (!enum_type || ConstString(name).IsEmpty())
7845 lldbassert(enum_type.GetTypeSystem() == static_cast<TypeSystem *>(this));
7848 enum_type
7838 AddEnumerationValueToEnumerationType( const CompilerType &enum_type, const Declaration &decl, const char *name, const llvm::APSInt &value) argument
7883 AddEnumerationValueToEnumerationType( const CompilerType &enum_type, const Declaration &decl, const char *name, int64_t enum_value, uint32_t enum_value_bit_size) argument
[all...]
/freebsd-11-stable/contrib/gcc/cp/
H A Ddecl.c2775 ti.enum_p = tag_type == enum_type;
10114 case enum_type:
10172 && tag_code != enum_type
10180 && tag_code == enum_type)
10319 case enum_type:
10665 enumtype = lookup_and_check_tag (enum_type, name,
H A Dpt.c8058 tree enum_type;
8081 enum_type
8085 for (v = TYPE_VALUES (enum_type);
8057 tree enum_type; local
H A Dparser.c10576 tag_type = enum_type;
10626 if (tag_type != enum_type)
10817 else if (tag_type != enum_type && CLASSTYPE_TEMPLATE_INSTANTIATION (type)
10828 if (tag_type != enum_type)
H A Dcp-tree.h3166 enum_type, /* "enum" types. */
3159 enum_type, /* "enum" types. */ enumerator in enum:tag_types

Completed in 539 milliseconds