Home
last modified time | relevance | path

Searched refs:IsEnumerationType (Results 1 – 7 of 7) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Symbol/
H A DCompilerType.cpp194 bool CompilerType::IsEnumerationType(bool &is_signed) const { in IsEnumerationType() function in CompilerType
197 return type_system_sp->IsEnumerationType(m_type, is_signed); in IsEnumerationType()
202 return IsIntegerType(is_signed) || IsEnumerationType(is_signed); in IsIntegerOrEnumerationType()
339 bool CompilerType::IsEnumerationType() const { in IsEnumerationType() function in CompilerType
341 return IsEnumerationType(is_signed); in IsEnumerationType()
345 return IsEnumerationType() && !IsScopedEnumerationType(); in IsUnscopedEnumerationType()
/freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DCompilerType.h168 bool IsEnumerationType(bool &is_signed) const;
205 bool IsEnumerationType() const;
H A DTypeSystem.h188 virtual bool IsEnumerationType(lldb::opaque_compiler_type_t type, in IsEnumerationType() function
/freebsd/contrib/llvm-project/lldb/source/ValueObject/
H A DValueObject.cpp1150 !GetCompilerType().IsEnumerationType() && in GetValueAsAPSInt()
3129 bool is_enum = GetCompilerType().IsEnumerationType(); in CastToBasicType()
3284 bool is_enum = GetCompilerType().IsEnumerationType(); in CastToEnumType()
3295 if (!type.IsEnumerationType()) in CastToEnumType()
/freebsd/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.h685 bool IsEnumerationType(lldb::opaque_compiler_type_t type,
H A DTypeSystemClang.cpp3261 bool TypeSystemClang::IsEnumerationType(lldb::opaque_compiler_type_t type, in IsEnumerationType() function in TypeSystemClang
8457 assert(enum_type.IsEnumerationType()); in AddEnumerationValueToEnumerationType()
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFASTParserClang.cpp2269 assert(clang_type.IsEnumerationType()); in CompleteEnumType()