Home
last modified time | relevance | path

Searched refs:GetBoundingBox (Results 1 – 18 of 18) 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(FX_FLOAT line_width, in GetBoundingBox() function in CPDF_Path
33 return m_Ref.GetObject()->GetBoundingBox(line_width, miter_limit); in GetBoundingBox()
Dcpdf_pathobject.cpp40 rect = m_Path.GetBoundingBox(width, m_GraphState.GetMiterLimit()); in CalcBoundingBox()
42 rect = m_Path.GetBoundingBox(); in CalcBoundingBox()
Dcpdf_path.h31 CFX_FloatRect GetBoundingBox() const;
32 CFX_FloatRect GetBoundingBox(FX_FLOAT line_width, FX_FLOAT miter_limit) const;
Dcpdf_clippath.cpp48 rect = GetPath(0).GetBoundingBox(); in GetClipBox()
50 CFX_FloatRect path_rect = GetPath(i).GetBoundingBox(); in GetClipBox()
90 CFX_FloatRect new_rect = path.GetBoundingBox(); in AppendPath()
/external/chromium-trace/catapult/telemetry/telemetry/internal/image_processing/
Dimage_util_bitmap_impl.py43 def GetBoundingBox(bitmap, color, tolerance): function
44 return bitmap.GetBoundingBox(color, tolerance)
Dvideo.py81 content_box, pixel_count = image_util.GetBoundingBox(bmp, color,
Dimage_util_numpy_impl.py119 def GetBoundingBox(image, color, tolerance): function
D_bitmap.py224 def GetBoundingBox(self, color, tolerance=0): member in Bitmap
/external/pdfium/core/fxge/
Dcfx_pathdata.h49 CFX_FloatRect GetBoundingBox() const;
50 CFX_FloatRect GetBoundingBox(FX_FLOAT line_width, FX_FLOAT miter_limit) const;
/external/chromium-trace/catapult/telemetry/telemetry/util/
Dimage_util.py96 def GetBoundingBox(image, color, tolerance=0): function
107 return impl.GetBoundingBox(image, color, tolerance)
Dimage_util_unittest.py109 box, count = image_util.GetBoundingBox(bmp, rgba_color.RgbaColor(1, 0, 0))
113 box, count = image_util.GetBoundingBox(bmp, rgba_color.RgbaColor(0, 1, 0))
/external/pdfium/fpdfsdk/
Dfpdf_transformpage.cpp38 bool GetBoundingBox(CPDF_Page* page, in GetBoundingBox() function
87 return pPage && GetBoundingBox(pPage, "MediaBox", left, bottom, right, top); in FPDFPage_GetMediaBox()
96 return pPage && GetBoundingBox(pPage, "CropBox", left, bottom, right, top); in FPDFPage_GetCropBox()
/external/pdfium/xfa/fde/
Dcfde_path.cpp213 CFX_FloatRect rect = m_Path.GetBoundingBox(); in GetBBox()
220 CFX_FloatRect rect = m_Path.GetBoundingBox(fLineWidth, fMiterLimit); in GetBBox()
/external/pdfium/core/fxge/ge/
Dcfx_pathdata.cpp222 CFX_FloatRect CFX_PathData::GetBoundingBox() const { in GetBoundingBox() function in CFX_PathData
233 CFX_FloatRect CFX_PathData::GetBoundingBox(FX_FLOAT line_width, in GetBoundingBox() function in CFX_PathData
Dcfx_renderdevice.cpp602 bbox = pPathData->GetBoundingBox(pGraphState->m_LineWidth, in DrawFillStrokePath()
605 bbox = pPathData->GetBoundingBox(); in DrawFillStrokePath()
/external/pdfium/core/fxge/win32/
Dcfx_psrenderer.cpp158 CFX_FloatRect rect = pPathData->GetBoundingBox(); in SetClip_PathFill()
186 CFX_FloatRect rect = pPathData->GetBoundingBox(pGraphState->m_LineWidth, in SetClip_PathStroke()
Dfx_win32_device.cpp991 CFX_FloatRect bbox_f = pPathData->GetBoundingBox(); in DrawPath()
/external/pdfium/xfa/fxgraphics/
Dcfx_graphics.cpp363 CFX_FloatRect rectf = path->GetPathData()->GetBoundingBox(); in FillPathWithPattern()