Home
last modified time | relevance | path

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

/external/pdfium/fxjs/
Dcjs_timerobj.cpp12 int CJS_TimerObj::ObjDefnID = -1;
15 int CJS_TimerObj::GetObjDefnID() { in GetObjDefnID()
20 void CJS_TimerObj::DefineJSObjects(CFXJS_Engine* pEngine) { in DefineJSObjects()
22 JSConstructor<CJS_TimerObj>, JSDestructor); in DefineJSObjects()
25 CJS_TimerObj::CJS_TimerObj(v8::Local<v8::Object> pObject, CJS_Runtime* pRuntime) in CJS_TimerObj() function in CJS_TimerObj
28 CJS_TimerObj::~CJS_TimerObj() = default;
30 void CJS_TimerObj::SetTimer(GlobalTimer* pTimer) { in SetTimer()
Dcjs_timerobj.h14 class CJS_TimerObj final : public CJS_Object {
19 CJS_TimerObj(v8::Local<v8::Object> pObject, CJS_Runtime* pRuntime);
20 ~CJS_TimerObj() override;
Dcjs_app.cpp311 CJS_TimerObj::GetObjDefnID(), FXJSOBJTYPE_DYNAMIC); in setInterval()
316 static_cast<CJS_TimerObj*>(CFXJS_Engine::GetObjectPrivate(pRetObj)); in setInterval()
340 CJS_TimerObj::GetObjDefnID(), FXJSOBJTYPE_DYNAMIC); in setTimeOut()
345 static_cast<CJS_TimerObj*>(CFXJS_Engine::GetObjectPrivate(pRetObj)); in setTimeOut()
377 auto pTimer = JSGetObject<CJS_TimerObj>(pObj); in ClearTimerCommon()
Dcjs_runtime.cpp118 CJS_TimerObj::DefineJSObjects(this); in DefineJSObjects()