Home
last modified time | relevance | path

Searched refs:ntv (Results 1 - 13 of 13) sorted by relevance

/third_party/icu/tools/unicode/c/genprops/
H A Dcorepropsbuilder.cpp144 6..15 numeric type and value (ntv)
146 Encoding of numeric type and value in the 10-bit ntv field:
147 ntv type value
154 ntv value
156 0xb0..0x1df fraction ((ntv>>4)-12) / ((ntv&0xf)+1) = -1..17 / 1..16
157 0x1e0..0x2ff large int ((ntv>>5)-14) * 10^((ntv&0x1f)+2) = (1..9)*(10^2..10^33)
160 ((ntv>>2)-0xbf) * 60^((ntv
421 int32_t value=0, den=0, exp=0, ntv=0; encodeNumericValue() local
534 int32_t ntv=UPROPS_NTV_NONE; // numeric type & value setGcAndNumeric() local
[all...]
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DUCharacterProperty.java1027 int ntv = getNumericTypeValue(getProperty(c)); in getNumericValue()
1029 if(ntv==NTV_NONE_) { in getNumericValue()
1031 } else if(ntv<NTV_DIGIT_START_) { in getNumericValue()
1033 return ntv-NTV_DECIMAL_START_; in getNumericValue()
1034 } else if(ntv<NTV_NUMERIC_START_) { in getNumericValue()
1036 return ntv-NTV_DIGIT_START_; in getNumericValue()
1037 } else if(ntv<NTV_FRACTION_START_) { in getNumericValue()
1039 return ntv-NTV_NUMERIC_START_; in getNumericValue()
1040 } else if(ntv<NTV_LARGE_START_) { in getNumericValue()
1043 } else if(ntv<NTV_BASE60_START in getNumericValue()
1265 ntvGetType(int ntv) ntvGetType() argument
[all...]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/
H A DUCharacterProperty.java1008 int ntv = getNumericTypeValue(getProperty(c)); in getNumericValue()
1010 if(ntv==NTV_NONE_) { in getNumericValue()
1012 } else if(ntv<NTV_DIGIT_START_) { in getNumericValue()
1014 return ntv-NTV_DECIMAL_START_; in getNumericValue()
1015 } else if(ntv<NTV_NUMERIC_START_) { in getNumericValue()
1017 return ntv-NTV_DIGIT_START_; in getNumericValue()
1018 } else if(ntv<NTV_FRACTION_START_) { in getNumericValue()
1020 return ntv-NTV_NUMERIC_START_; in getNumericValue()
1021 } else if(ntv<NTV_LARGE_START_) { in getNumericValue()
1024 } else if(ntv<NTV_BASE60_START in getNumericValue()
1246 ntvGetType(int ntv) ntvGetType() argument
[all...]
/third_party/icu/icu4c/source/common/
H A Duchar.cpp384 int32_t ntv; in u_getNumericValue() local
386 ntv=(int32_t)GET_NUMERIC_TYPE_VALUE(props); in u_getNumericValue()
388 if(ntv==UPROPS_NTV_NONE) { in u_getNumericValue()
390 } else if(ntv<UPROPS_NTV_DIGIT_START) { in u_getNumericValue()
392 return ntv-UPROPS_NTV_DECIMAL_START; in u_getNumericValue()
393 } else if(ntv<UPROPS_NTV_NUMERIC_START) { in u_getNumericValue()
395 return ntv-UPROPS_NTV_DIGIT_START; in u_getNumericValue()
396 } else if(ntv<UPROPS_NTV_FRACTION_START) { in u_getNumericValue()
398 return ntv-UPROPS_NTV_NUMERIC_START; in u_getNumericValue()
399 } else if(ntv<UPROPS_NTV_LARGE_STAR in u_getNumericValue()
[all...]
H A Duprops.h78 /** Fractions: ((ntv>>4)-12) / ((ntv&0xf)+1) = -1..17 / 1..16 */
82 * ((ntv>>5)-14) * 10^((ntv&0x1f)+2) = (1..9)*(10^2..10^33)
88 * ((ntv>>2)-0xbf) * 60^((ntv&3)+1) = (1..9)*(60^1..60^4)
93 * frac20 = ntv-0x324 = 0..0x17 -> 1|3|5|7 / 20|40|80|160|320|640
100 * frac32 = ntv-0x34c = 0..15 -> 1|3|5|7 / 32|64|128|256
111 #define UPROPS_NTV_GET_TYPE(ntv) \
112 ((ntv
[all...]
H A Duprops.cpp507 int32_t ntv=(int32_t)GET_NUMERIC_TYPE_VALUE(u_getMainProperties(c)); in getNumericType() local
508 return UPROPS_NTV_GET_TYPE(ntv); in getNumericType()
/third_party/node/deps/icu-small/source/common/
H A Duchar.cpp360 int32_t ntv; in u_getNumericValue() local
362 ntv=(int32_t)GET_NUMERIC_TYPE_VALUE(props); in u_getNumericValue()
364 if(ntv==UPROPS_NTV_NONE) { in u_getNumericValue()
366 } else if(ntv<UPROPS_NTV_DIGIT_START) { in u_getNumericValue()
368 return ntv-UPROPS_NTV_DECIMAL_START; in u_getNumericValue()
369 } else if(ntv<UPROPS_NTV_NUMERIC_START) { in u_getNumericValue()
371 return ntv-UPROPS_NTV_DIGIT_START; in u_getNumericValue()
372 } else if(ntv<UPROPS_NTV_FRACTION_START) { in u_getNumericValue()
374 return ntv-UPROPS_NTV_NUMERIC_START; in u_getNumericValue()
375 } else if(ntv<UPROPS_NTV_LARGE_STAR in u_getNumericValue()
[all...]
H A Duprops.h78 /** Fractions: ((ntv>>4)-12) / ((ntv&0xf)+1) = -1..17 / 1..16 */
82 * ((ntv>>5)-14) * 10^((ntv&0x1f)+2) = (1..9)*(10^2..10^33)
88 * ((ntv>>2)-0xbf) * 60^((ntv&3)+1) = (1..9)*(60^1..60^4)
93 * frac20 = ntv-0x324 = 0..0x17 -> 1|3|5|7 / 20|40|80|160|320|640
100 * frac32 = ntv-0x34c = 0..15 -> 1|3|5|7 / 32|64|128|256
111 #define UPROPS_NTV_GET_TYPE(ntv) \
112 ((ntv
[all...]
H A Duprops.cpp570 int32_t ntv=(int32_t)GET_NUMERIC_TYPE_VALUE(u_getMainProperties(c)); in getNumericType() local
571 return UPROPS_NTV_GET_TYPE(ntv); in getNumericType()
/third_party/skia/third_party/externals/icu/source/common/
H A Duchar.cpp384 int32_t ntv; in u_getNumericValue() local
386 ntv=(int32_t)GET_NUMERIC_TYPE_VALUE(props); in u_getNumericValue()
388 if(ntv==UPROPS_NTV_NONE) { in u_getNumericValue()
390 } else if(ntv<UPROPS_NTV_DIGIT_START) { in u_getNumericValue()
392 return ntv-UPROPS_NTV_DECIMAL_START; in u_getNumericValue()
393 } else if(ntv<UPROPS_NTV_NUMERIC_START) { in u_getNumericValue()
395 return ntv-UPROPS_NTV_DIGIT_START; in u_getNumericValue()
396 } else if(ntv<UPROPS_NTV_FRACTION_START) { in u_getNumericValue()
398 return ntv-UPROPS_NTV_NUMERIC_START; in u_getNumericValue()
399 } else if(ntv<UPROPS_NTV_LARGE_STAR in u_getNumericValue()
[all...]
H A Duprops.h78 /** Fractions: ((ntv>>4)-12) / ((ntv&0xf)+1) = -1..17 / 1..16 */
82 * ((ntv>>5)-14) * 10^((ntv&0x1f)+2) = (1..9)*(10^2..10^33)
88 * ((ntv>>2)-0xbf) * 60^((ntv&3)+1) = (1..9)*(60^1..60^4)
93 * frac20 = ntv-0x324 = 0..0x17 -> 1|3|5|7 / 20|40|80|160|320|640
100 * frac32 = ntv-0x34c = 0..15 -> 1|3|5|7 / 32|64|128|256
111 #define UPROPS_NTV_GET_TYPE(ntv) \
112 ((ntv
[all...]
H A Duprops.cpp474 int32_t ntv=(int32_t)GET_NUMERIC_TYPE_VALUE(u_getMainProperties(c)); in getNumericType() local
475 return UPROPS_NTV_GET_TYPE(ntv); in getNumericType()
/third_party/skia/third_party/externals/sfntly/java/lib/
H A Dicu4j-4_8_1_1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/ibm/ com/ibm/icu/ com/ibm/icu/impl/ ...

Completed in 14 milliseconds