Home | History | Annotate | Download | only in string_op+

Lines Matching refs:test3

60 test3(S&& lhs, S&& rhs, const S& x)
124 test3(S(""), S(""), S(""));
125 test3(S(""), S("12345"), S("12345"));
126 test3(S(""), S("1234567890"), S("1234567890"));
127 test3(S(""), S("12345678901234567890"), S("12345678901234567890"));
128 test3(S("abcde"), S(""), S("abcde"));
129 test3(S("abcde"), S("12345"), S("abcde12345"));
130 test3(S("abcde"), S("1234567890"), S("abcde1234567890"));
131 test3(S("abcde"), S("12345678901234567890"), S("abcde12345678901234567890"));
132 test3(S("abcdefghij"), S(""), S("abcdefghij"));
133 test3(S("abcdefghij"), S("12345"), S("abcdefghij12345"));
134 test3(S("abcdefghij"), S("1234567890"), S("abcdefghij1234567890"));
135 test3(S("abcdefghij"), S("12345678901234567890"), S("abcdefghij12345678901234567890"));
136 test3(S("abcdefghijklmnopqrst"), S(""), S("abcdefghijklmnopqrst"));
137 test3(S("abcdefghijklmnopqrst"), S("12345"), S("abcdefghijklmnopqrst12345"));
138 test3(S("abcdefghijklmnopqrst"), S("1234567890"), S("abcdefghijklmnopqrst1234567890"));
139 test3(S("abcdefghijklmnopqrst"), S("12345678901234567890"), S("abcdefghijklmnopqrst12345678901234567890"));