Home
last modified time | relevance | path

Searched refs:titlecase (Results 1 – 22 of 22) sorted by relevance

/external/cldr/tools/java/org/unicode/cldr/test/
DCheckConsistentCasing.java108 titlecase, lowercase, other; enumConstant
132 return titlecase; in from()
159 …titlecase_mismatchWarn(CasingType.titlecase, false), titlecase_mismatchErr(CasingType.titlecase, t…
277 long countUpper = counter.getCount(CasingType.titlecase); in getSamples()
285 type = CasingType.titlecase; in getSamples()
/external/icu/icu4c/source/data/translit/
Del_Title.txt15 # Otherwise all lowercase go to upper (titlecase stay as is)
Daz_Title.txt13 # Otherwise all lowercase go to upper (titlecase stay as is)
Dtr_Title.txt13 # Otherwise all lowercase go to upper (titlecase stay as is)
Dlt_Title.txt17 # Otherwise all lowercase go to upper (titlecase stay as is)
DGrek_Latn.txt98 # titlecase, have to fix individually
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/data/unicode/
DSpecialCasing.txt63 # Note: the titlecase should never occur in practice. It is equal to titlecase(uppercase(<es-zed>))
128 # Note: characters with PROSGEGRAMMENI are actually titlecase, not uppercase!
235 # Remove DOT ABOVE after "i" with upper or titlecase
/external/icu/android_icu4j/src/main/tests/android/icu/dev/data/unicode/
DSpecialCasing.txt63 # Note: the titlecase should never occur in practice. It is equal to titlecase(uppercase(<es-zed>))
128 # Note: characters with PROSGEGRAMMENI are actually titlecase, not uppercase!
235 # Remove DOT ABOVE after "i" with upper or titlecase
/external/icu/icu4c/source/data/unidata/
DSpecialCasing.txt63 # Note: the titlecase should never occur in practice. It is equal to titlecase(uppercase(<es-zed>))
128 # Note: characters with PROSGEGRAMMENI are actually titlecase, not uppercase!
235 # Remove DOT ABOVE after "i" with upper or titlecase
/external/icu/icu4c/source/test/testdata/
Dcasing.txt42 …{ "ʻaMeLikA huI Pū ʻʻʻiA", "ʻAmelika Hui Pū ʻʻʻIa", "", "-1", "" }, // titlecase first _cased_ let…
/external/icu/android_icu4j/src/main/java/android/icu/impl/
DLocaleDisplayNamesImpl.java615 boolean titlecase = capContext == DisplayContext.CAPITALIZATION_FOR_UI_LIST_OR_MENU; in newRow()
617 titlecase ? toTitleWholeStringNoLowercase(locale, tempName) : tempName; in newRow()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DLocaleDisplayNamesImpl.java611 boolean titlecase = capContext == DisplayContext.CAPITALIZATION_FOR_UI_LIST_OR_MENU; in newRow()
613 titlecase ? toTitleWholeStringNoLowercase(locale, tempName) : tempName; in newRow()
/external/icu/icu4c/source/i18n/
Dsmpdtfmt.cpp1954 UBool titlecase = FALSE; in subFormat() local
1957 titlecase = TRUE; in subFormat()
1960 titlecase = fSymbols->fCapitalization[capContextUsageType][0]; in subFormat()
1963 titlecase = fSymbols->fCapitalization[capContextUsageType][1]; in subFormat()
1969 if (titlecase) { in subFormat()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DSimpleDateFormat.java2040 boolean titlecase = false; in subFormat()
2043 titlecase = true; in subFormat()
2049titlecase = (capitalizationContext==DisplayContext.CAPITALIZATION_FOR_UI_LIST_OR_MENU)? in subFormat()
2056 if (titlecase) { in subFormat()
/external/icu/android_icu4j/src/main/java/android/icu/text/
DSimpleDateFormat.java2030 boolean titlecase = false; in subFormat()
2033 titlecase = true; in subFormat()
2039titlecase = (capitalizationContext==DisplayContext.CAPITALIZATION_FOR_UI_LIST_OR_MENU)? in subFormat()
2046 if (titlecase) { in subFormat()
/external/python/cpython3/Doc/library/
Dstdtypes.rst2034 >>> def titlecase(s):
2040 >>> titlecase("they're bill's friends.")
2068 titlecase).
3029 Return true if the sequence is ASCII titlecase and the sequence is not
3031 definition of "titlecase".
3163 >>> def titlecase(s):
3169 >>> titlecase(b"they're bill's friends.")
4740 "Lu" (Letter, uppercase), "Ll" (Letter, lowercase), or "Lt" (Letter, titlecase).
/external/python/cpython2/Doc/library/
Dstdtypes.rst1342 >>> def titlecase(s):
1348 >>> titlecase("they're bill's friends.")
1386 character(s) is not "Lu" (Letter, uppercase), but e.g. "Lt" (Letter, titlecase).
3204 "Lu" (Letter, uppercase), "Ll" (Letter, lowercase), or "Lt" (Letter, titlecase).
/external/python/cpython3/Doc/reference/
Dlexical_analysis.rst310 * *Lt* - titlecase letters
/external/python/cpython2/Doc/c-api/
Dunicode.rst134 Return ``1`` or ``0`` depending on whether *ch* is a titlecase character.
/external/python/cpython2/Misc/NEWS.d/
D2.7a1.rst690 Fix titlecase for characters that are their own titlecase, but not their own
/external/python/cpython3/Doc/c-api/
Dunicode.rst273 Return ``1`` or ``0`` depending on whether *ch* is a titlecase character.
/external/python/cpython3/Misc/
DHISTORY14880 - Issue #4971: Fix titlecase for characters that are their own
14881 titlecase, but not their own uppercase.