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

References

unittests/ADT/DenseMapTest.cpp
  266   this->Map.swap(otherMap);
  269   EXPECT_EQ(1u, otherMap.size());
  270   EXPECT_EQ(this->getValue(), otherMap[this->getKey()]);
  272   this->Map.swap(otherMap);
  273   EXPECT_EQ(0u, otherMap.size());
  274   EXPECT_TRUE(otherMap.empty());
  282   this->Map.swap(otherMap);
  285   EXPECT_EQ(100u, otherMap.size());
  287     EXPECT_EQ(this->getValue(i), otherMap[this->getKey(i)]);
  289   this->Map.swap(otherMap);
  290   EXPECT_EQ(0u, otherMap.size());
  291   EXPECT_TRUE(otherMap.empty());