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

References

unittests/ADT/SmallVectorTest.cpp
  406   std::swap(this->theVector, this->otherVector);
  409   this->assertValuesInOrder(this->otherVector, 2u, 1, 2);
  416   this->makeSequence(this->otherVector, 2, 3);
  419   this->theVector.append(this->otherVector.begin(), this->otherVector.end());
  419   this->theVector.append(this->otherVector.begin(), this->otherVector.end());
  497   this->otherVector.push_back(Constructable(2));
  498   this->otherVector.push_back(Constructable(3));
  501   this->theVector = std::move(this->otherVector);
  508   this->otherVector.clear();
  701   this->makeSequence(this->otherVector, 1, 3);
  703   EXPECT_TRUE(this->theVector == this->otherVector);
  704   EXPECT_FALSE(this->theVector != this->otherVector);
  706   this->otherVector.clear();
  707   this->makeSequence(this->otherVector, 2, 4);
  709   EXPECT_FALSE(this->theVector == this->otherVector);
  710   EXPECT_TRUE(this->theVector != this->otherVector);