Home
last modified time | relevance | path

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

/external/pdfium/fpdfsdk/include/javascript/
Dapp.h32 class CJS_TimerObj : public CJS_Object
35 CJS_TimerObj(JSFXObject pObject) : CJS_Object(pObject) {} in CJS_TimerObj() function
36 virtual ~CJS_TimerObj(){} in ~CJS_TimerObj()
38 DECLARE_JS_CLASS(CJS_TimerObj);
/external/pdfium/fpdfsdk/src/javascript/
Dapp.cpp33 BEGIN_JS_STATIC_CONST(CJS_TimerObj)
36 BEGIN_JS_STATIC_PROP(CJS_TimerObj) in END_JS_STATIC_CONST()
39 BEGIN_JS_STATIC_METHOD(CJS_TimerObj) in END_JS_STATIC_CONST()
42 IMPLEMENT_JS_CLASS(CJS_TimerObj, TimerObj) in END_JS_STATIC_CONST()
489 CJS_TimerObj* pJS_TimerObj = (CJS_TimerObj*)JS_GetPrivate(pRuntime->GetIsolate(),pRetObj); in setInterval()
538 CJS_TimerObj* pJS_TimerObj = (CJS_TimerObj*)JS_GetPrivate(pRuntime->GetIsolate(),pRetObj); in setTimeOut()
DJS_Runtime.cpp184 if (CJS_TimerObj::Init(*this, JS_DYNAMIC) < 0) return FALSE; in InitJSObjects()