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

References

tools/lldb/include/lldb/Target/MemoryRegionInfo.h
   91     return m_range == rhs.m_range && m_read == rhs.m_read &&
tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp
 1560     if (region_info.GetRange() == qXfer_region_info.GetRange()) {
tools/lldb/unittests/Utility/RangeTest.cpp
   58   EXPECT_TRUE(r == RangeT());
   64   EXPECT_TRUE(r == RangeT(4, 0));
  286   EXPECT_TRUE(r == RangeT(10, 20));
  289   EXPECT_FALSE(r == RangeT(10, 21));
  292   EXPECT_FALSE(r == RangeT(9, 20));
  295   EXPECT_FALSE(r == RangeT(9, 21));
  296   EXPECT_FALSE(r == RangeT(11, 19));
  319   EXPECT_TRUE(r == RangeT());
  321   EXPECT_FALSE(r == RangeT(3, 0));
  327   EXPECT_FALSE(r == RangeT(3, 0));
utils/unittest/googletest/include/gtest/gtest.h
 1392   if (lhs == rhs) {