reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/lldb/include/lldb/Symbol/Symbol.h
  148   bool IsSynthetic() const { return m_is_synthetic; }
  150   void SetIsSynthetic(bool b) { m_is_synthetic = b; }
tools/lldb/source/Symbol/Symbol.cpp
   67       m_is_synthetic(rhs.m_is_synthetic), m_is_debug(rhs.m_is_debug),
   82     m_is_synthetic = rhs.m_is_synthetic;
   82     m_is_synthetic = rhs.m_is_synthetic;
  104   m_is_synthetic = false;
  215             m_is_synthetic ? 'S' : ' ', m_is_external ? 'X' : ' ',