Home
last modified time | relevance | path

Searched refs:FX_RECT (Results 1 – 25 of 107) sorted by relevance

12345

/external/pdfium/core/fxge/win32/
Dwin32_int.h44 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/
Dfx_coordinates.cpp37 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 …]
Dfx_coordinates.h183 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/
Dcfx_cliprgn.h24 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;
Drenderdevicedriver_iface.h27 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,
Dcfx_cliprgn.cpp21 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()
Drenderdevicedriver_iface.cpp28 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()
Dcfx_renderdevice.h69 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/
Dcpdf_imagerenderer.h70 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,
Dcpdf_imagerenderer.cpp210 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 …]
Dcpdf_devicebuffer.h22 const FX_RECT& rect,
28 const FX_RECT& rect,
43 const FX_RECT m_Rect;
Dcpdf_devicebuffer.cpp30 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/
Dcpdfxfa_page.h35 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/
Dfx_skia_device.h69 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/
Dcfx_imagetransformer.h61 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;
Dcfx_imagerenderer.cpp31 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()
Dcstretchengine.h27 const FX_RECT& clip_rect,
91 const FX_RECT m_DestClip;
96 FX_RECT m_SrcClip;
/external/pdfium/core/fpdfapi/page/
Dipdf_page.h35 virtual CFX_Matrix GetDisplayMatrix(const FX_RECT& rect,
39 const FX_RECT& rect,
44 const FX_RECT& rect,
Dcpdf_page.h63 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/
DJBig2_Image.h16 struct FX_RECT;
56 const FX_RECT& rtSrc,
69 const FX_RECT& rtSrc,
87 const FX_RECT& rtSrc);
/external/pdfium/xfa/fxfa/
Dcxfa_imagerenderer.cpp35 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/
Dcfpf_skiafont.h19 struct FX_RECT;
39 bool GetGlyphBBox(int32_t iGlyphIndex, FX_RECT& rtBBox);
40 bool GetBBox(FX_RECT& rtBBox);
/external/pdfium/core/fxge/agg/
Dfx_agg_driver.h64 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/
Dcfgas_gefont.h53 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/
Dcpdfsdk_renderpage.h14 struct FX_RECT;
19 const FX_RECT& clipping_rect,

12345