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

References

include/llvm/ADT/BitVector.h
  555     return !(*this == RHS);
include/llvm/ADT/PackedVector.h
  132     return Bits == RHS.Bits;
include/llvm/ADT/SmallBitVector.h
  492       return *getPointer() == *RHS.getPointer();
unittests/ADT/BitVectorTest.cpp
   59   EXPECT_FALSE(Inv == Vec);
   62   EXPECT_TRUE(Inv == Vec);
   89   EXPECT_TRUE(Copy == Alt);
  684     EXPECT_FALSE(Big == Small);
  685     EXPECT_FALSE(Small == Big);
  687     EXPECT_TRUE(Big == Small);
  688     EXPECT_TRUE(Small == Big);
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) {