Home | History | Annotate | Download | only in ports

Lines Matching full:curr

117     FamilyRec* curr = gFamilyHead;
118 while (curr != NULL) {
120 if (curr->fFaces[i] == member) {
121 return curr;
124 curr = curr->fNext;
130 FamilyRec* curr = gFamilyHead;
131 while (curr != NULL) {
133 SkTypeface* face = curr->fFaces[i];
138 curr = curr->fNext;
165 FamilyRec* curr = gFamilyHead;
168 while (curr != NULL) {
169 FamilyRec* next = curr->fNext;
170 if (curr == family) {
179 prev = curr;
180 curr = next;