OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:str02
(Results
1 - 1
of
1
) sorted by null
/external/astl/tests/
test_string.cpp
131
string
str02
(data, data + 1);
132
EXPECT_TRUE(
str02
== "a");
154
string
str02
(10, 'c');
156
EXPECT_TRUE(!
str02
.empty());
157
EXPECT_TRUE(
str02
.size() == 10);
158
EXPECT_TRUE(
str02
.capacity() == 10);
183
string
str02
(str01, 17, 1); // invalid index
184
EXPECT_TRUE(
str02
.c_str() == empty.c_str());
224
string
str02
;
local
227
EXPECT_TRUE(str01.c_str() ==
str02
.c_str())
[
all
...]
Completed in 404 milliseconds