Home | History | Annotate | Download | only in intltest

Lines Matching defs:ut2

855         UText *ut2 = utext_openUnicodeString(&ut, &s, &status);
857 TEST_ASSERT(ut2 == &ut);
1213 UText *ut2 = NULL;
1244 ut2 = utext_clone(ut2, ut, FALSE, FALSE, &status); // clone with readonly = false
1246 writable = utext_isWritable(ut2);
1248 ut2 = utext_clone(ut2, ut, FALSE, TRUE, &status); // clone with readonly = true
1250 writable = utext_isWritable(ut2);
1252 utext_copy(ut2, 1, 2, 0, TRUE, &status);
1268 ut2 = utext_clone(ut2, ut, TRUE, FALSE, &status); // deep clone
1270 writable = utext_isWritable(ut2);
1280 ut2 = utext_clone(ut2, ut, TRUE, FALSE, &status); // deep clone
1282 writable = utext_isWritable(ut2);
1287 utext_close(ut2);
1399 UText ut2 = UTEXT_INITIALIZER;
1405 utext_clone(&ut2, &ut1, TRUE, FALSE, &status);
1407 c = utext_next32(&ut2);
1415 c = utext_next32(&ut2);
1419 utext_close(&ut2);