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

  /external/pdfium/fpdfsdk/
cfx_systemhandler.h 23 wHour(0),
32 uint16_t wHour;
  /external/pdfium/core/fxcrt/
cfx_datetime.cpp 71 uint16_t wHour;
108 utLocal.wHour = st.tm_hour;
116 static_cast<uint8_t>(utLocal.wHour),
  /external/pdfium/xfa/fxfa/parser/
cxfa_localevalue.cpp 518 uint16_t wHour = 0;
528 wHour = pTime[nIndex] - '0' + wHour * 10;
599 return nIndex == nLen && wHour < 24 && wMinute < 60 && wSecond < 60 &&
  /external/pdfium/public/
fpdf_formfill.h 338 unsigned short wHour; /* hours since midnight - [0,23] */
    [all...]
  /external/pdfium/xfa/fgas/crt/
cfgas_formatstring.cpp 325 uint32_t* wHour,
327 int32_t iMinuteDiff = *wHour * 60 + *wMinute;
338 *wHour = iMinuteDiff / 60;
635 uint16_t wHour = hour;
638 if (wHour >= 12)
661 if (wHour > 12)
662 wHour -= 12;
663 wsResult += NumToString(symbol.GetLength(), wHour == 0 ? 12 : wHour);
665 wsResult += NumToString(symbol.GetLength(), wHour == 0 ? 24 : wHour)
    [all...]

Completed in 217 milliseconds