Searched refs:CJS_Timer (Results 1 - 4 of 4) sorted by relevance

/external/pdfium/fpdfsdk/src/javascript/
H A DJS_Object.cpp96 CJS_Timer::CJS_Timer(CJS_EmbedObj* pObj, function in class:CJS_Timer
118 CJS_Timer::~CJS_Timer() {
125 void CJS_Timer::KillJSTimer() {
137 void CJS_Timer::TimerProc(int idEvent) {
140 CJS_Timer* pTimer = it->second;
151 CJS_Timer::TimerMap* CJS_Timer::GetGlobalTimerMap() {
157 void CJS_Timer
[all...]
H A DJS_Object.h19 class CJS_Timer;
26 virtual void TimerProc(CJS_Timer* pTimer) {}
76 class CJS_Timer : public CJS_Runtime::Observer { class in inherits:CJS_Runtime::Observer
78 CJS_Timer(CJS_EmbedObj* pObj,
85 ~CJS_Timer() override;
97 using TimerMap = std::map<FX_UINT, CJS_Timer*>;
H A Dapp.h16 class CJS_Timer;
24 void SetTimer(CJS_Timer* pTimer);
25 CJS_Timer* GetTimer() const;
28 CJS_Timer* m_pTimer;
161 void TimerProc(CJS_Timer* pTimer) override;
166 CFX_ArrayTemplate<CJS_Timer*> m_aTimer;
H A Dapp.cpp38 void TimerObj::SetTimer(CJS_Timer* pTimer) {
42 CJS_Timer* TimerObj::GetTimer() const {
429 CJS_Timer* pTimer =
430 new CJS_Timer(this, pApp, pRuntime, 0, script, dwInterval, 0);
468 CJS_Timer* pTimer =
469 new CJS_Timer(this, pApp, pRuntime, 1, script, dwTimeOut, dwTimeOut);
498 if (CJS_Timer* pTimer = pTimerObj->GetTimer()) {
534 if (CJS_Timer* pTimer = pTimerObj->GetTimer()) {
562 void app::TimerProc(CJS_Timer* pTimer) {

Completed in 105 milliseconds