Lines Matching refs:result
1357 result is computed as:
1367 SkPoint result;
1368 this->mapXY(pt.x(), pt.y(), &result);
1369 return result;
1372 /** Maps SkPoint (x, y) to result. SkPoint is mapped by multiplying by SkMatrix. Given:
1378 result is computed as:
1386 @param result storage for mapped SkPoint
1390 void mapXY(SkScalar x, SkScalar y, SkPoint* result) const;
1398 result is computed as:
1409 SkPoint result;
1410 this->mapXY(x,y, &result);
1411 return result;
1421 result is computed as:
1486 each result vector is computed as:
1499 /** Maps vector (dx, dy) to result. Vector is mapped by multiplying by SkMatrix,
1506 each result vector is computed as:
1514 @param result storage for mapped vector
1516 void mapVector(SkScalar dx, SkScalar dy, SkVector* result) const {
1518 this->mapVectors(result, &vec, 1);
1528 each result vector is computed as:
1566 @return true if result is equivalent to mapped rect
1609 Note: this does not perform perspective clipping (as that might result in more than
1630 size radius, and mapping constructed circle with SkMatrix. The result squared is
1775 SkMatrix result;
1776 result.setConcat(a, b);
1777 return result;
1921 SkPoint* result);