Home
last modified time | relevance | path

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

/external/pdfium/core/src/fpdfapi/fpdf_page/
Dfpdf_page_path.cpp35 rect = m_Path.GetBoundingBox(width, m_GraphState.GetObject()->m_MiterLimit); in CalcBoundingBox()
37 rect = m_Path.GetBoundingBox(); in CalcBoundingBox()
Dfpdf_page_graph_state.cpp93 rect = GetPath(0).GetBoundingBox(); in GetClipBox()
95 CPDF_Rect path_rect = GetPath(i).GetBoundingBox(); in GetClipBox()
133 CPDF_Rect 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.py114 def GetBoundingBox(image, color, tolerance): function
D_bitmap.py217 def GetBoundingBox(self, color, tolerance=0): member in Bitmap
/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/core/include/fpdfapi/
Dfpdf_pageobj.h48 CFX_FloatRect GetBoundingBox() const { return m_pObject->GetBoundingBox(); } in GetBoundingBox() function
50 CFX_FloatRect GetBoundingBox(FX_FLOAT line_width, in GetBoundingBox() function
52 return m_pObject->GetBoundingBox(line_width, miter_limit); in GetBoundingBox()
/external/pdfium/fpdfsdk/src/
Dfpdf_transformpage.cpp28 FPDF_BOOL GetBoundingBox(CPDF_Page* page, in GetBoundingBox() function
78 return pPage && GetBoundingBox(pPage, "MediaBox", left, bottom, right, top); in FPDFPage_GetMediaBox()
87 return pPage && GetBoundingBox(pPage, "CropBox", left, bottom, right, top); in FPDFPage_GetCropBox()
/external/pdfium/xfa/src/fdp/src/fde/
Dfde_geobject.cpp256 CFX_FloatRect rect = m_Path.GetBoundingBox(); in GetBBox()
263 CFX_FloatRect rect = m_Path.GetBoundingBox(fLineWidth, fMiterLimit); in GetBBox()
Dfde_gedevice.cpp430 CFX_FloatRect rectf = pPath->GetBoundingBox(); in FillHatchPath()
476 CFX_FloatRect rectf = pPath->GetBoundingBox(); in WrapTexture()
/external/pdfium/core/include/fxge/
Dfx_ge.h135 CFX_FloatRect GetBoundingBox() const;
137 CFX_FloatRect GetBoundingBox(FX_FLOAT line_width, FX_FLOAT miter_limit) const;
/external/pdfium/core/src/fxge/ge/
Dfx_ge_device.cpp233 bbox = pPathData->GetBoundingBox(pGraphState->m_LineWidth, in DrawPath()
236 bbox = pPathData->GetBoundingBox(); in DrawPath()
Dfx_ge_ps.cpp143 CFX_FloatRect rect = pPathData->GetBoundingBox(); in SetClip_PathFill()
167 CFX_FloatRect rect = pPathData->GetBoundingBox(pGraphState->m_LineWidth, in SetClip_PathStroke()
Dfx_ge_path.cpp192 CFX_FloatRect CFX_PathData::GetBoundingBox() const { in GetBoundingBox() function in CFX_PathData
338 CFX_FloatRect CFX_PathData::GetBoundingBox(FX_FLOAT line_width, in GetBoundingBox() function in CFX_PathData
/external/pdfium/core/src/fxge/win32/
Dfx_win32_device.cpp860 CFX_FloatRect bbox_f = pPathData->GetBoundingBox(); in DrawPath()
/external/pdfium/xfa/src/fxgraphics/src/
Dfx_graphics.cpp931 CFX_FloatRect rectf = path->GetPathData()->GetBoundingBox(); in FillPathWithPattern()