Home
last modified time | relevance | path

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

12

/external/icu/icu4c/source/common/
Ducase.h40 struct UCaseProps;
41 typedef struct UCaseProps UCaseProps; typedef
45 U_CAPI const UCaseProps * U_EXPORT2
49 ucase_addPropertyStarts(const UCaseProps *csp, const USetAdder *sa, UErrorCode *pErrorCode);
87 ucase_tolower(const UCaseProps *csp, UChar32 c);
90 ucase_toupper(const UCaseProps *csp, UChar32 c);
93 ucase_totitle(const UCaseProps *csp, UChar32 c);
96 ucase_fold(const UCaseProps *csp, UChar32 c, uint32_t options);
108 ucase_addCaseClosure(const UCaseProps *csp, UChar32 c, const USetAdder *sa);
123 ucase_addStringCaseClosure(const UCaseProps *csp, const UChar *s, int32_t length, const USetAdder *…
[all …]
Ducase.cpp33 struct UCaseProps { struct
49 U_CAPI const UCaseProps * U_EXPORT2
65 ucase_addPropertyStarts(const UCaseProps *csp, const USetAdder *sa, UErrorCode *pErrorCode) { in ucase_addPropertyStarts()
134 ucase_tolower(const UCaseProps *csp, UChar32 c) { in ucase_tolower()
151 ucase_toupper(const UCaseProps *csp, UChar32 c) { in ucase_toupper()
168 ucase_totitle(const UCaseProps *csp, UChar32 c) { in ucase_totitle()
199 ucase_addCaseClosure(const UCaseProps *csp, UChar32 c, const USetAdder *sa) { in ucase_addCaseClosure()
339 ucase_addStringCaseClosure(const UCaseProps *csp, const UChar *s, int32_t length, const USetAdder *… in ucase_addStringCaseClosure()
431 ucase_getType(const UCaseProps *csp, UChar32 c) { in ucase_getType()
438 ucase_getTypeOrIgnorable(const UCaseProps *csp, UChar32 c) { in ucase_getTypeOrIgnorable()
[all …]
Ducase_props_data.h858 static const UCaseProps ucase_props_singleton={
Dustr_imp.h108 const UCaseProps *csp;
Duprops.cpp129 const UCaseProps *csp=ucase_getSingleton(); in changesWhenCasefolded()
573 const UCaseProps *csp=ucase_getSingleton(); in u_getFC_NFKC_Closure()
/external/icu/android_icu4j/src/main/java/android/icu/text/
DCaseFoldTransliterator.java10 import android.icu.impl.UCaseProps;
39 private UCaseProps csp;
49 csp=UCaseProps.INSTANCE; in CaseFoldTransliterator()
91 } else if(c<=UCaseProps.MAX_STRING_LENGTH) { in handleTransliterate()
DUppercaseTransliterator.java10 import android.icu.impl.UCaseProps;
39 private UCaseProps csp;
50 csp=UCaseProps.INSTANCE; in UppercaseTransliterator()
94 } else if(c<=UCaseProps.MAX_STRING_LENGTH) { in handleTransliterate()
DLowercaseTransliterator.java10 import android.icu.impl.UCaseProps;
42 private UCaseProps csp;
54 csp=UCaseProps.INSTANCE; in LowercaseTransliterator()
98 } else if(c<=UCaseProps.MAX_STRING_LENGTH) { in handleTransliterate()
DTitlecaseTransliterator.java9 import android.icu.impl.UCaseProps;
39 private UCaseProps csp;
52 csp=UCaseProps.INSTANCE; in TitlecaseTransliterator()
135 } else if(c<=UCaseProps.MAX_STRING_LENGTH) { in handleTransliterate()
DReplaceableContextIterator.java23 import android.icu.impl.UCaseProps;
30 class ReplaceableContextIterator implements UCaseProps.ContextIterator {
DNormalizer.java14 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()
/external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
DCaseFoldTransliterator.java9 import com.ibm.icu.impl.UCaseProps;
38 private UCaseProps csp;
48 csp=UCaseProps.INSTANCE; in CaseFoldTransliterator()
90 } else if(c<=UCaseProps.MAX_STRING_LENGTH) { in handleTransliterate()
DUppercaseTransliterator.java9 import com.ibm.icu.impl.UCaseProps;
38 private UCaseProps csp;
49 csp=UCaseProps.INSTANCE; in UppercaseTransliterator()
93 } else if(c<=UCaseProps.MAX_STRING_LENGTH) { in handleTransliterate()
DLowercaseTransliterator.java9 import com.ibm.icu.impl.UCaseProps;
41 private UCaseProps csp;
53 csp=UCaseProps.INSTANCE; in LowercaseTransliterator()
97 } else if(c<=UCaseProps.MAX_STRING_LENGTH) { in handleTransliterate()
DTitlecaseTransliterator.java8 import com.ibm.icu.impl.UCaseProps;
38 private UCaseProps csp;
51 csp=UCaseProps.INSTANCE; in TitlecaseTransliterator()
134 } else if(c<=UCaseProps.MAX_STRING_LENGTH) { in handleTransliterate()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/lang/
DUCharacter.java19 import com.ibm.icu.impl.UCaseProps;
4036 return UCaseProps.INSTANCE.tolower(ch); in toLowerCase()
4085 return UCaseProps.INSTANCE.totitle(ch); in toTitleCase()
4108 return UCaseProps.INSTANCE.toupper(ch); in toUpperCase()
4733 private static class StringContextIterator implements UCaseProps.ContextIterator {
4927 c = UCaseProps.INSTANCE.toFullUpper(c, iter, result, locale, locCache); in toUpperCase()
4933 } else if(c<=UCaseProps.MAX_STRING_LENGTH) { in toUpperCase()
4976 c = UCaseProps.INSTANCE.toFullLower(c, iter, result, locale, locCache); in toLowerCase()
4982 } else if(c<=UCaseProps.MAX_STRING_LENGTH) { in toLowerCase()
5121 && UCaseProps.NONE==UCaseProps.INSTANCE.getType(c)) { in toTitleCase()
[all …]
/external/icu/android_icu4j/src/main/java/android/icu/lang/
DUCharacter.java20 import android.icu.impl.UCaseProps;
3458 return UCaseProps.INSTANCE.tolower(ch); in toLowerCase()
3505 return UCaseProps.INSTANCE.totitle(ch); in toTitleCase()
3527 return UCaseProps.INSTANCE.toupper(ch); in toUpperCase()
4131 private static class StringContextIterator implements UCaseProps.ContextIterator {
4320 c = UCaseProps.INSTANCE.toFullUpper(c, iter, result, locale, locCache); in toUpperCase()
4326 } else if(c<=UCaseProps.MAX_STRING_LENGTH) { in toUpperCase()
4367 c = UCaseProps.INSTANCE.toFullLower(c, iter, result, locale, locCache); in toLowerCase()
4373 } else if(c<=UCaseProps.MAX_STRING_LENGTH) { in toLowerCase()
4509 && UCaseProps.NONE==UCaseProps.INSTANCE.getType(c)) { in toTitleCase()
[all …]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DReplaceableContextIterator.java22 import com.ibm.icu.impl.UCaseProps;
29 class ReplaceableContextIterator implements UCaseProps.ContextIterator {
DNormalizer.java13 import com.ibm.icu.impl.UCaseProps;
1442 UCaseProps csp=UCaseProps.INSTANCE; in getFC_NFKC_Closure()
1453 if(folded1Length>UCaseProps.MAX_STRING_LENGTH) { in getFC_NFKC_Closure()
2105 UCaseProps csp; in cmpEquivFold()
2143 csp=UCaseProps.INSTANCE; in cmpEquivFold()
2299 if(length<=UCaseProps.MAX_STRING_LENGTH) { in cmpEquivFold()
2347 if(length<=UCaseProps.MAX_STRING_LENGTH) { in cmpEquivFold()
/external/icu/icu4c/source/i18n/
Dregeximp.h375 const UCaseProps *fcsp;
405 const UCaseProps *fcsp;
Dcasetrn.h85 const UCaseProps *fCsp;
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DUCharacterProperty.java214 return UCaseProps.INSTANCE.hasBinaryProperty(c, which); in contains()
365 UCaseProps csp=UCaseProps.INSTANCE;
366 UCaseProps.dummyStringBuilder.setLength(0);
367 return csp.toFullFolding(c, UCaseProps.dummyStringBuilder,
DUCaseProps.java33 public final class UCaseProps { class
38 private UCaseProps() throws IOException { in UCaseProps() method in UCaseProps
1416 public static final UCaseProps INSTANCE;
1422 INSTANCE = new UCaseProps();
/external/icu/android_icu4j/src/main/java/android/icu/impl/
DUCharacterProperty.java215 return UCaseProps.INSTANCE.hasBinaryProperty(c, which); in contains()
366 UCaseProps csp=UCaseProps.INSTANCE;
367 UCaseProps.dummyStringBuilder.setLength(0);
368 return csp.toFullFolding(c, UCaseProps.dummyStringBuilder,
DUCaseProps.java37 public final class UCaseProps { class
42 private UCaseProps() throws IOException { in UCaseProps() method in UCaseProps
1420 public static final UCaseProps INSTANCE;
1426 INSTANCE = new UCaseProps();

12