Searched refs:UCaseProps (Results 1 - 25 of 35) sorted by relevance

12

/external/icu/icu4c/source/common/
H A Ducase.h40 struct UCaseProps;
41 typedef struct UCaseProps UCaseProps; typedef in typeref:struct:UCaseProps
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 *cs
[all...]
H A Ducase.cpp33 struct UCaseProps { struct
47 /* UCaseProps singleton ----------------------------------------------------- */
49 U_CAPI const UCaseProps * U_EXPORT2
65 ucase_addPropertyStarts(const UCaseProps *csp, const USetAdder *sa, UErrorCode *pErrorCode) {
134 ucase_tolower(const UCaseProps *csp, UChar32 c) {
151 ucase_toupper(const UCaseProps *csp, UChar32 c) {
168 ucase_totitle(const UCaseProps *csp, UChar32 c) {
199 ucase_addCaseClosure(const UCaseProps *csp, UChar32 c, const USetAdder *sa) {
339 ucase_addStringCaseClosure(const UCaseProps *csp, const UChar *s, int32_t length, const USetAdder *sa) {
431 ucase_getType(const UCaseProps *cs
[all...]
H A Dustr_imp.h108 const UCaseProps *csp;
H A Duniset_closure.cpp185 const UCaseProps *csp = ucase_getSingleton();
H A Duprops.cpp129 const UCaseProps *csp=ucase_getSingleton();
573 const UCaseProps *csp=ucase_getSingleton();
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DCaseFoldTransliterator.java10 import android.icu.impl.UCaseProps;
39 private UCaseProps csp;
49 csp=UCaseProps.INSTANCE;
91 } else if(c<=UCaseProps.MAX_STRING_LENGTH) {
H A DUppercaseTransliterator.java10 import android.icu.impl.UCaseProps;
39 private UCaseProps csp;
50 csp=UCaseProps.INSTANCE;
94 } else if(c<=UCaseProps.MAX_STRING_LENGTH) {
H A DLowercaseTransliterator.java10 import android.icu.impl.UCaseProps;
42 private UCaseProps csp;
54 csp=UCaseProps.INSTANCE;
98 } else if(c<=UCaseProps.MAX_STRING_LENGTH) {
H A DTitlecaseTransliterator.java9 import android.icu.impl.UCaseProps;
39 private UCaseProps csp;
52 csp=UCaseProps.INSTANCE;
75 // case type: >0 cased (UCaseProps.LOWER etc.) ==0 uncased <0 case-ignorable
135 } else if(c<=UCaseProps.MAX_STRING_LENGTH) {
H A DReplaceableContextIterator.java17 * Implementation of UCaseProps.ContextIterator, iterates over a Replaceable.
23 import android.icu.impl.UCaseProps;
26 * Implementation of UCaseProps.ContextIterator, iterates over a Replaceable.
30 class ReplaceableContextIterator implements UCaseProps.ContextIterator {
154 // implement UCaseProps.ContextIterator
H A DNormalizer.java14 import android.icu.impl.UCaseProps;
1476 UCaseProps csp=UCaseProps.INSTANCE;
1487 if(folded1Length>UCaseProps.MAX_STRING_LENGTH) {
2164 UCaseProps csp;
2202 csp=UCaseProps.INSTANCE;
2358 if(length<=UCaseProps.MAX_STRING_LENGTH) {
2406 if(length<=UCaseProps.MAX_STRING_LENGTH) {
/external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
H A DCaseFoldTransliterator.java9 import com.ibm.icu.impl.UCaseProps;
38 private UCaseProps csp;
48 csp=UCaseProps.INSTANCE;
90 } else if(c<=UCaseProps.MAX_STRING_LENGTH) {
H A DLowercaseTransliterator.java9 import com.ibm.icu.impl.UCaseProps;
41 private UCaseProps csp;
53 csp=UCaseProps.INSTANCE;
97 } else if(c<=UCaseProps.MAX_STRING_LENGTH) {
H A DTitlecaseTransliterator.java8 import com.ibm.icu.impl.UCaseProps;
38 private UCaseProps csp;
51 csp=UCaseProps.INSTANCE;
74 // case type: >0 cased (UCaseProps.LOWER etc.) ==0 uncased <0 case-ignorable
134 } else if(c<=UCaseProps.MAX_STRING_LENGTH) {
H A DUppercaseTransliterator.java9 import com.ibm.icu.impl.UCaseProps;
38 private UCaseProps csp;
49 csp=UCaseProps.INSTANCE;
93 } else if(c<=UCaseProps.MAX_STRING_LENGTH) {
/external/icu/icu4c/source/i18n/
H A Dcasetrn.h85 const UCaseProps *fCsp;
H A Dregeximp.h375 const UCaseProps *fcsp;
405 const UCaseProps *fcsp;
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DReplaceableContextIterator.java16 * Implementation of UCaseProps.ContextIterator, iterates over a Replaceable.
22 import com.ibm.icu.impl.UCaseProps;
25 * Implementation of UCaseProps.ContextIterator, iterates over a Replaceable.
29 class ReplaceableContextIterator implements UCaseProps.ContextIterator {
153 // implement UCaseProps.ContextIterator
H A DNormalizer.java13 import com.ibm.icu.impl.UCaseProps;
1442 UCaseProps csp=UCaseProps.INSTANCE;
1453 if(folded1Length>UCaseProps.MAX_STRING_LENGTH) {
2105 UCaseProps csp;
2143 csp=UCaseProps.INSTANCE;
2299 if(length<=UCaseProps.MAX_STRING_LENGTH) {
2347 if(length<=UCaseProps.MAX_STRING_LENGTH) {
/external/icu/android_icu4j/src/main/java/android/icu/lang/
H A DUCharacter.java20 import android.icu.impl.UCaseProps;
3458 return UCaseProps.INSTANCE.tolower(ch);
3505 return UCaseProps.INSTANCE.totitle(ch);
3527 return UCaseProps.INSTANCE.toupper(ch);
4128 * Implementation of UCaseProps.ContextIterator, iterates over a String.
4131 private static class StringContextIterator implements UCaseProps.ContextIterator {
4206 // implement UCaseProps.ContextIterator
4320 c = UCaseProps.INSTANCE.toFullUpper(c, iter, result, locale, locCache);
4326 } else if(c<=UCaseProps.MAX_STRING_LENGTH) {
4367 c = UCaseProps
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/lang/
H A DUCharacter.java19 import com.ibm.icu.impl.UCaseProps;
4036 return UCaseProps.INSTANCE.tolower(ch);
4085 return UCaseProps.INSTANCE.totitle(ch);
4108 return UCaseProps.INSTANCE.toupper(ch);
4730 * Implementation of UCaseProps.ContextIterator, iterates over a String.
4733 private static class StringContextIterator implements UCaseProps.ContextIterator {
4808 // implement UCaseProps.ContextIterator
4927 c = UCaseProps.INSTANCE.toFullUpper(c, iter, result, locale, locCache);
4933 } else if(c<=UCaseProps.MAX_STRING_LENGTH) {
4976 c = UCaseProps
[all...]
/external/icu/android_icu4j/src/main/java/android/icu/impl/
H A DUCharacterProperty.java215 return UCaseProps.INSTANCE.hasBinaryProperty(c, which);
366 UCaseProps csp=UCaseProps.INSTANCE;
367 UCaseProps.dummyStringBuilder.setLength(0);
368 return csp.toFullFolding(c, UCaseProps.dummyStringBuilder,
H A DUCaseProps.java9 * file name: UCaseProps.java
37 public final class UCaseProps { class
42 private UCaseProps() throws IOException { method in class:UCaseProps
1420 public static final UCaseProps INSTANCE;
1426 INSTANCE = new UCaseProps();
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DUCharacterProperty.java214 return UCaseProps.INSTANCE.hasBinaryProperty(c, which);
365 UCaseProps csp=UCaseProps.INSTANCE;
366 UCaseProps.dummyStringBuilder.setLength(0);
367 return csp.toFullFolding(c, UCaseProps.dummyStringBuilder,
H A DUCaseProps.java8 * file name: UCaseProps.java
33 public final class UCaseProps { class
38 private UCaseProps() throws IOException { method in class:UCaseProps
1416 public static final UCaseProps INSTANCE;
1422 INSTANCE = new UCaseProps();

Completed in 1593 milliseconds

12