Home | History | Annotate | Download | only in ports

Lines Matching full:curr

106     FamilyRec* curr = gFamilyHead;
107 while (curr != NULL) {
109 if (curr->fFaces[i] == member) {
110 return curr;
113 curr = curr->fNext;
122 FamilyRec* curr = gFamilyHead;
123 while (curr != NULL) {
125 SkTypeface* face = curr->fFaces[i];
130 curr = curr->fNext;
153 FamilyRec* curr = gFamilyHead;
156 while (curr != NULL) {
157 FamilyRec* next = curr->fNext;
158 if (curr == family) {
167 prev = curr;
168 curr = next;