OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:theVector
(Results
1 - 2
of
2
) sorted by null
/external/swiftshader/third_party/LLVM/unittests/ADT/
SmallVectorTest.cpp
95
VectorType
theVector
;
111
// Assert that
theVector
contains the specified values, in order.
136
assertEmpty(
theVector
);
137
EXPECT_TRUE(
theVector
.rbegin() ==
theVector
.rend());
147
theVector
.push_back(Constructable(1));
150
assertValuesInOrder(
theVector
, 1u, 1);
151
EXPECT_FALSE(
theVector
.begin() ==
theVector
.end());
152
EXPECT_FALSE(
theVector
.empty())
[
all
...]
/external/llvm/unittests/ADT/
SmallVectorTest.cpp
199
VectorT
theVector
;
215
this->assertEmpty(this->
theVector
);
216
EXPECT_TRUE(this->
theVector
.rbegin() == this->
theVector
.rend());
226
bool RequiresGrowth = this->
theVector
.capacity() < 3;
229
this->
theVector
.push_back(Constructable(1));
232
this->assertValuesInOrder(this->
theVector
, 1u, 1);
233
EXPECT_FALSE(this->
theVector
.begin() == this->
theVector
.end());
234
EXPECT_FALSE(this->
theVector
.empty())
[
all
...]
Completed in 78 milliseconds