Home
last modified time | relevance | path

Searched refs:enum_type (Results 1 – 19 of 19) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Interpreter/
H A DOptionValueEnumeration.h25 typedef int64_t enum_type; typedef
27 enum_type value;
33 OptionValueEnumeration(const OptionEnumValues &enumerators, enum_type value);
68 enum_type operator=(enum_type value) {
73 enum_type GetCurrentValue() const { return m_current_value; } in GetCurrentValue()
75 enum_type GetDefaultValue() const { return m_default_value; } in GetDefaultValue()
77 void SetCurrentValue(enum_type value) { m_current_value = value; } in SetCurrentValue()
79 void SetDefaultValue(enum_type value) { m_default_value = value; } in SetDefaultValue()
84 enum_type m_current_value;
85 enum_type m_default_value;
/freebsd-12.1/usr.sbin/bsnmpd/tools/libbsnmptools/
H A Dbsnmptools.h68 struct enum_type { struct
74 SLIST_ENTRY(enum_type) link; argument
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; in snmp_enumtc_listfree()
549 struct enum_type *
552 struct enum_type *enum_tc; in snmp_enumtc_init()
554 if ((enum_tc = calloc(1, sizeof(struct enum_type))) == NULL) { in snmp_enumtc_init()
569 snmp_enumtc_free(struct enum_type *tc) in snmp_enumtc_free()
579 snmp_enumtc_insert(struct snmp_toolinfo *snmptoolctx, struct enum_type *entry) in snmp_enumtc_insert()
587 struct enum_type *
590 struct enum_type *temp; in snmp_enumtc_lookup()
H A Dbsnmpimport.c337 struct enum_type *t; in gettoken()
590 struct enum_type *t; in parse_type()
885 struct enum_type *t; in snmp_import_top()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/PDB/
H A DPDBASTParser.cpp467 auto enum_type = llvm::dyn_cast<PDBSymbolTypeEnum>(&type); in CreateLLDBTypeFromPDBType() local
468 assert(enum_type); in CreateLLDBTypeFromPDBType()
471 MSVCUndecoratedNameParser::DropScope(enum_type->getName()); in CreateLLDBTypeFromPDBType()
473 uint64_t bytes = enum_type->getLength(); in CreateLLDBTypeFromPDBType()
479 auto underlying_type_up = enum_type->getUnderlyingType(); in CreateLLDBTypeFromPDBType()
487 auto first_child = enum_type->findOneChild<PDBSymbolData>(); in CreateLLDBTypeFromPDBType()
509 auto enum_values = enum_type->findAllChildren<PDBSymbolData>(); in CreateLLDBTypeFromPDBType()
522 if (enum_type->isConstType()) in CreateLLDBTypeFromPDBType()
525 if (enum_type->isVolatileType()) in CreateLLDBTypeFromPDBType()
1113 bool PDBASTParser::AddEnumValue(CompilerType enum_type, in AddEnumValue() argument
[all …]
H A DPDBASTParser.h84 bool AddEnumValue(lldb_private::CompilerType enum_type,
H A DSymbolFilePDB.cpp1433 if (auto enum_type = llvm::dyn_cast<PDBSymbolTypeEnum>(result.get())) in FindTypesByRegex() local
1434 type_name = enum_type->getName(); in FindTypesByRegex()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/DataFormatters/
H A DTypeFormat.h199 void SetTypeName(ConstString enum_type) { m_enum_type = enum_type; } in SetTypeName() argument
/freebsd-12.1/contrib/llvm/tools/lldb/source/Interpreter/
H A DOptionValueEnumeration.cpp18 const OptionEnumValues &enumerators, enum_type value) in OptionValueEnumeration()
/freebsd-12.1/contrib/binutils/binutils/
H A Ddebug.h205 bfd_boolean (*enum_type) member
H A Ddebug.c2549 return (*fns->enum_type) (fhandle, tag, (const char **) NULL, in debug_write_type()
2551 return (*fns->enum_type) (fhandle, tag, type->u.kenum->names, in debug_write_type()
H A DChangeLog-91971722 enum_type, start_struct_type, and start_class_type.
1724 start_struct_type, debug_write_class_type, and enum_type. If
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Symbol/
H A DClangASTContext.h908 const CompilerType &enum_type, const Declaration &decl, const char *name,
911 const CompilerType &enum_type, const Declaration &decl, const char *name,
/freebsd-12.1/contrib/gdb/gdb/
H A Ddwarfread.c479 static struct type *enum_type (struct dieinfo *, struct objfile *);
1595 type = enum_type (dip, objfile); in read_enumeration()
1639 enum_type (struct dieinfo *dip, struct objfile *objfile) in enum_type() function
/freebsd-12.1/contrib/llvm/tools/lldb/source/Symbol/
H A DClangASTContext.cpp3397 const clang::EnumType *enum_type = llvm::dyn_cast<clang::EnumType>( in IsEnumerationType() local
3400 if (enum_type) { in IsEnumerationType()
3401 IsIntegerType(enum_type->getDecl()->getIntegerType().getAsOpaquePtr(), in IsEnumerationType()
5821 const clang::EnumType *enum_type = in ForEachEnumerator() local
5823 if (enum_type) { in ForEachEnumerator()
5824 const clang::EnumDecl *enum_decl = enum_type->getDecl(); in ForEachEnumerator()
8960 if (!enum_type || ConstString(name).IsEmpty()) in AddEnumerationValueToEnumerationType()
8963 lldbassert(enum_type.GetTypeSystem() == static_cast<TypeSystem *>(this)); in AddEnumerationValueToEnumerationType()
8966 enum_type.GetOpaqueQualType(); in AddEnumerationValueToEnumerationType()
9005 GetEnumerationIntegerType(enum_type.GetOpaqueQualType()); in AddEnumerationValueToEnumerationType()
[all …]
/freebsd-12.1/contrib/gcc/cp/
H A Ddecl.c2767 ti.enum_p = tag_type == enum_type; in build_typename_type()
10097 case enum_type: in tag_name()
10155 && tag_code != enum_type in check_elaborated_type_specifier()
10163 && tag_code == enum_type) in check_elaborated_type_specifier()
10302 case enum_type: in xref_tag()
10647 enumtype = lookup_and_check_tag (enum_type, name, in start_enum()
H A Dparser.c10574 tag_type = enum_type; in cp_parser_elaborated_type_specifier()
10624 if (tag_type != enum_type) in cp_parser_elaborated_type_specifier()
10815 else if (tag_type != enum_type && CLASSTYPE_TEMPLATE_INSTANTIATION (type) in cp_parser_elaborated_type_specifier()
10826 if (tag_type != enum_type) in cp_parser_elaborated_type_specifier()
H A Dpt.c8057 tree enum_type; in tsubst_copy() local
8080 enum_type in tsubst_copy()
8084 for (v = TYPE_VALUES (enum_type); in tsubst_copy()
H A Dcp-tree.h3159 enum_type, /* "enum" types. */ enumerator