Searched refs:u_charDigitValue (Results 1 – 25 of 25) sorted by relevance
43 …printf(" is digit: %d decimal digit value: %d\n", u_isdigit(codePoint), u_charDigitValue(codePoi… in printProps()
442 if ( u_charDigitValue(sym) == 0 ) {
375 u_charDigitValue(UChar32 c) { in u_charDigitValue() function448 value=(int8_t)u_charDigitValue(ch); in u_digit()
463 uint32_t v = u_charDigitValue(fC.fChar); in doParseActions()
2156 u_charDigitValue(UChar32 c);
127 #define u_charDigitValue u_charDigitValue_3_2 macro
2505 u_charDigitValue(UChar32 c);
224 #define u_charDigitValue U_ICU_ENTRY_POINT_RENAME(u_charDigitValue) macro
1006 int32_t digitValue = u_charDigitValue(fC.fChar); in doParseActions()1021 int32_t digitValue = u_charDigitValue(fC.fChar); in doParseActions()1258 int32_t digit = u_charDigitValue(c); in doParseActions()
1916 digit = u_charDigitValue(ch); in subparse()1921 if ( (digit < 0 || digit > 9) && u_charDigitValue(zero) != 0) { in subparse()1993 digit = u_charDigitValue(ch); in subparse()
1483 groupNum=groupNum*10 + u_charDigitValue(digitC); in appendReplacement()
3002 digVal = u_charDigitValue(cp); // if we have arrived here, we have in ucol_prv_getSpecialCE()3081 … if ((digVal = u_charDigitValue(char32)) == -1 || digIndx > UCOL_MAX_DIGITS_FOR_NUMBER){ in ucol_prv_getSpecialCE()3740 digVal = u_charDigitValue(char32); in ucol_prv_getSpecialPrevCE()3821 …if ((digVal = u_charDigitValue(char32)) == -1 || (ceLimit > 0 && (digIndx + trailingZeroCount) >= … in ucol_prv_getSpecialPrevCE()
431 groupNum=groupNum*10 + u_charDigitValue(digitC); in appendReplacement()
306 && u_charDigitValue(localeStr[0]) != 0) in TestKeyInRootRecursive()
582 if (u_charDigitValue(sampleDigits[i]) != sampleDigitValues[i]) { in TestMisc()584 sampleDigits[i], u_charDigitValue(sampleDigits[i]), sampleDigitValues[i]); in TestMisc()
1783 tagValue = tagValue*10 + u_charDigitValue(c); in TestExtended()
3097 int32_t d=u_charDigitValue(index.charAt(i)); in set()
282 to UChar, including using u_isdigit and u_charDigitValue instead of QChar::isNumber
16227 … (QChar::digitValue): Changed to call u_charDigitValue when not '0'-'9'. We should probably phase