HomeSort by relevance Sort by last modified time
    Searched defs:GetValueType (Results 1 - 10 of 10) sorted by null

  /external/lldb/include/lldb/Core/
ValueObjectRegister.h 38 GetValueType () const
85 GetValueType () const
143 GetValueType () const
  /external/lldb/source/Core/
ValueObjectCast.cpp 84 ValueObjectCast::GetValueType() const
87 return m_parent->GetValueType();
110 SetValueDidChange (m_value.GetValueType() != old_value.GetValueType() || m_value.GetScalar() != old_value.GetScalar());
ValueObjectChild.cpp 58 ValueObjectChild::GetValueType() const
60 return m_parent->GetValueType();
126 Value::ValueType value_type = parent->GetValue().GetValueType();
ValueObjectConstResult.cpp 246 ValueObjectConstResult::GetValueType() const
ValueObjectMemory.cpp 168 ValueObjectMemory::GetValueType() const
192 Value::ValueType value_type = m_value.GetValueType();
233 SetValueDidChange (value_type != old_value.GetValueType() || m_value.GetScalar() != old_value.GetScalar());
ValueObjectSyntheticFilter.cpp 138 ValueObjectSynthetic::GetValueType() const
140 return m_parent->GetValueType();
ValueObjectDynamicValue.cpp 110 ValueObjectDynamicValue::GetValueType() const
112 return m_parent->GetValueType();
277 SetValueDidChange (m_value.GetValueType() != old_value.GetValueType() || m_value.GetScalar() != old_value.GetScalar());
ValueObjectVariable.cpp 108 ValueObjectVariable::GetValueType() const
160 Value::ValueType value_type = m_value.GetValueType();
229 SetValueDidChange (value_type != old_value.GetValueType() || m_value.GetScalar() != old_value.GetScalar());
Value.cpp 121 Value::GetValueType() const
  /external/lldb/source/API/
SBValue.cpp 419 SBValue::GetValueType ()
425 result = value_sp->GetValueType();
432 case eValueTypeInvalid: log->Printf ("SBValue(%p)::GetValueType () => eValueTypeInvalid", value_sp.get()); break;
433 case eValueTypeVariableGlobal: log->Printf ("SBValue(%p)::GetValueType () => eValueTypeVariableGlobal", value_sp.get()); break;
434 case eValueTypeVariableStatic: log->Printf ("SBValue(%p)::GetValueType () => eValueTypeVariableStatic", value_sp.get()); break;
435 case eValueTypeVariableArgument:log->Printf ("SBValue(%p)::GetValueType () => eValueTypeVariableArgument", value_sp.get()); break;
436 case eValueTypeVariableLocal: log->Printf ("SBValue(%p)::GetValueType () => eValueTypeVariableLocal", value_sp.get()); break;
437 case eValueTypeRegister: log->Printf ("SBValue(%p)::GetValueType () => eValueTypeRegister", value_sp.get()); break;
438 case eValueTypeRegisterSet: log->Printf ("SBValue(%p)::GetValueType () => eValueTypeRegisterSet", value_sp.get()); break;
439 case eValueTypeConstResult: log->Printf ("SBValue(%p)::GetValueType () => eValueTypeConstResult", value_sp.get()); break
    [all...]

Completed in 284 milliseconds