/external/pdfium/core/fxge/win32/ |
D | win32_int.h | 44 const FX_RECT* pClipRect, 85 void SetBaseClip(const FX_RECT& rect) override; 99 bool FillRectWithBlend(const FX_RECT& rect, 106 bool GetClipBox(FX_RECT* pRect) override; 111 const FX_RECT& src_rect, 134 pdfium::Optional<FX_RECT> m_BaseClipBox; 150 const FX_RECT& src_rect, 160 const FX_RECT* pClipRect, 176 const FX_RECT* pClipRect, 190 const FX_RECT& src_rect, [all …]
|
/external/pdfium/core/fxcrt/ |
D | fx_coordinates.cpp | 37 static_assert(sizeof(FX_RECT) == sizeof(RECT), "FX_RECT vs. RECT mismatch"); 38 static_assert(offsetof(FX_RECT, left) == offsetof(RECT, left), 40 static_assert(offsetof(FX_RECT, top) == offsetof(RECT, top), 42 static_assert(offsetof(FX_RECT, right) == offsetof(RECT, right), 44 static_assert(offsetof(FX_RECT, bottom) == offsetof(RECT, bottom), 46 static_assert(sizeof(FX_RECT::left) == sizeof(RECT::left), 48 static_assert(sizeof(FX_RECT::top) == sizeof(RECT::top), 50 static_assert(sizeof(FX_RECT::right) == sizeof(RECT::right), 52 static_assert(sizeof(FX_RECT::bottom) == sizeof(RECT::bottom), 58 void FX_RECT::Normalize() { in Normalize() [all …]
|
D | fx_coordinates.h | 183 struct FX_RECT { struct 184 FX_RECT() = default; 185 FX_RECT(int l, int t, int r, int b) : left(l), top(t), right(r), bottom(b) {} in FX_RECT() argument 200 void Intersect(const FX_RECT& src); argument 201 void Intersect(int l, int t, int r, int b) { Intersect(FX_RECT(l, t, r, b)); } in Intersect() argument 210 bool operator==(const FX_RECT& src) const { argument 235 explicit CFX_FloatRect(const FX_RECT& rect); argument 252 FX_RECT GetInnerRect() const; 256 FX_RECT GetOuterRect() const; 260 FX_RECT GetClosestRect() const; [all …]
|
/external/pdfium/core/fxge/ |
D | cfx_cliprgn.h | 24 const FX_RECT& GetBox() const { return m_Box; } in GetBox() 27 void IntersectRect(const FX_RECT& rect); 31 void IntersectMaskRect(FX_RECT rect, 32 FX_RECT mask_rect, 36 FX_RECT m_Box;
|
D | renderdevicedriver_iface.h | 27 struct FX_RECT; 47 virtual void SetBaseClip(const FX_RECT& rect); 62 virtual bool FillRectWithBlend(const FX_RECT& rect, 70 virtual bool GetClipBox(FX_RECT* pRect) = 0; 77 const FX_RECT& src_rect, 87 const FX_RECT* pClipRect, 109 const FX_RECT& clip_rect,
|
D | cfx_cliprgn.cpp | 21 void CFX_ClipRgn::IntersectRect(const FX_RECT& rect) { in IntersectRect() 32 void CFX_ClipRgn::IntersectMaskRect(FX_RECT rect, in IntersectMaskRect() 33 FX_RECT mask_rect, in IntersectMaskRect() 63 FX_RECT mask_box(left, top, left + pMask->GetWidth(), in IntersectMaskF() 70 FX_RECT new_box = m_Box; in IntersectMaskF()
|
D | renderdevicedriver_iface.cpp | 28 void RenderDeviceDriverIface::SetBaseClip(const FX_RECT& rect) {} in SetBaseClip() 34 bool RenderDeviceDriverIface::FillRectWithBlend(const FX_RECT& rect, in FillRectWithBlend() 79 const FX_RECT& clip_rect, in DrawShading()
|
D | cfx_renderdevice.h | 69 const FX_RECT& GetClipBox() const { return m_ClipBox; } in GetClipBox() 70 void SetBaseClip(const FX_RECT& rect); 77 bool SetClip_Rect(const FX_RECT& pRect); 94 bool FillRect(const FX_RECT& rect, uint32_t color) { in FillRect() 240 bool FillRectWithBlend(const FX_RECT& rect, 250 FX_RECT m_ClipBox;
|
/external/pdfium/core/fpdfapi/render/ |
D | cpdf_imagerenderer.h | 70 FX_RECT GetDrawRect() const; 71 CFX_Matrix GetDrawMatrix(const FX_RECT& rect) const; 76 const FX_RECT& rect) const; 79 Optional<FX_RECT> GetUnitRect() const; 80 bool GetDimensionsFromUnitRect(const FX_RECT& rect,
|
D | cpdf_imagerenderer.cpp | 210 FX_RECT CPDF_ImageRenderer::GetDrawRect() const { in GetDrawRect() 211 FX_RECT rect = m_ImageMatrix.GetUnitRect().GetOuterRect(); in GetDrawRect() 216 CFX_Matrix CPDF_ImageRenderer::GetDrawMatrix(const FX_RECT& rect) const { in GetDrawMatrix() 227 const FX_RECT& rect) const { in CalculateDrawImage() 274 FX_RECT rect = GetDrawRect(); in DrawPatternImage() 326 FX_RECT rect = GetDrawRect(); in DrawMaskedImage() 423 Optional<FX_RECT> image_rect = GetUnitRect(); in StartDIBBase() 427 FX_RECT clip_box = m_pRenderStatus->GetRenderDevice()->GetClipBox(); in StartDIBBase() 435 Optional<FX_RECT> image_rect = GetUnitRect(); in StartDIBBase() 469 FX_RECT clip_box = m_pRenderStatus->GetRenderDevice()->GetClipBox(); in StartDIBBase() [all …]
|
D | cpdf_devicebuffer.h | 22 const FX_RECT& rect, 28 const FX_RECT& rect, 43 const FX_RECT m_Rect;
|
D | cpdf_devicebuffer.cpp | 30 const FX_RECT& rect, in CalculateMatrix() 54 const FX_RECT& rect, in CPDF_DeviceBuffer() 67 FX_RECT bitmap_rect = in Initialize()
|
/external/pdfium/fpdfsdk/fpdfxfa/ |
D | cpdfxfa_page.h | 35 CFX_Matrix GetDisplayMatrix(const FX_RECT& rect, int iRotate) const override; 37 const FX_RECT& rect, 41 const FX_RECT& rect, 55 const FX_RECT& rtClip);
|
/external/pdfium/core/fxge/skia/ |
D | fx_skia_device.h | 69 bool FillRectWithBlend(const FX_RECT& rect, 79 bool GetClipBox(FX_RECT* pRect) override; 90 const FX_RECT& src_rect, 104 void SetClipMask(const FX_RECT& clipBox, const SkPath& skClipPath); 113 const FX_RECT* pClipRect, 145 const FX_RECT& clip_rect,
|
/external/pdfium/core/fxge/dib/ |
D | cfx_imagetransformer.h | 61 const FX_RECT* pClip); 66 const FX_RECT& result() const { return m_result; } in result() 90 FX_RECT m_StretchClip; 91 FX_RECT m_result;
|
D | cfx_imagerenderer.cpp | 31 FX_RECT image_rect = m_Matrix.GetUnitRect().GetOuterRect(); in CFX_ImageRenderer() 34 : FX_RECT(0, 0, pDevice->GetWidth(), pDevice->GetHeight()); in CFX_ImageRenderer() 46 FX_RECT bitmap_clip = m_ClipBox; in CFX_ImageRenderer() 76 FX_RECT bitmap_clip = m_ClipBox; in CFX_ImageRenderer()
|
D | cstretchengine.h | 27 const FX_RECT& clip_rect, 91 const FX_RECT m_DestClip; 96 FX_RECT m_SrcClip;
|
/external/pdfium/core/fpdfapi/page/ |
D | ipdf_page.h | 35 virtual CFX_Matrix GetDisplayMatrix(const FX_RECT& rect, 39 const FX_RECT& rect, 44 const FX_RECT& rect,
|
D | cpdf_page.h | 63 CFX_Matrix GetDisplayMatrix(const FX_RECT& rect, int iRotate) const override; 65 const FX_RECT& rect, 69 const FX_RECT& rect,
|
/external/pdfium/core/fxcodec/jbig2/ |
D | JBig2_Image.h | 16 struct FX_RECT; 56 const FX_RECT& rtSrc, 69 const FX_RECT& rtSrc, 87 const FX_RECT& rtSrc);
|
/external/pdfium/xfa/fxfa/ |
D | cxfa_imagerenderer.cpp | 35 FX_RECT image_rect = image_rect_f.GetOuterRect(); in Start() 50 FX_RECT clip_box = m_pDevice->GetClipBox(); in Start() 79 FX_RECT clip_box = m_pDevice->GetClipBox(); in Start() 80 FX_RECT dest_rect = clip_box; in Start() 82 FX_RECT dest_clip( in Start()
|
/external/pdfium/core/fxge/android/ |
D | cfpf_skiafont.h | 19 struct FX_RECT; 39 bool GetGlyphBBox(int32_t iGlyphIndex, FX_RECT& rtBBox); 40 bool GetBBox(FX_RECT& rtBBox);
|
/external/pdfium/core/fxge/agg/ |
D | fx_agg_driver.h | 64 bool FillRectWithBlend(const FX_RECT& rect, 67 bool GetClipBox(FX_RECT* pRect) override; 74 const FX_RECT& src_rect, 84 const FX_RECT* pClipRect,
|
/external/pdfium/xfa/fgas/font/ |
D | cfgas_gefont.h | 53 bool GetCharBBox(wchar_t wUnicode, FX_RECT* bbox); 54 bool GetBBox(FX_RECT* bbox); 87 std::map<wchar_t, FX_RECT> m_BBoxMap;
|
/external/pdfium/fpdfsdk/ |
D | cpdfsdk_renderpage.h | 14 struct FX_RECT; 19 const FX_RECT& clipping_rect,
|