Home
last modified time | relevance | path

Searched refs:str07 (Results 1 – 1 of 1) sorted by relevance

/external/astl/tests/
Dtest_string.cpp201 string str07(begin, end); in testConstructorInvalidValues() local
202 EXPECT_TRUE(str07.c_str() == empty.c_str()); in testConstructorInvalidValues()
318 string str07; in testReserve() local
320 str07.reserve(10); in testReserve()
321 EXPECT_TRUE(str07.capacity() == 10); in testReserve()
323 str07.reserve(kMaxSizeT); in testReserve()
325 EXPECT_TRUE(str07.capacity() == 10); in testReserve()
935 string str07("oh my god (You think I'm in control)"); in testErase() local
937 str07.erase(0, strlen("oh my god ")); in testErase()
938 EXPECT_TRUE(str07.size() == 26); in testErase()
[all …]