Home
last modified time | relevance | path

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

/src/contrib/llvm-project/lldb/source/Symbol/
H A DSymbol.cpp31 m_is_debug(false), m_is_external(false), m_size_is_sibling(false), in Symbol()
43 m_is_synthetic(is_artificial), m_is_debug(is_debug), in Symbol()
57 m_is_synthetic(is_artificial), m_is_debug(is_debug), in Symbol()
69 m_is_synthetic(rhs.m_is_synthetic), m_is_debug(rhs.m_is_debug), in Symbol()
85 m_is_debug = rhs.m_is_debug; in operator =()
152 m_is_debug = false; in Clear()
268 s->Printf("[%5u] %6u %c%c%c %-15s ", index, GetID(), m_is_debug ? 'D' : ' ', in Dump()
657 m_is_debug = (1u << 13 & bitfields) != 0; in Decode()
708 if (m_is_debug) in Encode()
746 if (m_is_debug != rhs.m_is_debug) in operator ==()
/src/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DSymbol.h192 bool IsDebug() const { return m_is_debug; } in IsDebug()
194 void SetDebug(bool b) { m_is_debug = b; } in SetDebug()
324 m_is_debug : 1, // non-zero if this symbol is debug information in a variable