Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Core/
H A DValueObject.cpp1050 lldb::Format my_format = GetFormat(); in GetValueAsCString() local
1051 if (my_format == lldb::eFormatDefault) { in GetValueAsCString()
1056 my_format = eFormatUnsigned; in GetValueAsCString()
1061 my_format = reg_info->format; in GetValueAsCString()
1063 my_format = GetValue().GetCompilerType().GetFormat(); in GetValueAsCString()
1068 if (my_format != m_last_format || m_value_str.empty()) { in GetValueAsCString()
1069 m_last_format = my_format; in GetValueAsCString()
1071 format_sp = std::make_shared<TypeFormatImpl_Format>(my_format); in GetValueAsCString()