Home | History | Annotate | Download | only in ports

Lines Matching full:curr

107     FamilyRec* curr = gFamilyHead;
108 while (curr != NULL) {
110 if (curr->fFaces[i] == member) {
111 return curr;
114 curr = curr->fNext;
120 FamilyRec* curr = gFamilyHead;
121 while (curr != NULL) {
123 SkTypeface* face = curr->fFaces[i];
128 curr = curr->fNext;
155 FamilyRec* curr = gFamilyHead;
158 while (curr != NULL) {
159 FamilyRec* next = curr->fNext;
160 if (curr == family) {
169 prev = curr;
170 curr = next;