Lines Matching full:fhead
107 SkJSON::Object::Iter::Iter(const Object& obj) : fSlot(obj.fHead) {}
166 SkJSON::Object::Object() : fHead(NULL), fTail(NULL) {
170 SkJSON::Object::Object(const Object& other) : fHead(NULL), fTail(NULL) {
200 Slot* slot = fHead;
211 for (const Slot* slot = fHead; slot; slot = slot->fNext) {
219 if (NULL == fHead) {
221 fHead = fTail = slot;
259 for (const Slot* slot = fHead; slot; slot = slot->fNext) {
340 Slot* slot = fHead;
345 SkASSERT(fHead != slot);
348 SkASSERT(fHead == slot);
349 fHead = next;
380 for (Slot* slot = fHead; slot; slot = slot->fNext) {