| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Interpreter/ |
| H A D | OptionValueEnumeration.h | 25 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 D | bsnmptools.h | 68 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 D | bsnmpmap.c | 163 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 D | bsnmpimport.c | 337 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 D | PDBASTParser.cpp | 467 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 D | PDBASTParser.h | 84 bool AddEnumValue(lldb_private::CompilerType enum_type,
|
| H A D | SymbolFilePDB.cpp | 1433 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 D | TypeFormat.h | 199 void SetTypeName(ConstString enum_type) { m_enum_type = enum_type; } in SetTypeName() argument
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Interpreter/ |
| H A D | OptionValueEnumeration.cpp | 18 const OptionEnumValues &enumerators, enum_type value) in OptionValueEnumeration()
|
| /freebsd-12.1/contrib/binutils/binutils/ |
| H A D | debug.h | 205 bfd_boolean (*enum_type) member
|
| H A D | debug.c | 2549 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 D | ChangeLog-9197 | 1722 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 D | ClangASTContext.h | 908 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 D | dwarfread.c | 479 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 D | ClangASTContext.cpp | 3397 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 D | decl.c | 2767 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 D | parser.c | 10574 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 D | pt.c | 8057 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 D | cp-tree.h | 3159 enum_type, /* "enum" types. */ enumerator
|