Lines Matching refs:bounds
141 RenderRegion Paint::Impl::bounds(RenderMethod* renderer) const in bounds() function in Paint::Impl
144 PAINT_METHOD(ret, bounds(renderer)); in bounds()
218 PAINT_METHOD(region, bounds(renderer)); in render()
220 … if (MASK_REGION_MERGING(compData->method)) region.add(P(compData->target)->bounds(renderer)); in render()
313 bool Paint::Impl::bounds(float* x, float* y, float* w, float* h, bool transformed, bool stroking, b… in bounds() function in Paint::Impl
320 PAINT_METHOD(ret, bounds(x, y, w, h, stroking)); in bounds()
330 PAINT_METHOD(ret, bounds(&tx, &ty, &tw, &th, stroking)); in bounds()
435 TVG_DEPRECATED Result Paint::bounds(float* x, float* y, float* w, float* h) const noexcept in bounds() function in Paint
437 return this->bounds(x, y, w, h, false); in bounds()
441 Result Paint::bounds(float* x, float* y, float* w, float* h, bool transformed) const noexcept in bounds() function in Paint
443 if (pImpl->bounds(x, y, w, h, transformed, true, transformed)) return Result::Success; in bounds()