Home | History | Annotate | Download | only in core

Lines Matching defs:index1

97     int index0, index1;
101 index1 = 1;
104 index1 = 0;
114 if (tmp[index1].fY > clip.fBottom) {
115 tmp[index1].set(sect_with_horizontal(src, clip.fBottom), clip.fBottom);
120 index1 = 1;
123 index1 = 0;
127 if ((tmp[index1].fX <= clip.fLeft || tmp[index0].fX >= clip.fRight) &&
128 tmp[index0].fX < tmp[index1].fX) {
136 if (tmp[index1].fX > clip.fRight) {
137 tmp[index1].set(clip.fRight, sect_with_vertical(src, clip.fRight));
162 int index0, index1;
166 index1 = 1;
169 index1 = 0;
174 if (pts[index1].fY <= clip.fTop) { // we're above the clip
191 if (tmp[index1].fY > clip.fBottom) {
192 tmp[index1].set(sect_with_horizontal(pts, clip.fBottom), clip.fBottom);
193 SkASSERT(is_between_unsorted(tmp[index1].fX, pts[0].fX, pts[1].fX));
206 index1 = 1;
210 index1 = 0;
214 if (tmp[index1].fX <= clip.fLeft) { // wholly to the left
239 if (tmp[index1].fX > clip.fRight) {
243 r->set(clip.fRight, tmp[index1].fY);
245 *r = tmp[index1];