OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:othervector
(Results
1 - 2
of
2
) sorted by null
/external/swiftshader/third_party/LLVM/unittests/ADT/
SmallVectorTest.cpp
96
VectorType
otherVector
;
286
std::swap(theVector,
otherVector
);
289
assertValuesInOrder(
otherVector
, 2u, 1, 2);
296
makeSequence(
otherVector
, 2, 3);
299
theVector.append(
otherVector
.begin(),
otherVector
.end());
372
makeSequence(
otherVector
, 1, 3);
374
EXPECT_TRUE(theVector ==
otherVector
);
375
EXPECT_FALSE(theVector !=
otherVector
);
377
otherVector
.clear()
[
all
...]
/external/llvm/unittests/ADT/
SmallVectorTest.cpp
200
VectorT
otherVector
;
391
std::swap(this->theVector, this->
otherVector
);
394
this->assertValuesInOrder(this->
otherVector
, 2u, 1, 2);
401
this->makeSequence(this->
otherVector
, 2, 3);
404
this->theVector.append(this->
otherVector
.begin(), this->
otherVector
.end());
436
this->
otherVector
.push_back(Constructable(2));
437
this->
otherVector
.push_back(Constructable(3));
440
this->theVector = std::move(this->
otherVector
);
447
this->
otherVector
.clear()
[
all
...]
Completed in 745 milliseconds