Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Core/
H A DValueObject.cpp291 if (m_location_str.empty()) { in GetLocationAsCStringImpl()
298 m_location_str = "invalid"; in GetLocationAsCStringImpl()
305 m_location_str = reg_info->name; in GetLocationAsCStringImpl()
307 m_location_str = reg_info->alt_name; in GetLocationAsCStringImpl()
308 if (m_location_str.empty()) in GetLocationAsCStringImpl()
309 m_location_str = (reg_info->encoding == lldb::eEncodingVector) in GetLocationAsCStringImpl()
314 if (m_location_str.empty()) in GetLocationAsCStringImpl()
315 m_location_str = "scalar"; in GetLocationAsCStringImpl()
324 m_location_str = std::string(sstr.GetString()); in GetLocationAsCStringImpl()
329 return m_location_str.c_str(); in GetLocationAsCStringImpl()
[all …]
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/
H A DValueObject.h936 std::string m_location_str; variable