Home | History | Annotate | Download | only in parser

Lines Matching refs:pDate

608   const FX_WCHAR* pDate = wsDate.c_str();
610 while (pDate[nIndex] != '\0' && nIndex < wCountY) {
611 if (!FXSYS_isDecimalDigit(pDate[nIndex])) {
614 wYear = (pDate[nIndex] - '0') + wYear * 10;
618 if (pDate[nIndex] != 0x2D) {
624 while (pDate[nIndex] != '\0' && nIndex - nStart < wCountM && nIndex < nLen) {
625 if (!FXSYS_isDecimalDigit(pDate[nIndex])) {
628 wMonth = (pDate[nIndex] - '0') + wMonth * 10;
632 if (pDate[nIndex] != 0x2D) {
638 while (pDate[nIndex] != '\0' && nIndex - nStart < wCountD && nIndex < nLen) {
639 if (!FXSYS_isDecimalDigit(pDate[nIndex])) {
642 wDay = (pDate[nIndex] - '0') + wDay * 10;