Searched refs:IsEnumerationType (Results 1 – 6 of 6) sorted by relevance
192 bool CompilerType::IsEnumerationType(bool &is_signed) const { in IsEnumerationType() function in CompilerType195 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 CompilerType339 return IsEnumerationType(is_signed); in IsEnumerationType()343 return IsEnumerationType() && !IsScopedEnumerationType(); in IsUnscopedEnumerationType()
167 bool IsEnumerationType(bool &is_signed) const;204 bool IsEnumerationType() const;
188 virtual bool IsEnumerationType(lldb::opaque_compiler_type_t type, in IsEnumerationType() function
1128 !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()
685 bool IsEnumerationType(lldb::opaque_compiler_type_t type,
3218 bool TypeSystemClang::IsEnumerationType(lldb::opaque_compiler_type_t type, in IsEnumerationType() function in TypeSystemClang