Home | History | Annotate | Download | only in intltest

Lines Matching refs:insert

78     test1.insert(24, "good ");
81 errln("insert() failed: expected \"" + expectedValue + "\"\n,got \"" + test1 + "\"");
83 c->insert(24, "good ");
85 errln("clone()->insert() failed: expected \"" + expectedValue + "\"\n,got \"" + *c + "\"");
136 test3.insert(0, (UChar32)0x20100).length() != 4 ||
140 errln((UnicodeString)"simple UChar32 overloads for replace, insert, setTo or = failed");
1112 test1.insert(3, UNICODE_STRING("dudum ", 6), 0, INT32_MAX);
1114 errln("UnicodeString::insert(start, const UniStr &, start, length) failed");
1118 test1.insert(9, ucs, -1);
1120 errln("UnicodeString::insert(start, const UChar *, length) failed");
1147 test->insert(8, "only ");
1172 test->insert(24, "good ");
1174 errln("insert() on stack-allocated UnicodeString didn't work right");
1176 errln("insert() on stack-allocated UnicodeString overwrote guard word!");
1179 errln("insert() on stack-allocated UnicodeString didn't affect backing store");
1563 if(test2.insert(1, NULL, 1).length()!=2) {
1564 errln("UniStr.insert(...NULL...) should not modify the string but does");