Searched refs:dot_index (Results 1 – 2 of 2) sorted by relevance
1037 int32_t dot_index = 0; in ParseNum() local1038 if (!FX_GetNumericDotIndex(wsSrcNum, wsDotSymbol, dot_index) && in ParseNum()1114 if (cc >= dot_index) { in ParseNum()1269 dot_index = cc + 1; in ParseNum()1272 cc = dot_index - 1; in ParseNum()1346 if (cc >= dot_index) { in ParseNum()1497 cc = (dot_index == len) ? len : dot_index + 1; in ParseNum()1801 int32_t dot_index = 0; in ParseNum() local1802 if (!FX_GetNumericDotIndex(wsSrcNum, wsDotSymbol, dot_index) && in ParseNum()1808 cc = dot_index - 1; in ParseNum()[all …]
3294 int32_t dot_index = wsOutput.Find('.'); in NormalizeNumStr() local3296 if (!wsOutput.IsEmpty() && dot_index >= 0 && in NormalizeNumStr()3320 int32_t dot_index = wsSrcNum.Find('.'); in FormatNumStr() local3321 if (dot_index == -1) { in FormatNumStr()3322 dot_index = len; in FormatNumStr()3324 int32_t cc = dot_index - 1; in FormatNumStr()3326 int nPos = dot_index % 3; in FormatNumStr()3328 for (int32_t i = 0; i < dot_index; i++) { in FormatNumStr()3334 if (dot_index < len) { in FormatNumStr()3338 wsOutput += wsSrcNum.Right(len - dot_index - 1); in FormatNumStr()