Home
last modified time | relevance | path

Searched refs:pDelegate (Results 1 – 13 of 13) sorted by relevance

/external/pdfium/xfa/fwl/
Dcfwl_eventtarget.cpp23 IFWL_WidgetDelegate* pDelegate = m_pListener->GetDelegate(); in ProcessEvent() local
24 if (!pDelegate) in ProcessEvent()
29 pDelegate->OnProcessEvent(pEvent); in ProcessEvent()
Dcfwl_notedriver.cpp69 if (IFWL_WidgetDelegate* pDelegate = pPrev->GetDelegate()) { in SetFocus() local
71 pDelegate->OnProcessMessage(&ms); in SetFocus()
75 if (IFWL_WidgetDelegate* pDelegate = pFocus->GetDelegate()) { in SetFocus() local
77 pDelegate->OnProcessMessage(&ms); in SetFocus()
146 IFWL_WidgetDelegate* pDelegate = pMessage->GetDstTarget()->GetDelegate(); in DispatchMessage() local
147 if (pDelegate) in DispatchMessage()
148 pDelegate->OnProcessMessage(pMessage); in DispatchMessage()
Dcfwl_widgetmgr.cpp368 if (IFWL_WidgetDelegate* pDelegate = child->GetDelegate()) in DrawChild() local
369 pDelegate->OnDrawWidget(pGraphics, widgetMatrix); in DrawChild()
/external/pdfium/core/fxcodec/bmp/
Dcfx_bmpcontext.cpp12 BmpModule::Delegate* pDelegate) in CFX_BmpContext() argument
13 : m_Bmp(this), m_pModule(pModule), m_pDelegate(pDelegate) {} in CFX_BmpContext()
Dbmpmodule.cpp23 std::unique_ptr<ModuleIface::Context> BmpModule::Start(Delegate* pDelegate) { in Start() argument
24 return pdfium::MakeUnique<CFX_BmpContext>(this, pDelegate); in Start()
Dcfx_bmpcontext.h19 CFX_BmpContext(BmpModule* pModule, BmpModule::Delegate* pDelegate);
Dbmpmodule.h40 std::unique_ptr<Context> Start(Delegate* pDelegate);
/external/pdfium/core/fxcodec/png/
Dpngmodule.cpp28 explicit CPngContext(PngModule::Delegate* pDelegate);
175 CPngContext::CPngContext(PngModule::Delegate* pDelegate) in CPngContext() argument
176 : m_pDelegate(pDelegate) { in CPngContext()
191 std::unique_ptr<ModuleIface::Context> PngModule::Start(Delegate* pDelegate) { in Start() argument
192 auto p = pdfium::MakeUnique<CPngContext>(pDelegate); in Start()
Dpngmodule.h43 std::unique_ptr<Context> Start(Delegate* pDelegate);
/external/pdfium/core/fxcodec/gif/
Dgifmodule.cpp22 std::unique_ptr<ModuleIface::Context> GifModule::Start(Delegate* pDelegate) { in Start() argument
23 return pdfium::MakeUnique<CFX_GifContext>(this, pDelegate); in Start()
Dgifmodule.h47 std::unique_ptr<Context> Start(Delegate* pDelegate);
/external/pdfium/fxjs/
Dcfx_globaldata.h41 static CFX_GlobalData* GetRetainedInstance(Delegate* pDelegate);
63 explicit CFX_GlobalData(Delegate* pDelegate);
Dcfx_globaldata.cpp90 CFX_GlobalData* CFX_GlobalData::GetRetainedInstance(Delegate* pDelegate) { in GetRetainedInstance() argument
92 g_pInstance = new CFX_GlobalData(pDelegate); in GetRetainedInstance()
107 CFX_GlobalData::CFX_GlobalData(Delegate* pDelegate) : m_pDelegate(pDelegate) { in CFX_GlobalData() argument