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

  /external/pdfium/fpdfsdk/src/javascript/
JS_Object.cpp 77 CJS_Timer* pTimer = new CJS_Timer(this,pApp);
78 pTimer->SetJSTimer(nElapse);
80 return pTimer;
83 void CJS_EmbedObj::EndTimer(CJS_Timer* pTimer)
85 ASSERT(pTimer != NULL);
86 pTimer->KillJSTimer();
87 delete pTimer;
app.cpp 55 void TimerObj::SetTimer(CJS_Timer* pTimer)
57 m_pTimer = pTimer;
477 CJS_Timer* pTimer = new CJS_Timer(this, pApp);
478 m_aTimer.Add(pTimer);
480 pTimer->SetType(0);
481 pTimer->SetRuntime(pRuntime);
482 pTimer->SetJScript(script);
483 pTimer->SetTimeOut(0);
484 // pTimer->SetStartTime(GetTickCount());
485 pTimer->SetJSTimer(dwInterval)
    [all...]
  /external/pdfium/fpdfsdk/include/javascript/
JS_Object.h 26 virtual void TimerProc(CJS_Timer* pTimer){};
29 void EndTimer(CJS_Timer* pTimer);
77 CJS_Timer * pTimer;
102 void SetAt(FX_UINT nIndex,CJS_Timer * pTimer)
109 pMap->pTimer = pTimer;
116 pMap->pTimer = pTimer;
129 return pMap->pTimer;
264 if (CJS_Timer * pTimer = GetTimeMap().GetAt(idEvent)
    [all...]
  /external/pdfium/fpdfsdk/src/pdfwindow/
PWL_Wnd.cpp 55 CPWL_Timer* pTimer = NULL;
56 if (GetPWLTimeMap().Lookup(idEvent, pTimer))
58 if (pTimer)
60 if (pTimer->m_pAttached)
61 pTimer->m_pAttached->TimerProc();

Completed in 296 milliseconds