Searched refs:pClip (Results 1 – 5 of 5) sorted by relevance
/external/pdfium/core/include/fxge/ |
D | fx_dib.h | 238 CFX_DIBitmap* Clone(const FX_RECT* pClip = NULL) const; 240 …CFX_DIBitmap* CloneConvert(FXDIB_Format format, const FX_RECT* pClip = NULL, void* pIccTransform =… 242 … StretchTo(int dest_width, int dest_height, FX_DWORD flags = 0, const FX_RECT* pClip = NULL) const; 246 FX_DWORD flags = 0, const FX_RECT* pClip = NULL) const; 248 CFX_DIBitmap* GetAlphaMask(const FX_RECT* pClip = NULL) const; 250 FX_BOOL CopyAlphaMask(const CFX_DIBSource* pAlphaMask, const FX_RECT* pClip = NULL); 252 CFX_DIBitmap* SwapXY(FX_BOOL bXFlip, FX_BOOL bYFlip, const FX_RECT* pClip = NULL) const; 559 …Start(const CFX_DIBSource* pSrc, const CFX_AffineMatrix* pMatrix, int flags, const FX_RECT* pClip);
|
/external/pdfium/core/src/fxge/dib/ |
D | fx_dib_main.cpp | 158 CFX_DIBitmap* CFX_DIBSource::Clone(const FX_RECT* pClip) const in Clone() 161 if (pClip) { in Clone() 162 rect.Intersect(*pClip); in Clone() 173 pNewBitmap->CopyAlphaMask(m_pAlphaMask, pClip); in Clone() 552 CFX_DIBitmap* CFX_DIBSource::GetAlphaMask(const FX_RECT* pClip) const in GetAlphaMask() 556 if (pClip) { in GetAlphaMask() 557 rect.Intersect(*pClip); in GetAlphaMask() 577 FX_BOOL CFX_DIBSource::CopyAlphaMask(const CFX_DIBSource* pAlphaMask, const FX_RECT* pClip) in CopyAlphaMask() argument 584 if (pClip) { in CopyAlphaMask() 585 rect.Intersect(*pClip); in CopyAlphaMask()
|
D | fx_dib_convert.cpp | 913 CFX_DIBitmap* CFX_DIBSource::CloneConvert(FXDIB_Format dest_format, const FX_RECT* pClip, void* pIc… in CloneConvert() argument 916 return Clone(pClip); in CloneConvert() 918 if (pClip) { in CloneConvert() 919 CFX_DIBitmap* pClone = Clone(pClip); in CloneConvert()
|
D | fx_dib_transform.cpp | 182 …X_DIBSource::StretchTo(int dest_width, int dest_height, FX_DWORD flags, const FX_RECT* pClip) const in StretchTo() 185 if (pClip) { in StretchTo() 186 clip_rect.Intersect(*pClip); in StretchTo()
|
/external/pdfium/core/src/fxge/agg/agg23/ |
D | fx_agg_driver.cpp | 268 void* pClip = NULL; in SaveState() local 270 pClip = new CFX_ClipRgn(*m_pClipRgn); in SaveState() 272 m_StateStack.Add(pClip); in SaveState()
|