Home | History | Annotate | Download | only in ustring

Lines Matching defs:printUnicodeString

43      * Convert to the "platform encoding". See notes in printUnicodeString().
76 printUnicodeString(const char *announce, const UnicodeString &s) {
381 printUnicodeString("input string: ", s);
384 printUnicodeString("full-lowercased/en: ", (t=s).toLower(en));
386 printUnicodeString("full-lowercased/tr: ", (t=s).toLower(tr));
388 printUnicodeString("full-uppercased/en: ", (t=s).toUpper(en));
390 printUnicodeString("full-uppercased/tr: ", (t=s).toUpper(tr));
392 printUnicodeString("full-titlecased/en: ", (t=s).toTitle(NULL, en));
394 printUnicodeString("full-titlecased/tr: ", (t=s).toTitle(NULL, tr));
396 printUnicodeString("full-case-folded/default: ", (t=s).foldCase(U_FOLD_CASE_DEFAULT));
398 printUnicodeString("full-case-folded/Turkic: ", (t=s).foldCase(U_FOLD_CASE_EXCLUDE_SPECIAL_I));
447 printUnicodeString("readonly-alias string: ", three);
451 printUnicodeString("readonly-aliasing string after modification: ", three);
462 printUnicodeString("fastCopyFrom(readonly alias of \"writeable\" array): ", two);
472 printUnicodeString("writeable-alias string: ", four);
561 printUnicodeString("german UnicodeString from unescaping:\n ", german);
573 printUnicodeString("", UnicodeString(buffer));
585 // printUnicodeString() could use this, too, by changing to an extract() overload