Home
last modified time | relevance | path

Searched refs:UCaseProps (Results 1 – 25 of 29) sorted by relevance

12

/external/icu/android_icu4j/src/main/java/android/icu/impl/
DCaseMapImpl.java26 public static final class StringContextIterator implements UCaseProps.ContextIterator {
222 UCaseProps.INSTANCE.getType(c) != UCaseProps.NONE); in isLNS()
384 } else if (result <= UCaseProps.MAX_STRING_LENGTH) { in appendResult()
428 private static final Trie2_16 CASE_TRIE = UCaseProps.getTrie();
438 if (caseLocale == UCaseProps.LOC_ROOT || in internalToLower()
440 … !(caseLocale == UCaseProps.LOC_TURKISH || caseLocale == UCaseProps.LOC_LITHUANIAN) : in internalToLower()
441 … (options & UCaseProps.FOLD_CASE_OPTIONS_MASK) == UCharacter.FOLD_CASE_DEFAULT)) { in internalToLower()
442 latinToLower = UCaseProps.LatinCase.TO_LOWER_NORMAL; in internalToLower()
444 latinToLower = UCaseProps.LatinCase.TO_LOWER_TR_LT; in internalToLower()
458 if (lead < UCaseProps.LatinCase.LONG_S) { in internalToLower()
[all …]
DCharacterPropertiesImpl.java50 UCaseProps.INSTANCE.addPropertyStarts(incl); in getInclusionsForSource()
65 UCaseProps.INSTANCE.addPropertyStarts(incl); in getInclusionsForSource()
DUCharacterProperty.java1084 return UCaseProps.INSTANCE.hasBinaryProperty(c, which); in contains()
1247 UCaseProps csp=UCaseProps.INSTANCE;
1248 UCaseProps.dummyStringBuilder.setLength(0);
1249 return csp.toFullFolding(c, UCaseProps.dummyStringBuilder,
DUCaseProps.java40 public final class UCaseProps { class
45 private UCaseProps() throws IOException { in UCaseProps() method in UCaseProps
1662 public static final UCaseProps INSTANCE;
1668 INSTANCE = new UCaseProps();
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DCaseMapImpl.java21 public static final class StringContextIterator implements UCaseProps.ContextIterator {
217 UCaseProps.INSTANCE.getType(c) != UCaseProps.NONE); in isLNS()
379 } else if (result <= UCaseProps.MAX_STRING_LENGTH) { in appendResult()
423 private static final Trie2_16 CASE_TRIE = UCaseProps.getTrie();
433 if (caseLocale == UCaseProps.LOC_ROOT || in internalToLower()
435 … !(caseLocale == UCaseProps.LOC_TURKISH || caseLocale == UCaseProps.LOC_LITHUANIAN) : in internalToLower()
436 … (options & UCaseProps.FOLD_CASE_OPTIONS_MASK) == UCharacter.FOLD_CASE_DEFAULT)) { in internalToLower()
437 latinToLower = UCaseProps.LatinCase.TO_LOWER_NORMAL; in internalToLower()
439 latinToLower = UCaseProps.LatinCase.TO_LOWER_TR_LT; in internalToLower()
453 if (lead < UCaseProps.LatinCase.LONG_S) { in internalToLower()
[all …]
DCharacterPropertiesImpl.java48 UCaseProps.INSTANCE.addPropertyStarts(incl); in getInclusionsForSource()
63 UCaseProps.INSTANCE.addPropertyStarts(incl); in getInclusionsForSource()
DUCharacterProperty.java1083 return UCaseProps.INSTANCE.hasBinaryProperty(c, which); in contains()
1246 UCaseProps csp=UCaseProps.INSTANCE;
1247 UCaseProps.dummyStringBuilder.setLength(0);
1248 return csp.toFullFolding(c, UCaseProps.dummyStringBuilder,
DUCaseProps.java36 public final class UCaseProps { class
41 private UCaseProps() throws IOException { in UCaseProps() method in UCaseProps
1657 public static final UCaseProps INSTANCE;
1663 INSTANCE = new UCaseProps();
/external/icu/android_icu4j/src/main/java/android/icu/text/
DLowercaseTransliterator.java12 import android.icu.impl.UCaseProps;
45 private final UCaseProps csp;
57 csp=UCaseProps.INSTANCE; in LowercaseTransliterator()
60 caseLocale = UCaseProps.getCaseLocale(locale); in LowercaseTransliterator()
101 } else if(c<=UCaseProps.MAX_STRING_LENGTH) { in handleTransliterate()
DUppercaseTransliterator.java12 import android.icu.impl.UCaseProps;
42 private final UCaseProps csp;
53 csp=UCaseProps.INSTANCE; in UppercaseTransliterator()
56 caseLocale = UCaseProps.getCaseLocale(locale); in UppercaseTransliterator()
97 } else if(c<=UCaseProps.MAX_STRING_LENGTH) { in handleTransliterate()
DTitlecaseTransliterator.java11 import android.icu.impl.UCaseProps;
43 private final UCaseProps csp;
56 csp=UCaseProps.INSTANCE; in TitlecaseTransliterator()
59 caseLocale = UCaseProps.getCaseLocale(locale); in TitlecaseTransliterator()
139 } else if(c<=UCaseProps.MAX_STRING_LENGTH) { in handleTransliterate()
DCaseFoldTransliterator.java12 import android.icu.impl.UCaseProps;
42 private final UCaseProps csp;
52 csp=UCaseProps.INSTANCE; in CaseFoldTransliterator()
95 } else if(c<=UCaseProps.MAX_STRING_LENGTH) { in handleTransliterate()
DReplaceableContextIterator.java25 import android.icu.impl.UCaseProps;
32 class ReplaceableContextIterator implements UCaseProps.ContextIterator {
DNormalizer.java16 import android.icu.impl.UCaseProps;
1476 UCaseProps csp=UCaseProps.INSTANCE; in getFC_NFKC_Closure()
1487 if(folded1Length>UCaseProps.MAX_STRING_LENGTH) { in getFC_NFKC_Closure()
2164 UCaseProps csp; in cmpEquivFold()
2202 csp=UCaseProps.INSTANCE; in cmpEquivFold()
2358 if(length<=UCaseProps.MAX_STRING_LENGTH) { in cmpEquivFold()
2406 if(length<=UCaseProps.MAX_STRING_LENGTH) { in cmpEquivFold()
DCaseMap.java9 import android.icu.impl.UCaseProps;
34 return UCaseProps.getCaseLocale(locale); in getCaseLocale()
/external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
DLowercaseTransliterator.java11 import com.ibm.icu.impl.UCaseProps;
44 private final UCaseProps csp;
56 csp=UCaseProps.INSTANCE; in LowercaseTransliterator()
59 caseLocale = UCaseProps.getCaseLocale(locale); in LowercaseTransliterator()
100 } else if(c<=UCaseProps.MAX_STRING_LENGTH) { in handleTransliterate()
DUppercaseTransliterator.java11 import com.ibm.icu.impl.UCaseProps;
41 private final UCaseProps csp;
52 csp=UCaseProps.INSTANCE; in UppercaseTransliterator()
55 caseLocale = UCaseProps.getCaseLocale(locale); in UppercaseTransliterator()
96 } else if(c<=UCaseProps.MAX_STRING_LENGTH) { in handleTransliterate()
DTitlecaseTransliterator.java10 import com.ibm.icu.impl.UCaseProps;
42 private final UCaseProps csp;
55 csp=UCaseProps.INSTANCE; in TitlecaseTransliterator()
58 caseLocale = UCaseProps.getCaseLocale(locale); in TitlecaseTransliterator()
138 } else if(c<=UCaseProps.MAX_STRING_LENGTH) { in handleTransliterate()
DCaseFoldTransliterator.java11 import com.ibm.icu.impl.UCaseProps;
41 private final UCaseProps csp;
51 csp=UCaseProps.INSTANCE; in CaseFoldTransliterator()
94 } else if(c<=UCaseProps.MAX_STRING_LENGTH) { in handleTransliterate()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DReplaceableContextIterator.java24 import com.ibm.icu.impl.UCaseProps;
31 class ReplaceableContextIterator implements UCaseProps.ContextIterator {
DNormalizer.java15 import com.ibm.icu.impl.UCaseProps;
1450 UCaseProps csp=UCaseProps.INSTANCE; in getFC_NFKC_Closure()
1461 if(folded1Length>UCaseProps.MAX_STRING_LENGTH) { in getFC_NFKC_Closure()
2113 UCaseProps csp; in cmpEquivFold()
2151 csp=UCaseProps.INSTANCE; in cmpEquivFold()
2307 if(length<=UCaseProps.MAX_STRING_LENGTH) { in cmpEquivFold()
2355 if(length<=UCaseProps.MAX_STRING_LENGTH) { in cmpEquivFold()
DCaseMap.java8 import com.ibm.icu.impl.UCaseProps;
34 return UCaseProps.getCaseLocale(locale); in getCaseLocale()
/external/icu/icu4c/source/common/
Ducase_props_data.h909 static const UCaseProps ucase_props_singleton={
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/lang/
DUCharacter.java22 import com.ibm.icu.impl.UCaseProps;
4440 return UCaseProps.INSTANCE.tolower(ch); in toLowerCase()
4489 return UCaseProps.INSTANCE.totitle(ch); in toTitleCase()
4512 return UCaseProps.INSTANCE.toupper(ch); in toUpperCase()
5181 return UCaseProps.getCaseLocale(Locale.getDefault()); in getDefaultCaseLocale()
5188 return UCaseProps.getCaseLocale(locale); in getCaseLocale()
5195 return UCaseProps.getCaseLocale(locale); in getCaseLocale()
5457 return UCaseProps.INSTANCE.fold(ch, options); in foldCase()
/external/icu/android_icu4j/src/main/java/android/icu/lang/
DUCharacter.java23 import android.icu.impl.UCaseProps;
3863 return UCaseProps.INSTANCE.tolower(ch); in toLowerCase()
3910 return UCaseProps.INSTANCE.totitle(ch); in toTitleCase()
3932 return UCaseProps.INSTANCE.toupper(ch); in toUpperCase()
4577 return UCaseProps.getCaseLocale(Locale.getDefault()); in getDefaultCaseLocale()
4584 return UCaseProps.getCaseLocale(locale); in getCaseLocale()
4591 return UCaseProps.getCaseLocale(locale); in getCaseLocale()
4839 return UCaseProps.INSTANCE.fold(ch, options); in foldCase()

12