Home
last modified time | relevance | path

Searched refs:CJS_EventContext (Results 1 – 7 of 7) sorted by relevance

/external/pdfium/fxjs/
Dcjs_event_context.cpp15 CJS_EventContext::CJS_EventContext(CJS_Runtime* pRuntime) in CJS_EventContext() function in CJS_EventContext
22 CJS_EventContext::~CJS_EventContext() {} in ~CJS_EventContext()
24 CPDFSDK_FormFillEnvironment* CJS_EventContext::GetFormFillEnv() { in GetFormFillEnv()
28 bool CJS_EventContext::RunScript(const WideString& script, WideString* info) { in RunScript()
65 void CJS_EventContext::OnApp_Init() { in OnApp_Init()
69 void CJS_EventContext::OnDoc_Open(CPDFSDK_FormFillEnvironment* pFormFillEnv, in OnDoc_Open()
74 void CJS_EventContext::OnDoc_WillPrint( in OnDoc_WillPrint()
79 void CJS_EventContext::OnDoc_DidPrint( in OnDoc_DidPrint()
84 void CJS_EventContext::OnDoc_WillSave( in OnDoc_WillSave()
89 void CJS_EventContext::OnDoc_DidSave( in OnDoc_DidSave()
[all …]
Dcjs_runtime.h22 class CJS_EventContext; variable
41 CJS_EventContext* GetCurrentEventContext() const;
66 std::vector<std::unique_ptr<CJS_EventContext>> m_EventContextArray;
Dcjs_event_context.h21 class CJS_EventContext : public IJS_EventContext {
23 explicit CJS_EventContext(CJS_Runtime* pRuntime);
24 ~CJS_EventContext() override;
Dcjs_runtime.cpp161 m_EventContextArray.push_back(pdfium::MakeUnique<CJS_EventContext>(this)); in NewEventContext()
167 pdfium::FakeUniquePtr<CJS_EventContext>( in ReleaseEventContext()
168 static_cast<CJS_EventContext*>(pContext))); in ReleaseEventContext()
173 CJS_EventContext* CJS_Runtime::GetCurrentEventContext() const { in GetCurrentEventContext()
Dcjs_eventhandler.h15 class CJS_EventContext; variable
64 explicit CJS_EventHandler(CJS_EventContext* pContext);
169 UnownedPtr<CJS_EventContext> const m_pJSEventContext;
Dcjs_publicmethods.cpp80 void AlertIfPossible(CJS_EventContext* pContext, const wchar_t* swMsg) { in AlertIfPossible()
978 CJS_EventContext* pContext = pRuntime->GetCurrentEventContext(); in AFNumber_Keystroke()
1151 CJS_EventContext* pContext = pRuntime->GetCurrentEventContext(); in AFDate_FormatEx()
1228 CJS_EventContext* pContext = pRuntime->GetCurrentEventContext(); in AFDate_KeystrokeEx()
1398 CJS_EventContext* pContext = pRuntime->GetCurrentEventContext(); in AFSpecial_KeystrokeEx()
1654 CJS_EventContext* pContext = pRuntime->GetCurrentEventContext(); in AFSimple_Calculate()
1671 CJS_EventContext* pContext = pRuntime->GetCurrentEventContext(); in AFRange_Validate()
Dcjs_eventhandler.cpp17 CJS_EventHandler::CJS_EventHandler(CJS_EventContext* pContext) in CJS_EventHandler()