Home
last modified time | relevance | path

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

/external/pdfium/core/src/fpdfapi/fpdf_page/
Dfpdf_page_path.cpp37 rect = m_Path.GetBoundingBox(width, m_GraphState.GetObject()->m_MiterLimit); in CalcBoundingBox()
39 rect = m_Path.GetBoundingBox(); in CalcBoundingBox()
Dfpdf_page_graph_state.cpp104 rect = GetPath(0).GetBoundingBox(); in GetClipBox()
106 CPDF_Rect path_rect = GetPath(i).GetBoundingBox(); in GetClipBox()
145 CPDF_Rect new_rect = path.GetBoundingBox(); in AppendPath()
/external/pdfium/core/include/fpdfapi/
Dfpdf_pageobj.h70 CFX_FloatRect GetBoundingBox() const in GetBoundingBox() function
72 return m_pObject->GetBoundingBox(); in GetBoundingBox()
75 CFX_FloatRect GetBoundingBox(FX_FLOAT line_width, FX_FLOAT miter_limit) const in GetBoundingBox() function
77 return m_pObject->GetBoundingBox(line_width, miter_limit); in GetBoundingBox()
/external/pdfium/core/src/fxge/ge/
Dfx_ge_device.cpp225 bbox = pPathData->GetBoundingBox(pGraphState->m_LineWidth, pGraphState->m_MiterLimit); in DrawPath()
227 bbox = pPathData->GetBoundingBox(); in DrawPath()
Dfx_ge_ps.cpp143 CFX_FloatRect rect = pPathData->GetBoundingBox(); in SetClip_PathFill()
169 …CFX_FloatRect rect = pPathData->GetBoundingBox(pGraphState->m_LineWidth, pGraphState->m_MiterLimit… in SetClip_PathStroke()
Dfx_ge_path.cpp203 CFX_FloatRect CFX_PathData::GetBoundingBox() const in GetBoundingBox() function in CFX_PathData
337 CFX_FloatRect CFX_PathData::GetBoundingBox(FX_FLOAT line_width, FX_FLOAT miter_limit) const in GetBoundingBox() function in CFX_PathData
/external/pdfium/core/include/fxge/
Dfx_ge.h192 CFX_FloatRect GetBoundingBox() const;
194 CFX_FloatRect GetBoundingBox(FX_FLOAT line_width, FX_FLOAT miter_limit) const;
/external/pdfium/core/src/fxge/win32/
Dfx_win32_device.cpp773 CFX_FloatRect bbox_f = pPathData->GetBoundingBox(); in DrawPath()