Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/source/Plugins/Language/CPlusPlus/
H A DLibCxxMap.cpp88 : m_entry(std::move(entry)), m_max_depth(depth), m_error(false) {} in MapIterator()
90 : m_entry(std::move(entry)), m_max_depth(depth), m_error(false) {} in MapIterator()
92 : m_entry(rhs.m_entry), m_max_depth(rhs.m_max_depth), m_error(false) {} in MapIterator()
94 : m_entry(entry), m_max_depth(depth), m_error(false) {} in MapIterator()
108 if (m_error || m_entry.null() || (steps > m_max_depth)) in advance()
131 if (steps > m_max_depth) { in next()
153 if (steps > m_max_depth) in tree_min()
168 size_t m_max_depth = 0; member in MapIterator
/llvm-project-15.0.7/lldb/include/lldb/DataFormatters/
H A DDumpValueObjectOptions.h127 uint32_t m_max_depth = UINT32_MAX; variable
/llvm-project-15.0.7/lldb/source/DataFormatters/
H A DDumpValueObjectOptions.cpp42 m_max_depth = depth; in SetMaximumDepth()
H A DValueObjectPrinter.cpp806 return m_curr_depth >= m_options.m_max_depth; in HasReachedMaximumDepth()