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

Declarations

tools/lldb/include/lldb/Utility/Scalar.h
  301   friend bool operator<(const Scalar &lhs, const Scalar &rhs);
  332 bool operator<(const Scalar &lhs, const Scalar &rhs);

References

tools/lldb/source/Expression/DWARFExpression.cpp
 1938             stack.back().ResolveValue(exe_ctx) < tmp.ResolveValue(exe_ctx);
tools/lldb/source/Expression/IRInterpreter.cpp
 1136         result = (L < R);
 1156         result = (L < R);
tools/lldb/source/Utility/Scalar.cpp
 2841   return !(rhs < lhs);
 2845   return rhs < lhs;
 2849   return !(lhs < rhs);
tools/lldb/unittests/Utility/ScalarTest.cpp
   54   ASSERT_TRUE(s1 < s2);
   63   ASSERT_TRUE(s1 < s2);