Lines Matching refs:hullIntersects
149 bool SkDCubic::hullIntersects(const SkDPoint* pts, int ptCount, bool* isLinear) const { in hullIntersects() function in SkDCubic
198 bool SkDCubic::hullIntersects(const SkDCubic& c2, bool* isLinear) const { in hullIntersects() function in SkDCubic
199 return hullIntersects(c2.fPts, SkDCubic::kPointCount, isLinear); in hullIntersects()
202 bool SkDCubic::hullIntersects(const SkDQuad& quad, bool* isLinear) const { in hullIntersects() function in SkDCubic
203 return hullIntersects(quad.fPts, SkDQuad::kPointCount, isLinear); in hullIntersects()
206 bool SkDCubic::hullIntersects(const SkDConic& conic, bool* isLinear) const { in hullIntersects() function in SkDCubic
208 return hullIntersects(conic.fPts, isLinear); in hullIntersects()
742 bool SkTCubic::hullIntersects(const SkDQuad& quad, bool* isLinear) const { in hullIntersects() function in SkTCubic
743 return quad.hullIntersects(fCubic, isLinear); in hullIntersects()
746 bool SkTCubic::hullIntersects(const SkDConic& conic, bool* isLinear) const { in hullIntersects() function in SkTCubic
747 return conic.hullIntersects(fCubic, isLinear); in hullIntersects()