Lines Matching refs:iIndex

408   int32_t iIndex = 0;
411 while (iIndex < iLength) {
412 patternChar = pData[iIndex];
418 iIndex++;
420 while (iIndex < iLength) {
421 timePatternChar = pData[iIndex];
428 iIndex++;
452 iIndex++;
1833 int32_t iIndex = 0;
1834 while (iIndex < iZone) {
1835 if (!std::isdigit(pData[iIndex]))
1838 strTemp[0] = pData[iIndex];
1839 if (!std::isdigit(pData[iIndex + 1]))
1842 strTemp[1] = pData[iIndex + 1];
1856 iIndex += 3;
1868 iIndex += 2;
1872 if (iIndex < iLength && pData[iIndex] == '.') {
1874 if (iIndex + kSubSecondLength >= iLength)
1877 ++iIndex;
1880 char c = pData[iIndex + i];
1892 iIndex += kSubSecondLength;
1895 if (iIndex < iLength && FXSYS_tolower(pData[iIndex]) == 'z')
1899 if (iIndex < iLength) {
1900 if (pData[iIndex] == '+') {
1901 ++iIndex;
1902 } else if (pData[iIndex] == '-') {
1904 ++iIndex;
1908 while (iIndex < iLength) {
1909 if (!std::isdigit(pData[iIndex]))
1912 strTemp[0] = pData[iIndex];
1913 if (!std::isdigit(pData[iIndex + 1]))
1916 strTemp[1] = pData[iIndex + 1];
1926 iIndex += 3;
1935 iIndex += 2;
1938 if (iIndex < iLength)
1966 int32_t iIndex = 0;
1967 while (pData[iIndex] != 'T' && pData[iIndex] != 't') {
1968 if (iIndex >= iLength)
1970 ++iIndex;
1972 if (iIndex != 8 && iIndex != 10)
1976 if (!IsIsoDateFormat(pData, iIndex, iStyle, iYear, iMonth, iDay))
1978 if (pData[iIndex] != 'T' && pData[iIndex] != 't')
1981 ++iIndex;
1982 if (((iLength - iIndex > 13) && (iLength - iIndex < 6)) &&
1983 (iLength - iIndex != 15)) {
1986 return IsIsoTimeFormat(pData + iIndex, iLength - iIndex, iHour, iMinute,
2436 int32_t iIndex = 0;
2442 double nNum = data[iIndex++];
2655 int32_t iIndex = (int32_t)ValueToFloat(pThis, argOne.get());
2656 if (iIndex < 1) {
2676 if (iValueIndex >= iIndex) {
2682 (iLength - 1) - (iValueIndex - iIndex), jsObjectValue.get());
2695 if (iValueIndex == iIndex) {
3423 int32_t iIndex = 0;
3424 while (iIndex < 5) {
3425 if (memcmp(strString, strName[iIndex], wcslen(strName[iIndex])) == 0) {
3428 ++iIndex;
3430 switch (iIndex) {
3520 int32_t iIndex = ch / 16;
3521 strEncode[1] = strCode[iIndex];
3522 strEncode[2] = strCode[ch - iIndex * 16];
3535 int32_t iIndex = ch / 16;
3536 strEncode[1] = strCode[iIndex];
3537 strEncode[2] = strCode[ch - iIndex * 16];
3559 int32_t iIndex = ch / 16;
3560 strEncode[1] = strCode[iIndex];
3561 strEncode[2] = strCode[ch - iIndex * 16];
3578 int32_t iIndex = 0;
3582 iIndex = iLen - 2;
3586 iIndex = iLen - 3;
3589 while (iIndex > 0) {
3590 strEncode[1] = strTmp[iIndex];
3591 strEncode[2] = strTmp[iIndex - 1];
3592 iIndex -= 2;
3627 int32_t iIndex = ch / 16;
3628 strEncode[3] = strCode[iIndex];
3629 strEncode[4] = strCode[ch - iIndex * 16];
3692 int32_t iIndex = ch / 16;
3693 strEncode[3] = strCode[iIndex];
3694 strEncode[4] = strCode[ch - iIndex * 16];
4527 int32_t iIndex = 0;
4529 if (pData[iIndex] != '0') {
4530 strBuf << pCapUnits[pData[iIndex] - '0'];
4533 if (pData[iIndex + 1] == '0') {
4534 strBuf << pCapUnits[pData[iIndex + 2] - '0'];
4536 if (pData[iIndex + 1] > '1') {
4537 strBuf << pLastTens[pData[iIndex + 1] - '2'];
4539 strBuf << pUnits[pData[iIndex + 2] - '0'];
4540 } else if (pData[iIndex + 1] == '1') {
4541 strBuf << pTens[pData[iIndex + 2] - '0'];
4542 } else if (pData[iIndex + 1] == '0') {
4543 strBuf << pCapUnits[pData[iIndex + 2] - '0'];
4546 iIndex += 3;
4548 if (pData[iIndex] == '0') {
4549 strBuf << pCapUnits[pData[iIndex + 1] - '0'];
4551 if (pData[iIndex] > '1') {
4552 strBuf << pLastTens[pData[iIndex] - '2'];
4554 strBuf << pUnits[pData[iIndex + 1] - '0'];
4555 } else if (pData[iIndex] == '1') {
4556 strBuf << pTens[pData[iIndex + 1] - '0'];
4557 } else if (pData[iIndex] == '0') {
4558 strBuf << pCapUnits[pData[iIndex + 1] - '0'];
4561 iIndex += 2;
4563 strBuf << pCapUnits[pData[iIndex] - '0'];
4564 iIndex += 1;
4570 while (iIndex < iLength) {
4571 if (pData[iIndex] != '0') {
4572 strBuf << pCapUnits[pData[iIndex] - '0'];
4575 if (pData[iIndex + 1] == '0') {
4576 strBuf << pCapUnits[pData[iIndex + 2] - '0'];
4578 if (pData[iIndex + 1] > '1') {
4579 strBuf << pLastTens[pData[iIndex + 1] - '2'];
4581 strBuf << pUnits[pData[iIndex + 2] - '0'];
4582 } else if (pData[iIndex + 1] == '1') {
4583 strBuf << pTens[pData[iIndex + 2] - '0'];
4584 } else if (pData[iIndex + 1] == '0') {
4585 strBuf << pCapUnits[pData[iIndex + 2] - '0'];
4588 if (iIndex < iLength - 3) {
4592 iIndex += 3;
4608 int32_t iIndex = 0;
4609 while (iIndex < iLength) {
4610 if (pData[iIndex] == '.')
4612 ++iIndex;
4614 int32_t iInteger = iIndex;
4615 iIndex = 0;
4616 while (iIndex < iInteger) {
4617 int32_t iCount = (iInteger - iIndex) % 12;
4618 if (!iCount && iInteger - iIndex > 0)
4621 strBuf << TrillionUS(ByteStringView(pData + iIndex, iCount));
4622 iIndex += iCount;
4623 if (iIndex < iInteger)
4632 iIndex = iInteger + 1;
4633 while (iIndex < iLength) {
4634 int32_t iCount = (iLength - iIndex) % 12;
4635 if (!iCount && iLength - iIndex > 0)
4638 strBuf << TrillionUS(ByteStringView(pData + iIndex, iCount));
4639 iIndex += iCount;
4640 if (iIndex < iLength)
5287 int32_t iIndex = 2;
5290 values[iIndex]->Assign(resolveValues[i][j].get());
5291 iIndex++;
5405 int32_t iIndex = 2;
5408 values[iIndex]->Assign(resolveValues[i][j].get());
5409 iIndex++;