/external/icu/icu4c/source/common/ |
D | ucase.h | 42 struct UCaseProps; 43 typedef struct UCaseProps UCaseProps; typedef 47 U_CAPI const UCaseProps * U_EXPORT2 51 ucase_addPropertyStarts(const UCaseProps *csp, const USetAdder *sa, UErrorCode *pErrorCode); 90 ucase_tolower(const UCaseProps *csp, UChar32 c); 93 ucase_toupper(const UCaseProps *csp, UChar32 c); 96 ucase_totitle(const UCaseProps *csp, UChar32 c); 99 ucase_fold(const UCaseProps *csp, UChar32 c, uint32_t options); 111 ucase_addCaseClosure(const UCaseProps *csp, UChar32 c, const USetAdder *sa); 126 ucase_addStringCaseClosure(const UCaseProps *csp, const UChar *s, int32_t length, const USetAdder *… [all …]
|
D | ucase.cpp | 35 struct UCaseProps { struct 51 U_CAPI const UCaseProps * U_EXPORT2 67 ucase_addPropertyStarts(const UCaseProps *csp, const USetAdder *sa, UErrorCode *pErrorCode) { in ucase_addPropertyStarts() 136 ucase_tolower(const UCaseProps *csp, UChar32 c) { in ucase_tolower() 153 ucase_toupper(const UCaseProps *csp, UChar32 c) { in ucase_toupper() 170 ucase_totitle(const UCaseProps *csp, UChar32 c) { in ucase_totitle() 201 ucase_addCaseClosure(const UCaseProps *csp, UChar32 c, const USetAdder *sa) { in ucase_addCaseClosure() 341 ucase_addStringCaseClosure(const UCaseProps *csp, const UChar *s, int32_t length, const USetAdder *… in ucase_addStringCaseClosure() 433 ucase_getType(const UCaseProps *csp, UChar32 c) { in ucase_getType() 440 ucase_getTypeOrIgnorable(const UCaseProps *csp, UChar32 c) { in ucase_getTypeOrIgnorable() [all …]
|
D | ucase_props_data.h | 893 static const UCaseProps ucase_props_singleton={
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
D | CaseMapImpl.java | 17 public static final class StringContextIterator implements UCaseProps.ContextIterator { 169 } else if (result <= UCaseProps.MAX_STRING_LENGTH) { in appendResult() 200 c = UCaseProps.INSTANCE.toFullLower(c, iter, dest, caseLocale); in internalToLower() 225 if (caseLocale == UCaseProps.LOC_GREEK) { in toUpper() 231 c = UCaseProps.INSTANCE.toFullUpper(c, iter, dest, caseLocale); in toUpper() 287 && UCaseProps.NONE==UCaseProps.INSTANCE.getType(c)) { in toTitle() 290 && UCaseProps.NONE==UCaseProps.INSTANCE.getType(c)) {} in toTitle() 300 c = UCaseProps.INSTANCE.toFullTitle(c, iter, dest, caseLocale); in toTitle() 304 if (titleStart+1 < index && caseLocale == UCaseProps.LOC_DUTCH) { in toTitle() 361 c = UCaseProps.INSTANCE.toFullFolding(c, dest, options); in fold() [all …]
|
D | UCharacterProperty.java | 217 return UCaseProps.INSTANCE.hasBinaryProperty(c, which); in contains() 380 UCaseProps csp=UCaseProps.INSTANCE; 381 UCaseProps.dummyStringBuilder.setLength(0); 382 return csp.toFullFolding(c, UCaseProps.dummyStringBuilder,
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
D | CaseMapImpl.java | 21 public static final class StringContextIterator implements UCaseProps.ContextIterator { 173 } else if (result <= UCaseProps.MAX_STRING_LENGTH) { in appendResult() 204 c = UCaseProps.INSTANCE.toFullLower(c, iter, dest, caseLocale); in internalToLower() 229 if (caseLocale == UCaseProps.LOC_GREEK) { in toUpper() 235 c = UCaseProps.INSTANCE.toFullUpper(c, iter, dest, caseLocale); in toUpper() 291 && UCaseProps.NONE==UCaseProps.INSTANCE.getType(c)) { in toTitle() 294 && UCaseProps.NONE==UCaseProps.INSTANCE.getType(c)) {} in toTitle() 304 c = UCaseProps.INSTANCE.toFullTitle(c, iter, dest, caseLocale); in toTitle() 308 if (titleStart+1 < index && caseLocale == UCaseProps.LOC_DUTCH) { in toTitle() 365 c = UCaseProps.INSTANCE.toFullFolding(c, dest, options); in fold() [all …]
|
D | UCharacterProperty.java | 218 return UCaseProps.INSTANCE.hasBinaryProperty(c, which); in contains() 381 UCaseProps csp=UCaseProps.INSTANCE; 382 UCaseProps.dummyStringBuilder.setLength(0); 383 return csp.toFullFolding(c, UCaseProps.dummyStringBuilder,
|
/external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/ |
D | LowercaseTransliterator.java | 11 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()
|
D | UppercaseTransliterator.java | 11 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()
|
D | TitlecaseTransliterator.java | 10 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()
|
D | CaseFoldTransliterator.java | 11 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/android_icu4j/src/main/java/android/icu/text/ |
D | UppercaseTransliterator.java | 12 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()
|
D | LowercaseTransliterator.java | 12 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()
|
D | TitlecaseTransliterator.java | 11 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()
|
D | CaseFoldTransliterator.java | 12 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()
|
D | ReplaceableContextIterator.java | 25 import android.icu.impl.UCaseProps; 32 class ReplaceableContextIterator implements UCaseProps.ContextIterator {
|
D | CaseMap.java | 9 import android.icu.impl.UCaseProps; 36 return UCaseProps.getCaseLocale(locale); in getCaseLocale()
|
D | Normalizer.java | 16 import android.icu.impl.UCaseProps; 1475 UCaseProps csp=UCaseProps.INSTANCE; in getFC_NFKC_Closure() 1486 if(folded1Length>UCaseProps.MAX_STRING_LENGTH) { in getFC_NFKC_Closure() 2163 UCaseProps csp; in cmpEquivFold() 2201 csp=UCaseProps.INSTANCE; in cmpEquivFold() 2357 if(length<=UCaseProps.MAX_STRING_LENGTH) { in cmpEquivFold() 2405 if(length<=UCaseProps.MAX_STRING_LENGTH) { in cmpEquivFold()
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | ReplaceableContextIterator.java | 24 import com.ibm.icu.impl.UCaseProps; 31 class ReplaceableContextIterator implements UCaseProps.ContextIterator {
|
D | CaseMap.java | 8 import com.ibm.icu.impl.UCaseProps; 35 return UCaseProps.getCaseLocale(locale); in getCaseLocale()
|
D | Normalizer.java | 15 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()
|
/external/icu/icu4c/source/i18n/ |
D | regeximp.h | 377 const UCaseProps *fcsp; 407 const UCaseProps *fcsp;
|
D | casetrn.h | 87 const UCaseProps *fCsp;
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/lang/ |
D | UCharacter.java | 22 import com.ibm.icu.impl.UCaseProps; 4176 return UCaseProps.INSTANCE.tolower(ch); in toLowerCase() 4225 return UCaseProps.INSTANCE.totitle(ch); in toTitleCase() 4248 return UCaseProps.INSTANCE.toupper(ch); in toUpperCase() 4917 return UCaseProps.getCaseLocale(Locale.getDefault()); in getDefaultCaseLocale() 4924 return UCaseProps.getCaseLocale(locale); in getCaseLocale() 4931 return UCaseProps.getCaseLocale(locale); in getCaseLocale() 5173 if (UCaseProps.INSTANCE.getType(c) == UCaseProps.NONE) { in toTitleFirst() 5338 return UCaseProps.INSTANCE.fold(ch, options); in foldCase()
|
/external/icu/android_icu4j/src/main/java/android/icu/lang/ |
D | UCharacter.java | 23 import android.icu.impl.UCaseProps; 3602 return UCaseProps.INSTANCE.tolower(ch); in toLowerCase() 3649 return UCaseProps.INSTANCE.totitle(ch); in toTitleCase() 3671 return UCaseProps.INSTANCE.toupper(ch); in toUpperCase() 4316 return UCaseProps.getCaseLocale(Locale.getDefault()); in getDefaultCaseLocale() 4323 return UCaseProps.getCaseLocale(locale); in getCaseLocale() 4330 return UCaseProps.getCaseLocale(locale); in getCaseLocale() 4566 if (UCaseProps.INSTANCE.getType(c) == UCaseProps.NONE) { in toTitleFirst() 4724 return UCaseProps.INSTANCE.fold(ch, options); in foldCase()
|