Lines Matching defs:last
316 SkPoint last;
324 path.getLastPt(&last);
325 REPORTER_ASSERT(reporter, 50 == last.fX);
326 REPORTER_ASSERT(reporter, 50 == last.fY);
335 path.getLastPt(&last);
336 REPORTER_ASSERT(reporter, 75 == last.fX);
337 REPORTER_ASSERT(reporter, 75 == last.fY);
346 path.getLastPt(&last);
347 REPORTER_ASSERT(reporter, 85 == last.fX);
348 REPORTER_ASSERT(reporter, 85 == last.fY);
357 path.getLastPt(&last);
358 REPORTER_ASSERT(reporter, 95 == last.fX);
359 REPORTER_ASSERT(reporter, 95 == last.fY);
5746 * not empty, but its last contour has been "closed", then it will inject a moveTo corresponding
5747 * to where the last contour itself started (i.e. its moveTo).
5759 * Given a path, and the expected last-point and last-move-to in it,
5787 path2.addPath(path1); // this must correctly update its "last-move-to" so that when
5873 // There had been a bug when the last moveTo index > 0, the calculated point count was incorrect