Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/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);
58 enum_type operator=(enum_type value) {
63 enum_type GetCurrentValue() const { return m_current_value; } in GetCurrentValue()
65 enum_type GetDefaultValue() const { return m_default_value; } in GetDefaultValue()
67 void SetCurrentValue(enum_type value) { m_current_value = value; } in SetCurrentValue()
69 void SetDefaultValue(enum_type value) { m_default_value = value; } in SetDefaultValue()
74 enum_type m_current_value;
75 enum_type m_default_value;
/freebsd-13.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.c338 struct enum_type *t; in gettoken()
591 struct enum_type *t; in parse_type()
886 struct enum_type *t; in snmp_import_top()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/
H A DPDBASTParser.cpp465 auto enum_type = llvm::dyn_cast<PDBSymbolTypeEnum>(&type); in CreateLLDBTypeFromPDBType() local
466 assert(enum_type); in CreateLLDBTypeFromPDBType()
471 uint64_t bytes = enum_type->getLength(); in CreateLLDBTypeFromPDBType()
477 auto underlying_type_up = enum_type->getUnderlyingType(); in CreateLLDBTypeFromPDBType()
485 auto first_child = enum_type->findOneChild<PDBSymbolData>(); in CreateLLDBTypeFromPDBType()
508 auto enum_values = enum_type->findAllChildren<PDBSymbolData>(); in CreateLLDBTypeFromPDBType()
521 if (enum_type->isConstType()) in CreateLLDBTypeFromPDBType()
524 if (enum_type->isVolatileType()) in CreateLLDBTypeFromPDBType()
1143 bool PDBASTParser::AddEnumValue(CompilerType enum_type, in AddEnumValue() argument
1178 CompilerType underlying_type = m_ast.GetEnumerationIntegerType(enum_type); in AddEnumValue()
[all …]
H A DPDBASTParser.h83 bool AddEnumValue(lldb_private::CompilerType enum_type,
H A DSymbolFilePDB.cpp1486 if (auto enum_type = llvm::dyn_cast<PDBSymbolTypeEnum>(result.get())) in FindTypesByRegex() local
1487 type_name = enum_type->getName(); in FindTypesByRegex()
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/DataFormatters/
H A DTypeFormat.h200 void SetTypeName(ConstString enum_type) { m_enum_type = enum_type; } in SetTypeName() argument
/freebsd-13.1/contrib/llvm-project/lldb/source/Interpreter/
H A DOptionValueEnumeration.cpp17 const OptionEnumValues &enumerators, enum_type value) in OptionValueEnumeration()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp3209 if (enum_type) { in IsEnumerationType()
3225 if (enum_type) { in IsScopedEnumerationType()
3226 return enum_type->isScopedEnumeralType(); in IsScopedEnumerationType()
5515 const clang::EnumType *enum_type = in ForEachEnumerator() local
5517 if (enum_type) { in ForEachEnumerator()
5518 const clang::EnumDecl *enum_decl = enum_type->getDecl(); in ForEachEnumerator()
7492 const EnumDecl *enum_decl = enum_type->getDecl(); in SetIntegerInitializerForVariable()
8276 if (!enum_type || ConstString(name).IsEmpty()) in AddEnumerationValueToEnumerationType()
8282 enum_type.GetOpaqueQualType(); in AddEnumerationValueToEnumerationType()
8335 if (!enum_type) in GetEnumerationIntegerType()
[all …]
H A DTypeSystemClang.h924 const CompilerType &enum_type, const Declaration &decl, const char *name,
927 const CompilerType &enum_type, const Declaration &decl, const char *name,