HomeSort by relevance Sort by last modified time
    Searched refs:ntv (Results 1 - 3 of 3) sorted by null

  /external/icu4c/common/
uchar.c 391 int32_t ntv; local
393 ntv=(int32_t)GET_NUMERIC_TYPE_VALUE(props);
395 if(ntv==UPROPS_NTV_NONE) {
397 } else if(ntv<UPROPS_NTV_DIGIT_START) {
399 return ntv-UPROPS_NTV_DECIMAL_START;
400 } else if(ntv<UPROPS_NTV_NUMERIC_START) {
402 return ntv-UPROPS_NTV_DIGIT_START;
403 } else if(ntv<UPROPS_NTV_FRACTION_START) {
405 return ntv-UPROPS_NTV_NUMERIC_START;
406 } else if(ntv<UPROPS_NTV_LARGE_START)
    [all...]
uprops.h 76 /** Fractions: ((ntv>>4)-12) / ((ntv&0xf)+1) = -1..17 / 1..16 */
80 * ((ntv>>5)-14) * 10^((ntv&0x1f)+2) = (1..9)*(10^2..10^33)
86 * ((ntv>>2)-0xbf) * 60^((ntv&3)+1) = (1..9)*(60^1..60^4)
95 #define UPROPS_NTV_GET_TYPE(ntv) \
96 ((ntv==UPROPS_NTV_NONE) ? U_NT_NONE : \
97 (ntv<UPROPS_NTV_DIGIT_START) ? U_NT_DECIMAL : \
98 (ntv<UPROPS_NTV_NUMERIC_START) ? U_NT_DIGIT :
    [all...]
uprops.cpp 348 int32_t ntv=(int32_t)GET_NUMERIC_TYPE_VALUE(u_getMainProperties(c)); local
349 return UPROPS_NTV_GET_TYPE(ntv);

Completed in 258 milliseconds