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

/freebsd-current/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DOptionValueEnumeration.h25 typedef int64_t enum_type; typedef in class:lldb_private::OptionValueEnumeration
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; }
65 enum_type GetDefaultValue() const { return m_default_value; }
67 void SetCurrentValue(enum_type value) { m_current_value = value; }
69 void SetDefaultValue(enum_type value) { m_default_value = value; }
74 enum_type m_current_valu
[all...]
/freebsd-current/usr.sbin/bsnmpd/tools/libbsnmptools/
H A Dbsnmptools.h66 struct enum_type { struct
72 SLIST_ENTRY(enum_type) link;
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;
547 struct enum_type *
550 struct enum_type *enum_tc;
552 if ((enum_tc = calloc(1, sizeof(struct enum_type))) == NULL) {
567 snmp_enumtc_free(struct enum_type *tc)
577 snmp_enumtc_insert(struct snmp_toolinfo *snmptoolctx, struct enum_type *entry)
585 struct enum_type *
588 struct enum_type *temp;
H A Dbsnmpimport.c336 struct enum_type *t;
589 struct enum_type *t;
884 struct enum_type *t;
/freebsd-current/contrib/llvm-project/lldb/source/Interpreter/
H A DOptionValueEnumeration.cpp17 const OptionEnumValues &enumerators, enum_type value)
/freebsd-current/contrib/llvm-project/lldb/include/lldb/DataFormatters/
H A DTypeFormat.h200 void SetTypeName(ConstString enum_type) { m_enum_type = enum_type; } argument
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/
H A DPDBASTParser.cpp473 auto enum_type = llvm::dyn_cast<PDBSymbolTypeEnum>(&type); local
474 assert(enum_type);
477 std::string(MSVCUndecoratedNameParser::DropScope(enum_type->getName()));
479 uint64_t bytes = enum_type->getLength();
485 auto underlying_type_up = enum_type->getUnderlyingType();
493 auto first_child = enum_type->findOneChild<PDBSymbolData>();
516 auto enum_values = enum_type->findAllChildren<PDBSymbolData>();
529 if (enum_type->isConstType())
532 if (enum_type->isVolatileType())
1152 bool PDBASTParser::AddEnumValue(CompilerType enum_type, argument
[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()))
1492 type_name = enum_type->getName();
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/SymbolFile/CTF/
H A DSymbolFileCTF.cpp461 CompilerType enum_type = m_ast->CreateEnumerationType( local
469 enum_type, value_decl, value.name.data(), value.value, ctf_enum.size);
471 TypeSystemClang::CompleteTagDeclarationDefinition(enum_type);
474 Type::eEncodingIsUID, decl, enum_type,
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp3184 const clang::EnumType *enum_type = llvm::dyn_cast<clang::EnumType>( local
3187 if (enum_type) {
3188 IsIntegerType(enum_type->getDecl()->getIntegerType().getAsOpaquePtr(),
3200 const clang::EnumType *enum_type = llvm::dyn_cast<clang::EnumType>( local
3203 if (enum_type) {
3204 return enum_type->isScopedEnumeralType();
5489 const clang::EnumType *enum_type = local
5491 if (enum_type) {
5492 const clang::EnumDecl *enum_decl = enum_type->getDecl();
7527 if (const EnumType *enum_type
8324 AddEnumerationValueToEnumerationType( const CompilerType &enum_type, const Declaration &decl, const char *name, const llvm::APSInt &value) argument
8371 AddEnumerationValueToEnumerationType( const CompilerType &enum_type, const Declaration &decl, const char *name, int64_t enum_value, uint32_t enum_value_bit_size) argument
8387 const auto *enum_type = llvm::dyn_cast_or_null<clang::EnumType>(clang_type); local
[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,

Completed in 216 milliseconds