HomeSort by relevance Sort by last modified time
    Searched defs:pTime (Results 1 - 2 of 2) sorted by null

  /external/pdfium/fpdfsdk/
cpdfsdk_datetime.cpp 294 struct tm* pTime = localtime(&t);
296 if (!pTime)
299 st.wYear = static_cast<uint16_t>(pTime->tm_year) + 1900;
300 st.wMonth = static_cast<uint16_t>(pTime->tm_mon) + 1;
301 st.wDay = static_cast<uint16_t>(pTime->tm_mday);
302 st.wDayOfWeek = static_cast<uint16_t>(pTime->tm_wday);
303 st.wHour = static_cast<uint16_t>(pTime->tm_hour);
304 st.wMinute = static_cast<uint16_t>(pTime->tm_min);
305 st.wSecond = static_cast<uint16_t>(pTime->tm_sec);
  /external/pdfium/xfa/fxfa/parser/
cxfa_localevalue.cpp 522 const wchar_t* pTime = wsTime.c_str();
525 while (nIndex - nStart < wCountH && pTime[nIndex]) {
526 if (!FXSYS_isDecimalDigit(pTime[nIndex]))
528 wHour = pTime[nIndex] - '0' + wHour * 10;
532 if (nIndex < nLen && pTime[nIndex] != ':')
538 while (nIndex - nStart < wCountM && nIndex < nLen && pTime[nIndex]) {
539 if (!FXSYS_isDecimalDigit(pTime[nIndex]))
541 wMinute = pTime[nIndex] - '0' + wMinute * 10;
545 if (nIndex < nLen && pTime[nIndex] != ':')
550 while (nIndex - nStart < wCountS && nIndex < nLen && pTime[nIndex])
    [all...]

Completed in 531 milliseconds