Searched refs:CJS_TimerObj (Results 1 – 4 of 4) sorted by relevance
11 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()
26 class CJS_TimerObj : public CJS_Object {31 explicit CJS_TimerObj(v8::Local<v8::Object> pObject) : CJS_Object(pObject) {} in CJS_TimerObj() function32 ~CJS_TimerObj() override {} in ~CJS_TimerObj()
313 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()
155 CJS_TimerObj::DefineJSObjects(this); in DefineJSObjects()