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

Declarations

tools/lldb/include/lldb/Utility/Scalar.h
  175   Scalar &operator=(const Scalar &rhs); // Assignment operator

References

tools/lldb/include/lldb/Core/Value.h
  188       m_value = m_vector.GetAsScalar();
tools/lldb/source/Core/Value.cpp
   76     m_value = rhs.m_value;
  604           m_value = scalar;
tools/lldb/source/Core/ValueObject.cpp
  429     scalar = tmp_value.ResolveValue(&exe_ctx);
tools/lldb/source/Core/ValueObjectChild.cpp
  120       m_value.GetScalar() = parent->GetValue().GetScalar();
  214             m_value.GetScalar() = scalar;
tools/lldb/source/Expression/DWARFExpression.cpp
 1526         stack.back().ResolveValue(exe_ctx) =
 1574         stack.back().ResolveValue(exe_ctx) =
 1593         stack.back().ResolveValue(exe_ctx) =
 1611         stack.back().ResolveValue(exe_ctx) =
 1666         stack.back().ResolveValue(exe_ctx) =
 1783         stack.back().ResolveValue(exe_ctx) =
tools/lldb/source/Expression/IRInterpreter.cpp
  748         result = L + R;
  751         result = L * R;
  754         result = L - R;
  759         result = L / R;
  764         result = L / R;
  769         result = L % R;
  774         result = L % R;
  777         result = L << R;
  780         result = L >> R;
  783         result = L;
  787         result = L & R;
  790         result = L | R;
  793         result = L ^ R;
 1637         returnVal = value.GetScalar();
tools/lldb/source/Target/StackFrame.cpp
 1102         m_frame_base = expr_value.ResolveValue(&exe_ctx);
 1110     frame_base = m_frame_base;
tools/lldb/source/Utility/RegisterValue.cpp
  181     scalar = m_scalar;
  493     m_scalar = rhs.m_scalar;
tools/lldb/source/Utility/Scalar.cpp
   52     temp_value = rhs; // Copy right hand side into the temp value
   58     temp_value = lhs; // Copy left hand side value into the temp value
tools/lldb/unittests/Expression/DWARFExpressionTest.cpp
  171     scalar = Scalar((int)value);
  174     scalar = Scalar((long)value);
  177     scalar = Scalar((long long)value);
  180     scalar = Scalar((unsigned int)value);
  183     scalar = Scalar((unsigned long)value);
  186     scalar = Scalar((unsigned long long)value);