Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Symbol/
H A DCompilerType.cpp192 bool CompilerType::IsEnumerationType(bool &is_signed) const { in IsEnumerationType() function in CompilerType
195 return type_system_sp->IsEnumerationType(m_type, is_signed); in IsEnumerationType()
200 return IsIntegerType(is_signed) || IsEnumerationType(is_signed); in IsIntegerOrEnumerationType()
337 bool CompilerType::IsEnumerationType() const { in IsEnumerationType() function in CompilerType
339 return IsEnumerationType(is_signed); in IsEnumerationType()
343 return IsEnumerationType() && !IsScopedEnumerationType(); in IsUnscopedEnumerationType()
/freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DCompilerType.h167 bool IsEnumerationType(bool &is_signed) const;
204 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/Core/
H A DValueObject.cpp1128 !GetCompilerType().IsEnumerationType() && in GetValueAsAPSInt()
3167 bool is_enum = GetCompilerType().IsEnumerationType(); in CastToBasicType()
3317 bool is_enum = GetCompilerType().IsEnumerationType(); in CastToEnumType()
3326 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.cpp3218 bool TypeSystemClang::IsEnumerationType(lldb::opaque_compiler_type_t type, in IsEnumerationType() function in TypeSystemClang