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

  /external/pdfium/fpdfsdk/include/javascript/
JS_Object.h 20 virtual void TimerProc(CJS_Timer* pTimer){};
23 void EndTimer(CJS_Timer* pTimer);
72 CJS_Timer * pTimer;
97 void SetAt(FX_UINT nIndex,CJS_Timer * pTimer)
104 pMap->pTimer = pTimer;
111 pMap->pTimer = pTimer;
124 return pMap->pTimer;
258 if (CJS_Timer * pTimer = m_sTimeMap.GetAt(idEvent))
    [all...]
app.h 23 void SetTimer(CJS_Timer* pTimer);
149 void TimerProc(CJS_Timer* pTimer);
  /external/pdfium/fpdfsdk/src/javascript/
JS_Object.cpp 70 CJS_Timer* pTimer = new CJS_Timer(this,pApp);
71 pTimer->SetJSTimer(nElapse);
73 return pTimer;
76 void CJS_EmbedObj::EndTimer(CJS_Timer* pTimer)
78 ASSERT(pTimer != NULL);
79 pTimer->KillJSTimer();
80 delete pTimer;
app.cpp 55 void TimerObj::SetTimer(CJS_Timer* pTimer)
57 m_pTimer = pTimer;
527 CJS_Timer* pTimer = new CJS_Timer(this, pApp);
528 m_aTimer.Add(pTimer);
530 pTimer->SetType(0);
531 pTimer->SetRuntime(pRuntime);
532 pTimer->SetJScript(script);
533 pTimer->SetTimeOut(0);
534 // pTimer->SetStartTime(GetTickCount());
535 pTimer->SetJSTimer(dwInterval);
    [all...]
  /external/pdfium/fpdfsdk/src/pdfwindow/
PWL_Wnd.cpp 50 CPWL_Timer* pTimer = NULL;
51 if (g_TimeMap.Lookup(idEvent, pTimer))
53 if (pTimer)
55 if (pTimer->m_pAttached)
56 pTimer->m_pAttached->TimerProc();

Completed in 504 milliseconds