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

Declarations

tools/lldb/include/lldb/Utility/Scalar.h
  299   friend bool operator==(const Scalar &lhs, const Scalar &rhs);
  330 bool operator==(const Scalar &lhs, const Scalar &rhs);

References

tools/lldb/source/Expression/DWARFExpression.cpp
 1854             stack.back().ResolveValue(exe_ctx) == tmp.ResolveValue(exe_ctx);
tools/lldb/source/Expression/IRInterpreter.cpp
 1118         result = (L == R);
tools/lldb/source/Utility/RegisterValue.cpp
  780       return m_scalar == rhs.m_scalar;
tools/lldb/source/Utility/Scalar.cpp
 2802   return !(lhs == rhs);
tools/lldb/unittests/Utility/ScalarTest.cpp
   30   return (Scalar(c1) == Scalar(c2));
   47   ASSERT_TRUE(void1 == void2);
   48   ASSERT_FALSE(void1 == Scalar(f1));
utils/unittest/googlemock/include/gmock/gmock-matchers.h
  206   bool operator()(const A& a, const B& b) const { return a == b; }
utils/unittest/googletest/include/gtest/gtest.h
 1392   if (lhs == rhs) {