Home | History | Annotate | Download | only in core

Lines Matching defs:index1

88     int index0, index1;
92 index1 = 1;
95 index1 = 0;
105 if (tmp[index1].fY > clip.fBottom) {
106 tmp[index1].set(sect_with_horizontal(src, clip.fBottom), clip.fBottom);
111 index1 = 1;
114 index1 = 0;
118 if ((tmp[index1].fX <= clip.fLeft || tmp[index0].fX >= clip.fRight) &&
119 tmp[index0].fX < tmp[index1].fX) {
127 if (tmp[index1].fX > clip.fRight) {
128 tmp[index1].set(clip.fRight, sect_with_vertical(src, clip.fRight));
153 int index0, index1;
157 index1 = 1;
160 index1 = 0;
165 if (pts[index1].fY <= clip.fTop) { // we're above the clip
182 if (tmp[index1].fY > clip.fBottom) {
183 tmp[index1].set(sect_with_horizontal(pts, clip.fBottom), clip.fBottom);
184 SkASSERT(is_between_unsorted(tmp[index1].fX, pts[0].fX, pts[1].fX));
197 index1 = 1;
201 index1 = 0;
205 if (tmp[index1].fX <= clip.fLeft) { // wholly to the left
227 if (tmp[index1].fX > clip.fRight) {
231 r->set(clip.fRight, tmp[index1].fY);
233 *r = tmp[index1];