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

References

tools/lldb/include/lldb/Symbol/UnwindPlan.h
  214       void SetUnspecified() { m_type = unspecified; }
  216       bool IsUnspecified() const { return m_type == unspecified; }
  219         m_type = isRaSearch;
  224         return m_type == isRegisterPlusOffset;
  228         m_type = isRegisterPlusOffset;
  234         return m_type == isRegisterDereferenced;
  238         m_type = isRegisterDereferenced;
  242       bool IsDWARFExpression() const { return m_type == isDWARFExpression; }
  245         m_type = isDWARFExpression;
  251         if (m_type == isRegisterDereferenced || m_type == isRegisterPlusOffset)
  251         if (m_type == isRegisterDereferenced || m_type == isRegisterPlusOffset)
  256       ValueType GetValueType() const { return m_type; }
  259         switch (m_type) {
  270         if (m_type == isRegisterPlusOffset)
  275         if (m_type == isRegisterPlusOffset)
  280         if (m_type == isDWARFExpression) {
  290         if (m_type == isDWARFExpression)
  296         if (m_type == isDWARFExpression)
tools/lldb/source/Symbol/UnwindPlan.cpp
  170   if (m_type == rhs.m_type) {
  170   if (m_type == rhs.m_type) {
  171     switch (m_type) {
  194   switch (m_type) {