Searched defs:propEnum (Results 1 - 4 of 4) sorted by relevance

/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/
H A DUnicodePropertySource.java153 protected int propEnum = Integer.MIN_VALUE; field in class:UnicodePropertySource.ICU
163 propEnum = EXTRA_START + extraPosition;
165 propEnum = UCharacter.getPropertyEnum(propertyAlias);
171 if (propEnum < UProperty.INT_LIMIT) {
172 int enumValue = UCharacter.getIntPropertyValue(codePoint, propEnum);
173 return UCharacter.getPropertyValueName(propEnum,enumValue, (int)m_nameChoice);
174 } else if (propEnum < UProperty.DOUBLE_LIMIT) {
177 } else switch(propEnum) {
229 if (propEnum < UProperty.INT_LIMIT) {
230 int start = UCharacter.getIntPropertyMinValue(propEnum);
265 fixedGetPropertyValueName(int propEnum, int valueEnum, int nameChoice) argument
[all...]
/external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/util/
H A DICUPropertyFactory.java40 protected int propEnum = Integer.MIN_VALUE; field in class:ICUPropertyFactory.ICUProperty
42 protected ICUProperty(String propName, int propEnum) { argument
44 this.propEnum = propEnum;
45 setType(internalGetPropertyType(propEnum));
46 if (propEnum == UProperty.DEFAULT_IGNORABLE_CODE_POINT || propEnum == UProperty.BIDI_CLASS || propEnum == UProperty.GENERAL_CATEGORY) {
56 switch (propEnum) {
115 if (propEnum < UPropert
194 fixedGetPropertyValueEnum(int propEnum, String valueAlias) argument
207 fixedGetPropertyValueName(int propEnum, int valueEnum, int nameChoice) argument
[all...]
/external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/util/
H A DTestUtilities.java75 int enumValue = UCharacter.getIntPropertyValue(cp, propEnum);
77 String value = UCharacter.getPropertyValueName(propEnum,enumValue, UProperty.NameChoice.LONG);
383 int propEnum = UProperty.GENERAL_CATEGORY; field in class:TestUtilities
398 int enumValue = UCharacter.getIntPropertyValue(cp, propEnum);
400 String value = UCharacter.getPropertyValueName(propEnum,enumValue, UProperty.NameChoice.LONG);
426 int enumValue = UCharacter.getIntPropertyValue(cp, propEnum);
428 UCharacter.getPropertyValueName(propEnum,enumValue, UProperty.NameChoice.LONG);
/external/icu/icu4c/source/test/cintltst/
H A Dcucdtst.c2943 UProperty propEnum = (UProperty)p; local
2951 const char* name = u_getPropertyName(propEnum, (UPropertyNameChoice)choice);
2970 const char* pname = u_getPropertyName(propEnum, U_LONG_PROPERTY_NAME);
2986 const char* vname = u_getPropertyValueName(propEnum, v, (UPropertyNameChoice)choice);
2993 rev = u_getPropertyValueEnum(propEnum, vname);
3034 UProperty propEnum = (UProperty)p; local
3035 min = u_getIntPropertyMinValue(propEnum);
3042 name = u_getPropertyName(propEnum, U_LONG_PROPERTY_NAME);

Completed in 118 milliseconds