Lines Matching refs:fIndices
138 *fIndices.push() = i0;
139 *fIndices.push() = i1;
140 *fIndices.push() = i2;
147 fIndices.rewind();
274 fIndices.rewind();
399 fIndices.setReserve(18*path.countPoints() + 6);
845 SkASSERT(0 == (fIndices.count() % 3));
1086 for (int i = 0; i < fIndices.count(); i += 3) {
1087 SkASSERT(fIndices[i] < this->numPts()) ;
1088 SkASSERT(fIndices[i+1] < this->numPts()) ;
1089 SkASSERT(fIndices[i+2] < this->numPts()) ;
1092 this->point(this->fIndices[i]), this->point(this->fIndices[i+1]),
1095 this->point(this->fIndices[i+1]), this->point(this->fIndices[i+2]),
1098 this->point(this->fIndices[i+2]), this->point(this->fIndices[i]),