Home
last modified time | relevance | path

Searched refs:CJS_TimerObj (Results 1 – 4 of 4) sorted by relevance

/external/pdfium/fxjs/
Dcjs_timerobj.cpp11 int CJS_TimerObj::ObjDefnID = -1;
14 int CJS_TimerObj::GetObjDefnID() { in GetObjDefnID()
19 void CJS_TimerObj::DefineJSObjects(CFXJS_Engine* pEngine) { in DefineJSObjects()
21 JSConstructor<CJS_TimerObj, TimerObj>, in DefineJSObjects()
22 JSDestructor<CJS_TimerObj>); in DefineJSObjects()
Dcjs_timerobj.h26 class CJS_TimerObj : public CJS_Object {
31 explicit CJS_TimerObj(v8::Local<v8::Object> pObject) : CJS_Object(pObject) {} in CJS_TimerObj() function
32 ~CJS_TimerObj() override {} in ~CJS_TimerObj()
Dcjs_app.cpp313 pRuntime->NewFxDynamicObj(CJS_TimerObj::GetObjDefnID()); in setInterval()
317 CJS_TimerObj* pJS_TimerObj = in setInterval()
318 static_cast<CJS_TimerObj*>(pRuntime->GetObjectPrivate(pRetObj)); in setInterval()
341 pRuntime->NewFxDynamicObj(CJS_TimerObj::GetObjDefnID()); in setTimeOut()
345 CJS_TimerObj* pJS_TimerObj = in setTimeOut()
346 static_cast<CJS_TimerObj*>(pRuntime->GetObjectPrivate(pRetObj)); in setTimeOut()
376 if (CFXJS_Engine::GetObjDefnID(pObj) != CJS_TimerObj::GetObjDefnID()) in ClearTimerCommon()
Dcjs_runtime.cpp155 CJS_TimerObj::DefineJSObjects(this); in DefineJSObjects()