Lines Matching refs:spNumFormat
1175 pdfium::span<const wchar_t> spNumFormat = wsNumFormat.span(); in ParseNum() local
1198 while (ccf < spNumFormat.size() && cc < spSrcNum.size()) { in ParseNum()
1199 switch (spNumFormat[ccf]) { in ParseNum()
1201 WideString wsLiteral = GetLiteralTextReverse(spNumFormat, &ccf); in ParseNum()
1223 if (spNumFormat[ccf] == 'z' || spSrcNum[cc] != ' ') { in ParseNum()
1236 (spNumFormat[ccf] == 'S' && spSrcNum[cc] == ' ')) { in ParseNum()
1295 if (ccf - 1 < spNumFormat.size() && in ParseNum()
1296 ((spNumFormat[ccf] == 'R' && spNumFormat[ccf - 1] == 'C') || in ParseNum()
1297 (spNumFormat[ccf] == 'r' && spNumFormat[ccf - 1] == 'c'))) { in ParseNum()
1298 if (spNumFormat[ccf] == 'R' && spSrcNum[cc] == ' ') { in ParseNum()
1312 if (ccf - 1 < spNumFormat.size() && in ParseNum()
1313 ((spNumFormat[ccf] == 'B' && spNumFormat[ccf - 1] == 'D') || in ParseNum()
1314 (spNumFormat[ccf] == 'b' && spNumFormat[ccf - 1] == 'd'))) { in ParseNum()
1315 if (spNumFormat[ccf] == 'B' && spSrcNum[cc] == ' ') { in ParseNum()
1361 if (spSrcNum[cc] == spNumFormat[ccf]) in ParseNum()
1370 if (spNumFormat[ccf] != spSrcNum[cc]) in ParseNum()
1391 cc < spSrcNum.size() && ccf < spNumFormat.size(); ++ccf) { in ParseNum()
1392 switch (spNumFormat[ccf]) { in ParseNum()
1394 WideString wsLiteral = GetLiteralText(spNumFormat, &ccf); in ParseNum()
1413 if (spNumFormat[ccf] == 'z' || spSrcNum[cc] != ' ') { in ParseNum()
1425 (spNumFormat[ccf] == 'S' && spSrcNum[cc] == ' ')) { in ParseNum()
1478 if (ccf + 1 < spNumFormat.size() && in ParseNum()
1479 ((spNumFormat[ccf] == 'C' && spNumFormat[ccf + 1] == 'R') || in ParseNum()
1480 (spNumFormat[ccf] == 'c' && spNumFormat[ccf + 1] == 'r'))) { in ParseNum()
1481 if (spNumFormat[ccf] == 'C' && spSrcNum[cc] == ' ') { in ParseNum()
1493 if (ccf + 1 < spNumFormat.size() && in ParseNum()
1494 ((spNumFormat[ccf] == 'D' && spNumFormat[ccf + 1] == 'B') || in ParseNum()
1495 (spNumFormat[ccf] == 'd' && spNumFormat[ccf + 1] == 'b'))) { in ParseNum()
1496 if (spNumFormat[ccf] == 'D' && spSrcNum[cc] == ' ') { in ParseNum()
1521 while (ccf + 1 < spNumFormat.size() && spNumFormat[ccf + 1] == '8') in ParseNum()
1539 if (spSrcNum[cc] == spNumFormat[ccf]) in ParseNum()
1547 if (spNumFormat[ccf] != spSrcNum[cc]) in ParseNum()
1871 pdfium::span<const wchar_t> spNumFormat = wsNumFormat.span(); in FormatNum() local
1887 switch (spNumFormat[ccf]) { in FormatNum()
1889 GetLiteralText(spNumFormat, &ccf); in FormatNum()
1954 for (size_t ccf = dot_index_f - 1; ccf < spNumFormat.size(); --ccf) { in FormatNum()
1955 switch (spNumFormat[ccf]) { in FormatNum()
2006 if (ccf - 1 < spNumFormat.size() && spNumFormat[ccf - 1] == 'c') { in FormatNum()
2016 if (ccf - 1 < spNumFormat.size() && spNumFormat[ccf - 1] == 'C') { in FormatNum()
2025 if (ccf - 1 < spNumFormat.size() && spNumFormat[ccf - 1] == 'd') { in FormatNum()
2035 if (ccf - 1 < spNumFormat.size() && spNumFormat[ccf - 1] == 'D') { in FormatNum()
2058 *wsOutput = GetLiteralTextReverse(spNumFormat, &ccf) + *wsOutput; in FormatNum()
2061 wsOutput->InsertAtFront(spNumFormat[ccf]); in FormatNum()
2089 if (spNumFormat[dot_index_f] == 'V') { in FormatNum()
2091 } else if (spNumFormat[dot_index_f] == '.') { in FormatNum()
2094 } else if (dot_index_f + 1 < spNumFormat.size() && in FormatNum()
2095 (spNumFormat[dot_index_f + 1] == '9' || in FormatNum()
2096 spNumFormat[dot_index_f + 1] == 'Z')) { in FormatNum()
2102 for (size_t ccf = dot_index_f + 1; ccf < spNumFormat.size(); ++ccf) { in FormatNum()
2103 switch (spNumFormat[ccf]) { in FormatNum()
2105 *wsOutput += GetLiteralText(spNumFormat, &ccf); in FormatNum()
2143 if (ccf + 1 < spNumFormat.size() && spNumFormat[ccf + 1] == 'r') { in FormatNum()
2151 if (ccf + 1 < spNumFormat.size() && spNumFormat[ccf + 1] == 'R') { in FormatNum()
2158 if (ccf + 1 < spNumFormat.size() && spNumFormat[ccf + 1] == 'b') { in FormatNum()
2166 if (ccf + 1 < spNumFormat.size() && spNumFormat[ccf + 1] == 'B') { in FormatNum()
2176 while (ccf + 1 < spNumFormat.size() && spNumFormat[ccf + 1] == '8') in FormatNum()