Home
last modified time | relevance | path

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

/external/pdfium/xfa/fwl/
Dcfwl_widget.h118 void SetDelegate(IFWL_WidgetDelegate* delegate) { m_pDelegate = delegate; } in SetDelegate()
120 return m_pDelegate ? m_pDelegate.Get() : this; in GetDelegate()
123 return m_pDelegate ? m_pDelegate.Get() : this; in GetDelegate()
188 UnownedPtr<IFWL_WidgetDelegate> m_pDelegate; variable
/external/pdfium/core/fxcodec/png/
Dpngmodule.cpp33 UnownedPtr<PngModule::Delegate> const m_pDelegate; member in CPngContext
108 if (!pContext->m_pDelegate->PngReadHeader(width, height, bpc, pass, in _png_get_header_func()
164 if (!pContext->m_pDelegate->PngAskScanlineBuf(row_num, &src_buf)) in _png_get_row_func()
170 pContext->m_pDelegate->PngFillScanlineBufCompleted(pass, row_num); in _png_get_row_func()
176 : m_pDelegate(pDelegate) { in CPngContext()
/external/pdfium/fxjs/
Dcfx_globaldata.cpp107 CFX_GlobalData::CFX_GlobalData(Delegate* pDelegate) : m_pDelegate(pDelegate) { in CFX_GlobalData()
255 if (!m_pDelegate) in LoadGlobalPersistentVariables()
261 Optional<pdfium::span<uint8_t>> buffer = m_pDelegate->LoadBuffer(); in LoadGlobalPersistentVariables()
267 m_pDelegate->BufferDone(); in LoadGlobalPersistentVariables()
361 if (!m_pDelegate) in SaveGlobalPersisitentVariables()
394 return m_pDelegate->StoreBuffer({sFile.GetBuffer(), sFile.GetSize()}); in SaveGlobalPersisitentVariables()
Dcfx_globaldata.h80 UnownedPtr<Delegate> const m_pDelegate; variable
/external/pdfium/core/fxcodec/bmp/
Dcfx_bmpcontext.cpp13 : m_Bmp(this), m_pModule(pModule), m_pDelegate(pDelegate) {} in CFX_BmpContext()
Dcfx_bmpcontext.h24 UnownedPtr<BmpModule::Delegate> const m_pDelegate; variable
Dcfx_bmpdecompressor.cpp65 context_->m_pDelegate->BmpReadScanline(row, out_row_buffer_); in ReadNextScanline()
70 return context_->m_pDelegate->BmpInputImagePositionBuf(rcd_pos); in GetDataPosition()