HomeSort by relevance Sort by last modified time
    Searched full:totitle (Results 1 - 25 of 63) sorted by null

1 2 3

  /external/icu/icu4c/source/common/
unistr_titlecase_brkiter.cpp 59 UnicodeString::toTitle(BreakIterator *titleIter) {
60 return toTitle(titleIter, Locale::getDefault(), 0);
64 UnicodeString::toTitle(BreakIterator *titleIter, const Locale &locale) {
65 return toTitle(titleIter, locale, 0);
69 UnicodeString::toTitle(BreakIterator *titleIter, const Locale &locale, uint32_t options) {
uniset_closure.cpp 262 (str = *pStr).toTitle(bi, root);
  /prebuilts/go/darwin-x86/src/unicode/
letter_test.go 323 r := ToTitle(c.in)
325 t.Errorf("ToTitle(U+%04X) = U+%04X want U+%04X", c.in, r, c.out)
368 if To(TitleCase, i) != ToTitle(i) {
369 t.Errorf("ToTitle(U+%04X) disagrees with To(Title)", i)
391 if TurkishCase.ToTitle(u) != u {
392 t.Errorf("title(U+%04X) is U+%04X not U+%04X", u, TurkishCase.ToTitle(u), u)
394 if TurkishCase.ToTitle(l) != u {
395 t.Errorf("title(U+%04X) is U+%04X not U+%04X", l, TurkishCase.ToTitle(l), u)
example_test.go 162 fmt.Printf("%#U\n", unicode.ToTitle(ucG))
181 fmt.Printf("%#U\n", t.ToTitle(lci))
186 fmt.Printf("%#U\n", t.ToTitle(uci))
letter.go 272 // ToTitle maps the rune to title case.
273 func ToTitle(r rune) rune {
292 // ToTitle maps the rune to title case giving priority to the special mapping.
293 func (special SpecialCase) ToTitle(r rune) rune {
296 r1 = ToTitle(r)
  /prebuilts/go/linux-x86/src/unicode/
letter_test.go 323 r := ToTitle(c.in)
325 t.Errorf("ToTitle(U+%04X) = U+%04X want U+%04X", c.in, r, c.out)
368 if To(TitleCase, i) != ToTitle(i) {
369 t.Errorf("ToTitle(U+%04X) disagrees with To(Title)", i)
391 if TurkishCase.ToTitle(u) != u {
392 t.Errorf("title(U+%04X) is U+%04X not U+%04X", u, TurkishCase.ToTitle(u), u)
394 if TurkishCase.ToTitle(l) != u {
395 t.Errorf("title(U+%04X) is U+%04X not U+%04X", l, TurkishCase.ToTitle(l), u)
example_test.go 162 fmt.Printf("%#U\n", unicode.ToTitle(ucG))
181 fmt.Printf("%#U\n", t.ToTitle(lci))
186 fmt.Printf("%#U\n", t.ToTitle(uci))
letter.go 272 // ToTitle maps the rune to title case.
273 func ToTitle(r rune) rune {
292 // ToTitle maps the rune to title case giving priority to the special mapping.
293 func (special SpecialCase) ToTitle(r rune) rune {
296 r1 = ToTitle(r)
  /external/icu/android_icu4j/src/main/java/android/icu/text/
TitlecaseTransliterator.java 82 // Our mode; we are either converting letter toTitle or
89 // in toTitle mode.
104 // after a uncased, non-case-ignorable character toTitle. Case-ignorable
CaseMap.java 53 public static Title toTitle() { return Title.DEFAULT; }
158 * @see #toTitle()
251 return CaseMapImpl.toTitle(
  /external/icu/icu4c/source/i18n/
titletrn.cpp 88 // Our mode; we are either converting letter toTitle or
95 // in toTitle mode.
111 // after an uncased, non-case-ignorable character toTitle. Case-ignorable
  /external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
TitlecaseTransliterator.java 81 // Our mode; we are either converting letter toTitle or
88 // in toTitle mode.
103 // after a uncased, non-case-ignorable character toTitle. Case-ignorable
  /prebuilts/go/darwin-x86/src/strings/
example_test.go 186 fmt.Println(strings.ToTitle("loud noises"))
187 fmt.Println(strings.ToTitle("????"))
strings.go 452 // ToTitle returns a copy of the string s with all Unicode letters mapped to their title case.
453 func ToTitle(s string) string { return Map(unicode.ToTitle, s) }
470 return Map(func(r rune) rune { return c.ToTitle(r) }, s)
511 return unicode.ToTitle(r)
  /prebuilts/go/linux-x86/src/strings/
example_test.go 186 fmt.Println(strings.ToTitle("loud noises"))
187 fmt.Println(strings.ToTitle("????"))
strings.go 452 // ToTitle returns a copy of the string s with all Unicode letters mapped to their title case.
453 func ToTitle(s string) string { return Map(unicode.ToTitle, s) }
470 return Map(func(r rune) rune { return c.ToTitle(r) }, s)
511 return unicode.ToTitle(r)
  /external/icu/icu4c/source/samples/case/
ucase.c 49 u_fprintf(out, "totitle(%C) = %C\n", char_k, ch);
  /prebuilts/go/darwin-x86/src/bytes/
example_test.go 249 fmt.Printf("%s\n", bytes.ToTitle([]byte("loud noises")))
250 fmt.Printf("%s\n", bytes.ToTitle([]byte("????")))
bytes.go 431 // ToTitle returns a copy of the byte slice s with all Unicode letters mapped to their title case.
432 func ToTitle(s []byte) []byte { return Map(unicode.ToTitle, s) }
449 return Map(func(r rune) rune { return c.ToTitle(r) }, s)
490 return unicode.ToTitle(r)
  /prebuilts/go/linux-x86/src/bytes/
example_test.go 249 fmt.Printf("%s\n", bytes.ToTitle([]byte("loud noises")))
250 fmt.Printf("%s\n", bytes.ToTitle([]byte("????")))
bytes.go 431 // ToTitle returns a copy of the byte slice s with all Unicode letters mapped to their title case.
432 func ToTitle(s []byte) []byte { return Map(unicode.ToTitle, s) }
449 return Map(func(r rune) rune { return c.ToTitle(r) }, s)
490 return unicode.ToTitle(r)
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
CaseMap.java 55 public static Title toTitle() { return Title.DEFAULT; }
168 * @see #toTitle()
266 return CaseMapImpl.toTitle(
  /external/icu/icu4c/source/test/intltest/
strcase.cpp 373 name="toTitle";
374 result.toTitle((BreakIterator *)iter, locale, options);
391 result.toTitle((BreakIterator *)iter, locale);
393 dataerrln("error: UnicodeString.toTitle(options=0) got a wrong result for a test case from casing.res");
541 (result=input).toTitle(NULL);
543 dataerrln("UnicodeString::toTitle(NULL) failed.");
    [all...]
  /external/icu/icu4c/source/common/unicode/
ucasemap.h 158 * @see UnicodeString::toTitle
182 * @see UnicodeString::toTitle
  /libcore/luni/src/main/native/
libcore_icu_ICU.cpp 545 yesterday.toTitle(brk.get(), locale, U_TITLECASE_NO_LOWERCASE | U_TITLECASE_NO_BREAK_ADJUSTMENT);
546 today.toTitle(brk.get(), locale, U_TITLECASE_NO_LOWERCASE | U_TITLECASE_NO_BREAK_ADJUSTMENT);
547 tomorrow.toTitle(brk.get(), locale, U_TITLECASE_NO_LOWERCASE | U_TITLECASE_NO_BREAK_ADJUSTMENT);
    [all...]

Completed in 759 milliseconds

1 2 3