Lines Matching refs:str3
64 string str3(literal, sizeof(literal)); in testConstructorCString() local
65 EXPECT_TRUE(strcmp(literal, str3.c_str()) == 0); in testConstructorCString()
101 const string str3("scott mills cracks me up"); in testConstructorString() local
102 string str4(str3, 12); in testConstructorString()
105 string str5(str3, 12, 6); in testConstructorString()
108 string str6(str3, 23); in testConstructorString()
111 string str7(str3, 24); in testConstructorString()
114 string str8(str3, 23, 1); in testConstructorString()
117 string str9(str3, 24, 1); in testConstructorString()
345 string str3("You spin "); in testAppend() local
346 str3.append("my head right round."); in testAppend()
347 EXPECT_TRUE(str3 == "You spin my head right round."); in testAppend()
444 string str3("You spin "); in testAppendOperator() local
445 str3 += "my head right round."; in testAppendOperator()
446 EXPECT_TRUE(str3 == "You spin my head right round."); in testAppendOperator()