/external/icu/icu4c/source/common/ |
D | ucase.h | 40 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 …]
|
D | ucase.cpp | 33 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 …]
|
D | ucase_props_data.h | 858 static const UCaseProps ucase_props_singleton={
|
D | ustr_imp.h | 108 const UCaseProps *csp;
|
D | uprops.cpp | 129 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/ |
D | CaseFoldTransliterator.java | 10 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()
|
D | UppercaseTransliterator.java | 10 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()
|
D | LowercaseTransliterator.java | 10 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()
|
D | TitlecaseTransliterator.java | 9 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()
|
D | ReplaceableContextIterator.java | 23 import android.icu.impl.UCaseProps; 30 class ReplaceableContextIterator implements UCaseProps.ContextIterator {
|
D | Normalizer.java | 14 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/ |
D | CaseFoldTransliterator.java | 9 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()
|
D | UppercaseTransliterator.java | 9 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()
|
D | LowercaseTransliterator.java | 9 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()
|
D | TitlecaseTransliterator.java | 8 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/ |
D | UCharacter.java | 19 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/ |
D | UCharacter.java | 20 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/ |
D | ReplaceableContextIterator.java | 22 import com.ibm.icu.impl.UCaseProps; 29 class ReplaceableContextIterator implements UCaseProps.ContextIterator {
|
D | Normalizer.java | 13 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/ |
D | regeximp.h | 375 const UCaseProps *fcsp; 405 const UCaseProps *fcsp;
|
D | casetrn.h | 85 const UCaseProps *fCsp;
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
D | UCharacterProperty.java | 214 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,
|
D | UCaseProps.java | 33 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/ |
D | UCharacterProperty.java | 215 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,
|
D | UCaseProps.java | 37 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();
|