Home | History | Annotate | Download | only in ustring

Lines Matching refs:printUnicodeString

41      * Convert to the "platform encoding". See notes in printUnicodeString().
74 printUnicodeString(const char *announce, const UnicodeString &s) {
379 printUnicodeString("input string: ", s);
382 printUnicodeString("full-lowercased/en: ", (t=s).toLower(en));
384 printUnicodeString("full-lowercased/tr: ", (t=s).toLower(tr));
386 printUnicodeString("full-uppercased/en: ", (t=s).toUpper(en));
388 printUnicodeString("full-uppercased/tr: ", (t=s).toUpper(tr));
390 printUnicodeString("full-titlecased/en: ", (t=s).toTitle(NULL, en));
392 printUnicodeString("full-titlecased/tr: ", (t=s).toTitle(NULL, tr));
394 printUnicodeString("full-case-folded/default: ", (t=s).foldCase(U_FOLD_CASE_DEFAULT));
396 printUnicodeString("full-case-folded/Turkic: ", (t=s).foldCase(U_FOLD_CASE_EXCLUDE_SPECIAL_I));
445 printUnicodeString("readonly-alias string: ", three);
449 printUnicodeString("readonly-aliasing string after modification: ", three);
460 printUnicodeString("fastCopyFrom(readonly alias of \"writeable\" array): ", two);
470 printUnicodeString("writeable-alias string: ", four);
559 printUnicodeString("german UnicodeString from unescaping:\n ", german);
571 printUnicodeString("", UnicodeString(buffer));
583 // printUnicodeString() could use this, too, by changing to an extract() overload