Lines Matching defs:bounds
211 // Won't be needed once we can make path's immutable (with their bounds always computed)
220 rect receives bounds of oval.
247 rrect receives bounds of SkRRect.
277 * the path if its bounds (in device coordinates) is too close to max float.
279 static bool TooBigForMath(const SkRect& bounds) {
285 // use ! expression so we return true if bounds contains NaN
286 return !(bounds.fLeft >= -max && bounds.fTop >= -max &&
287 bounds.fRight <= max && bounds.fBottom <= max);
361 /** Returns equivalent SkPath::FillType representing SkPath fill inside its bounds.