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

  /hardware/ti/omap4-aah/camera/OMXCameraAdapter/
OMXExif.cpp 238 struct tm *pTime;
345 pTime = localtime (&sTv.tv_sec);
346 if ( ( 0 == status ) && ( NULL != pTime ) )
350 pTime->tm_year + 1900,
351 pTime->tm_mon + 1,
352 pTime->tm_mday,
353 pTime->tm_hour,
354 pTime->tm_min,
355 pTime->tm_sec );
516 struct tm *pTime;
    [all...]
  /hardware/ti/omap4xxx/camera/OMXCameraAdapter/
OMXExif.cpp 240 struct tm *pTime;
347 pTime = localtime (&sTv.tv_sec);
348 if ( ( 0 == status ) && ( NULL != pTime ) )
352 pTime->tm_year + 1900,
353 pTime->tm_mon + 1,
354 pTime->tm_mday,
355 pTime->tm_hour,
356 pTime->tm_min,
357 pTime->tm_sec );
518 struct tm *pTime;
    [all...]
  /external/pdfium/xfa/src/fxfa/src/parser/
xfa_localevalue.cpp 681 const FX_WCHAR* pTime = (const FX_WCHAR*)wsTime;
683 while (pTime[nIndex] != '\0' && nIndex - nStart < wCountH) {
684 if (!XFA_IsDigit(pTime[nIndex])) {
687 wHour = (pTime[nIndex] - '0') + wHour * 10;
691 if (nIndex < nLen && pTime[nIndex] != ':') {
697 while (pTime[nIndex] != '\0' && nIndex - nStart < wCountM && nIndex < nLen) {
698 if (!XFA_IsDigit(pTime[nIndex])) {
701 wMinute = (pTime[nIndex] - '0') + wMinute * 10;
705 if (nIndex < nLen && pTime[nIndex] != ':') {
711 while (pTime[nIndex] != '\0' && nIndex - nStart < wCountS && nIndex < nLen) {
    [all...]
  /external/pdfium/fpdfsdk/src/
fsdk_baseannot.cpp 392 struct tm* pTime = localtime(&t);
393 if (pTime) {
394 st.wYear = (FX_WORD)pTime->tm_year + 1900;
395 st.wMonth = (FX_WORD)pTime->tm_mon + 1;
396 st.wDay = (FX_WORD)pTime->tm_mday;
397 st.wDayOfWeek = (FX_WORD)pTime->tm_wday;
398 st.wHour = (FX_WORD)pTime->tm_hour;
399 st.wMinute = (FX_WORD)pTime->tm_min;
400 st.wSecond = (FX_WORD)pTime->tm_sec;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
wincrypt.h     [all...]

Completed in 9014 milliseconds