Lines Matching refs:strTemp
1752 char strTemp[3]; in IsIsoDateFormat() local
1753 strTemp[2] = '\0'; in IsIsoDateFormat()
1758 strTemp[0] = pData[iPosOff]; in IsIsoDateFormat()
1759 strTemp[1] = pData[iPosOff + 1]; in IsIsoDateFormat()
1760 iMonth = FXSYS_atoi(strTemp); in IsIsoDateFormat()
1776 strTemp[0] = pData[iPosOff]; in IsIsoDateFormat()
1777 strTemp[1] = pData[iPosOff + 1]; in IsIsoDateFormat()
1778 iDay = FXSYS_atoi(strTemp); in IsIsoDateFormat()
1818 char strTemp[3]; in IsIsoTimeFormat() local
1819 strTemp[2] = '\0'; in IsIsoTimeFormat()
1838 strTemp[0] = pData[iIndex]; in IsIsoTimeFormat()
1842 strTemp[1] = pData[iIndex + 1]; in IsIsoTimeFormat()
1843 if (FXSYS_atoi(strTemp) > 60) in IsIsoTimeFormat()
1848 iHour = FXSYS_atoi(strTemp); in IsIsoTimeFormat()
1851 iMinute = FXSYS_atoi(strTemp); in IsIsoTimeFormat()
1854 iSecond = FXSYS_atoi(strTemp); in IsIsoTimeFormat()
1859 iHour = FXSYS_atoi(strTemp); in IsIsoTimeFormat()
1862 iMinute = FXSYS_atoi(strTemp); in IsIsoTimeFormat()
1865 iSecond = FXSYS_atoi(strTemp); in IsIsoTimeFormat()
1912 strTemp[0] = pData[iIndex]; in IsIsoTimeFormat()
1916 strTemp[1] = pData[iIndex + 1]; in IsIsoTimeFormat()
1917 if (FXSYS_atoi(strTemp) > 60) in IsIsoTimeFormat()
1922 iZoneHour = FXSYS_atoi(strTemp); in IsIsoTimeFormat()
1924 iZoneMinute = FXSYS_atoi(strTemp); in IsIsoTimeFormat()
1929 iZoneHour = FXSYS_atoi(strTemp); in IsIsoTimeFormat()
1932 iZoneMinute = FXSYS_atoi(strTemp); in IsIsoTimeFormat()