Home | History | Annotate | Download | only in core

Lines Matching refs:rec

21 SkGlobals::Rec::~Rec()
25 SkGlobals::Rec* SkGlobals::Find(uint32_t tag, Rec* (*create_proc)())
29 Rec* rec = bootstrap.fHead;
30 while (rec)
32 if (rec->fTag == tag)
33 return rec;
34 rec = rec->fNext;
48 Rec*& head = bootstrap.fHead;
49 rec = head;
50 while (rec)
52 if (rec->fTag == tag)
54 rec = rec->fNext;
57 if (rec == NULL && (rec = create_proc()) != NULL)
59 rec->fTag = tag;
60 rec->fNext = head;
61 bootstrap.fHead = rec;
65 return rec;
78 Rec*& head = bootstrap.fHead;
79 Rec* rec = head;
81 while (rec)
83 Rec* next = rec->fNext;
84 SkDELETE(rec);
85 rec = next;