Home
last modified time | relevance | path

Searched refs:GetBoundingBox (Results 1 – 11 of 11) sorted by relevance

/external/pdfium/core/fpdfapi/page/
Dcpdf_path.cpp27 CFX_FloatRect CPDF_Path::GetBoundingBox() const { in GetBoundingBox() function in CPDF_Path
28 return m_Ref.GetObject()->GetBoundingBox(); in GetBoundingBox()
31 CFX_FloatRect CPDF_Path::GetBoundingBox(float line_width, in GetBoundingBox() function in CPDF_Path
33 return m_Ref.GetObject()->GetBoundingBox(line_width, miter_limit); in GetBoundingBox()
Dcpdf_path.h29 CFX_FloatRect GetBoundingBox() const;
30 CFX_FloatRect GetBoundingBox(float line_width, float miter_limit) const;
Dcpdf_pathobject.cpp44 rect = m_Path.GetBoundingBox(width, m_GraphState.GetMiterLimit()); in CalcBoundingBox()
46 rect = m_Path.GetBoundingBox(); in CalcBoundingBox()
Dcpdf_clippath.cpp45 rect = GetPath(0).GetBoundingBox(); in GetClipBox()
47 CFX_FloatRect path_rect = GetPath(i).GetBoundingBox(); in GetClipBox()
85 CFX_FloatRect new_rect = path.GetBoundingBox(); in AppendPath()
/external/pdfium/fpdfsdk/
Dfpdf_transformpage.cpp42 bool GetBoundingBox(CPDF_Page* page, in GetBoundingBox() function
155 return GetBoundingBox(CPDFPageFromFPDFPage(page), in FPDFPage_GetMediaBox()
165 return GetBoundingBox(CPDFPageFromFPDFPage(page), in FPDFPage_GetCropBox()
175 return GetBoundingBox(CPDFPageFromFPDFPage(page), in FPDFPage_GetBleedBox()
185 return GetBoundingBox(CPDFPageFromFPDFPage(page), in FPDFPage_GetTrimBox()
195 return GetBoundingBox(CPDFPageFromFPDFPage(page), in FPDFPage_GetArtBox()
/external/pdfium/core/fxge/
Dcfx_pathdata.h52 CFX_FloatRect GetBoundingBox() const;
53 CFX_FloatRect GetBoundingBox(float line_width, float miter_limit) const;
Dcfx_pathdata.cpp254 CFX_FloatRect CFX_PathData::GetBoundingBox() const { in GetBoundingBox() function in CFX_PathData
265 CFX_FloatRect CFX_PathData::GetBoundingBox(float line_width, in GetBoundingBox() function in CFX_PathData
Dcfx_renderdevice.cpp626 bbox = pPathData->GetBoundingBox(pGraphState->m_LineWidth, in DrawFillStrokePath()
629 bbox = pPathData->GetBoundingBox(); in DrawFillStrokePath()
/external/pdfium/core/fxge/win32/
Dcfx_psrenderer.cpp159 CFX_FloatRect rect = pPathData->GetBoundingBox(); in SetClip_PathFill()
187 CFX_FloatRect rect = pPathData->GetBoundingBox(pGraphState->m_LineWidth, in SetClip_PathStroke()
Dfx_win32_device.cpp968 CFX_FloatRect bbox_f = pPathData->GetBoundingBox(); in DrawPath()
/external/pdfium/xfa/fxgraphics/
Dcxfa_graphics.cpp261 matrix.TransformRect(path->GetPathData()->GetBoundingBox()); in FillPathWithPattern()