Home
last modified time | relevance | path

Searched refs:m_pEventHandler (Results 1 – 2 of 2) sorted by relevance

/external/pdfium/fpdfsdk/src/javascript/
DJS_Context.cpp22 m_pEventHandler = new CJS_EventHandler(this); in CJS_Context()
27 if (m_pEventHandler) in ~CJS_Context()
29 delete m_pEventHandler; in ~CJS_Context()
30 m_pEventHandler = NULL; in ~CJS_Context()
59 ASSERT(m_pEventHandler != NULL); in DoJob()
60 ASSERT(m_pEventHandler->IsValid()); in DoJob()
62 if (!m_pRuntime->AddEventToLoop(m_pEventHandler->TargetName(), m_pEventHandler->EventType())) in DoJob()
108 m_pRuntime->RemoveEventInLoop(m_pEventHandler->TargetName(), m_pEventHandler->EventType()); in DoJob()
110 m_pEventHandler->Destroy(); in DoJob()
138 ASSERT(m_pEventHandler != NULL); in OnApp_Init()
[all …]
/external/pdfium/fpdfsdk/include/javascript/
DJS_Context.h82 CJS_EventHandler* GetEventHandler(){return m_pEventHandler;}; in GetEventHandler()
87 CJS_EventHandler* m_pEventHandler; variable