Lines Matching defs:bounds
140 SkRect bounds = rect;
141 bounds.outset(rad, rad);
143 // If our caller snaps to pixel centers then we have to round out the bounds
146 viewMatrix.mapRect(&bounds);
150 bounds.setLTRB(SkScalarFloorToScalar(bounds.fLeft),
151 SkScalarFloorToScalar(bounds.fTop),
152 SkScalarFloorToScalar(bounds.fRight),
153 SkScalarFloorToScalar(bounds.fBottom));
154 bounds.offset(0.5f, 0.5f);
155 this->setBounds(bounds, HasAABloat::kNo, IsHairline::kNo);
158 this->setTransformedBounds(bounds, fViewMatrix, aaBloat,
484 SkRect bounds = info.fDevOutside;
485 bounds.joinPossiblyEmptyRect(info.fDevOutsideAssist);
486 this->setBounds(bounds, HasAABloat::kYes, IsHairline::kNo);
774 if (!fHelper.isCompatible(that->fHelper, caps, this->bounds(), that->bounds())) {