Lines Matching defs:index
50 void clearCoincidence(int index) {
51 SkASSERT(index >= 0);
52 int bit = 1 << index;
128 bool isCoincident(int index) {
129 return (fIsCoincident[0] & 1 << index) != 0;
155 bool nearlySame(int index) const {
156 SkASSERT(index == 0 || index == 1);
157 return fNearlySame[index];
160 const SkDPoint& pt(int index) const {
161 return fPt[index];
164 const SkDPoint& pt2(int index) const {
165 return fPt2[index];
223 bool unBumpT(int index) {
225 fT[0][index] = fT[0][index] * (1 + BUMP_EPSILON * 2) - BUMP_EPSILON;
226 if (!between(0, fT[0][index], 1)) {
256 // start if index == 0 : end if index == 1
278 void removeOne(int index);
279 void setCoincident(int index);