Lines Matching refs:strTemp
1673 FX_CHAR strTemp[3]; in IsIsoDateFormat() local
1674 strTemp[2] = '\0'; in IsIsoDateFormat()
1680 strTemp[0] = pData[iPosOff]; in IsIsoDateFormat()
1681 strTemp[1] = pData[iPosOff + 1]; in IsIsoDateFormat()
1682 iMonth = FXSYS_atoi(strTemp); in IsIsoDateFormat()
1699 strTemp[0] = pData[iPosOff]; in IsIsoDateFormat()
1700 strTemp[1] = pData[iPosOff + 1]; in IsIsoDateFormat()
1701 iDay = FXSYS_atoi(strTemp); in IsIsoDateFormat()
1741 FX_CHAR strTemp[3]; in IsIsoTimeFormat() local
1742 strTemp[2] = '\0'; in IsIsoTimeFormat()
1764 strTemp[0] = pData[iIndex]; in IsIsoTimeFormat()
1768 strTemp[1] = pData[iIndex + 1]; in IsIsoTimeFormat()
1769 if (FXSYS_atoi(strTemp) > 60) in IsIsoTimeFormat()
1774 iHour = FXSYS_atoi(strTemp); in IsIsoTimeFormat()
1777 iMinute = FXSYS_atoi(strTemp); in IsIsoTimeFormat()
1780 iSecond = FXSYS_atoi(strTemp); in IsIsoTimeFormat()
1785 iHour = FXSYS_atoi(strTemp); in IsIsoTimeFormat()
1788 iMinute = FXSYS_atoi(strTemp); in IsIsoTimeFormat()
1791 iSecond = FXSYS_atoi(strTemp); in IsIsoTimeFormat()
1837 strTemp[0] = pData[iIndex]; in IsIsoTimeFormat()
1841 strTemp[1] = pData[iIndex + 1]; in IsIsoTimeFormat()
1842 if (FXSYS_atoi(strTemp) > 60) in IsIsoTimeFormat()
1847 iZoneHour = FXSYS_atoi(strTemp); in IsIsoTimeFormat()
1849 iZoneMinute = FXSYS_atoi(strTemp); in IsIsoTimeFormat()
1854 iZoneHour = FXSYS_atoi(strTemp); in IsIsoTimeFormat()
1857 iZoneMinute = FXSYS_atoi(strTemp); in IsIsoTimeFormat()