Home | History | Annotate | Download | only in core

Lines Matching refs:rec

24     class Rec {
26 virtual ~Rec();
28 Rec* fNext;
34 /** Look for a matching Rec for the specified tag. If one is found, return it.
36 call the proc, and if it returns a Rec, add it to the global list
41 static Rec* Find(uint32_t tag, Rec* (*create_proc)());
42 /** Helper for Find, when you want to assert that the Rec is already in the list
44 static Rec* Get(uint32_t tag)
46 Rec* rec = SkGlobals::Find(tag, NULL);
47 SkASSERT(rec);
48 return rec;
54 Rec* fHead;