Home
last modified time | relevance | path

Searched refs:m_type_flags (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/DataFormatters/
H A DValueObjectPrinter.cpp142 m_type_flags = m_compiler_type.GetTypeInfo(); in SetupMostSpecializedValue()
176 (!m_options.m_flat_output || m_type_flags.Test(eTypeHasValue)) in ShouldPrintValueObject()
199 m_is_ptr = m_type_flags.Test(eTypeIsPointer) ? eLazyBoolYes : eLazyBoolNo; in IsPtr()
205 m_is_ref = m_type_flags.Test(eTypeIsReference) ? eLazyBoolYes : eLazyBoolNo; in IsRef()
212 m_type_flags.Test(eTypeHasChildren) ? eLazyBoolYes : eLazyBoolNo; in IsAggregate()
/freebsd/contrib/llvm-project/lldb/include/lldb/DataFormatters/
H A DValueObjectPrinter.h151 Flags m_type_flags; variable