Home
last modified time | relevance | path

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

/freebsd-14.2/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-14.2/usr.sbin/bsnmpd/tools/libbsnmptools/
H A Dbsnmptools.h66 struct enum_type { struct
72 SLIST_ENTRY(enum_type) link; argument
75 SLIST_HEAD(snmp_enum_tc, enum_type);
262 struct enum_type *snmp_enumtc_init(char *);
263 void snmp_enumtc_free(struct enum_type *);
264 void snmp_enumtc_insert(struct snmp_toolinfo *, struct enum_type *);
265 struct enum_type *snmp_enumtc_lookup(struct snmp_toolinfo *, char *);
H A Dbsnmpmap.c161 struct enum_type *t; in snmp_enumtc_listfree()
547 struct enum_type *
550 struct enum_type *enum_tc; in snmp_enumtc_init()
552 if ((enum_tc = calloc(1, sizeof(struct enum_type))) == NULL) { in snmp_enumtc_init()
567 snmp_enumtc_free(struct enum_type *tc) in snmp_enumtc_free()
577 snmp_enumtc_insert(struct snmp_toolinfo *snmptoolctx, struct enum_type *entry) in snmp_enumtc_insert()
585 struct enum_type *
588 struct enum_type *temp; in snmp_enumtc_lookup()
H A Dbsnmpimport.c336 struct enum_type *t; in gettoken()
589 struct enum_type *t; in parse_type()
884 struct enum_type *t; in snmp_import_top()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/
H A DPDBASTParser.cpp473 auto enum_type = llvm::dyn_cast<PDBSymbolTypeEnum>(&type); in CreateLLDBTypeFromPDBType() local
474 assert(enum_type); in CreateLLDBTypeFromPDBType()
479 uint64_t bytes = enum_type->getLength(); in CreateLLDBTypeFromPDBType()
485 auto underlying_type_up = enum_type->getUnderlyingType(); in CreateLLDBTypeFromPDBType()
493 auto first_child = enum_type->findOneChild<PDBSymbolData>(); in CreateLLDBTypeFromPDBType()
516 auto enum_values = enum_type->findAllChildren<PDBSymbolData>(); in CreateLLDBTypeFromPDBType()
529 if (enum_type->isConstType()) in CreateLLDBTypeFromPDBType()
532 if (enum_type->isVolatileType()) in CreateLLDBTypeFromPDBType()
1152 bool PDBASTParser::AddEnumValue(CompilerType enum_type, in AddEnumValue() argument
1187 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.cpp1491 if (auto enum_type = llvm::dyn_cast<PDBSymbolTypeEnum>(result.get())) in FindTypesByRegex() local
1492 type_name = enum_type->getName(); in FindTypesByRegex()
/freebsd-14.2/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-14.2/contrib/llvm-project/lldb/source/Interpreter/
H A DOptionValueEnumeration.cpp17 const OptionEnumValues &enumerators, enum_type value) in OptionValueEnumeration()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/SymbolFile/CTF/
H A DSymbolFileCTF.cpp461 CompilerType enum_type = m_ast->CreateEnumerationType( in CreateEnum() local
469 enum_type, value_decl, value.name.data(), value.value, ctf_enum.size); in CreateEnum()
471 TypeSystemClang::CompleteTagDeclarationDefinition(enum_type); in CreateEnum()
474 Type::eEncodingIsUID, decl, enum_type, in CreateEnum()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp3187 if (enum_type) { in IsEnumerationType()
3203 if (enum_type) { in IsScopedEnumerationType()
3204 return enum_type->isScopedEnumeralType(); in IsScopedEnumerationType()
5489 const clang::EnumType *enum_type = in ForEachEnumerator() local
5491 if (enum_type) { in ForEachEnumerator()
7527 if (const EnumType *enum_type = qt->getAs<EnumType>()) { in SetIntegerInitializerForVariable() local
7528 const EnumDecl *enum_decl = enum_type->getDecl(); in SetIntegerInitializerForVariable()
8328 if (!enum_type || ConstString(name).IsEmpty()) in AddEnumerationValueToEnumerationType()
8335 enum_type.GetOpaqueQualType(); in AddEnumerationValueToEnumerationType()
8388 if (!enum_type) in GetEnumerationIntegerType()
[all …]
H A DTypeSystemClang.h1007 const CompilerType &enum_type, const Declaration &decl, const char *name,
1010 const CompilerType &enum_type, const Declaration &decl, const char *name,