Lines Matching refs:two
952 string one("one"), two("two"), three("three"); in template_expression() local
958 one == two; in template_expression()
959 one != two; in template_expression()
964 "one" == two; in template_expression()
965 "one" != two; in template_expression()
967 (one + two) == three; in template_expression()
968 (one + two) != three; in template_expression()
970 one == (two + three); in template_expression()
971 one != (two + three); in template_expression()
973 (one + two) == "three"; in template_expression()
974 (one + two) != "three"; in template_expression()
976 "one" == (two + three); in template_expression()
977 "one" != (two + three); in template_expression()
979 (one + two) == (two + three); in template_expression()
980 (one + two) != (two + three); in template_expression()
984 string result(one + ' ' + two + ' ' + three); in template_expression()
989 string result(one + ' ' + two + ' ' + three, 4); in template_expression()
994 string result(one + ' ' + two + ' ' + three, 4, 3); in template_expression()
1002 CPPUNIT_CHECK( ("one " + two) == "one two" ); in template_expression()
1007 CPPUNIT_CHECK( ("one" + (space + two)) == "one two" ); in template_expression()
1008 CPPUNIT_CHECK( ((one + space) + two) == "one two" ); in template_expression()
1009 CPPUNIT_CHECK( (one + (space + two)) == "one two" ); in template_expression()
1011 CPPUNIT_CHECK( ('o' + (space + two)) == "o two" ); in template_expression()
1014 CPPUNIT_CHECK( ((one + space) + (two + space)) == "one two " ); in template_expression()
1019 result = one + space + two; in template_expression()
1032 result.append(one + space + two); in template_expression()
1052 result.assign(one + space + two + space + three); in template_expression()
1055 result.assign(one + space + two + space + three, 3, 5); in template_expression()
1063 CPPUNIT_CHECK( !(one + ' ' + two).empty() ); in template_expression()
1065 char result = (one + ' ' + two)[3]; in template_expression()
1068 result = (one + ' ' + two).at(3); in template_expression()
1073 result = (one + ' ' + two).at(10); in template_expression()
1164 wstring one(L"one"), two(L"two"), three(L"three"); in template_wexpression() local
1168 wstring result(one + L' ' + two + L' ' + three); in template_wexpression()
1173 wstring result(one + L' ' + two + L' ' + three, 4); in template_wexpression()
1178 wstring result(one + L' ' + two + L' ' + three, 4, 3); in template_wexpression()
1186 CPPUNIT_CHECK( (L"one " + two) == L"one two" ); in template_wexpression()
1191 CPPUNIT_CHECK( (L"one" + (space + two)) == L"one two" ); in template_wexpression()
1192 CPPUNIT_CHECK( ((one + space) + two) == L"one two" ); in template_wexpression()
1193 CPPUNIT_CHECK( (one + (space + two)) == L"one two" ); in template_wexpression()
1195 CPPUNIT_CHECK( (L'o' + (space + two)) == L"o two" ); in template_wexpression()
1198 CPPUNIT_CHECK( ((one + space) + (two + space)) == L"one two " ); in template_wexpression()
1203 result = one + space + two; in template_wexpression()
1216 result.append(one + space + two); in template_wexpression()
1236 result.assign(one + space + two + space + three); in template_wexpression()
1239 result.assign(one + space + two + space + three, 3, 5); in template_wexpression()
1247 CPPUNIT_CHECK( !(one + L' ' + two).empty() ); in template_wexpression()
1249 wchar_t result = (one + L' ' + two)[3]; in template_wexpression()
1252 result = (one + L' ' + two).at(3); in template_wexpression()
1257 result = (one + L' ' + two).at(10); in template_wexpression()