Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lldb/source/DataFormatters/
H A DValueObjectPrinter.cpp146 m_type_flags = m_compiler_type.GetTypeInfo(); in GetMostSpecializedValue()
169 (!m_options.m_flat_output || m_type_flags.Test(eTypeHasValue)) in ShouldPrintValueObject()
190 m_is_ptr = m_type_flags.Test(eTypeIsPointer) ? eLazyBoolYes : eLazyBoolNo; in IsPtr()
196 m_is_ref = m_type_flags.Test(eTypeIsReference) ? eLazyBoolYes : eLazyBoolNo; in IsRef()
203 m_type_flags.Test(eTypeHasChildren) ? eLazyBoolYes : eLazyBoolNo; in IsAggregate()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/DataFormatters/
H A DValueObjectPrinter.h133 Flags m_type_flags; variable