Home | History | Annotate | Download | only in core

Lines Matching refs:proc

114     //! If the proc is found, return true and set *dataPtr to its data
116 //! Add a proc/data pair to the glyphcache. proc should be non-null
118 //! If found, remove the proc/data pair from the glyphcache (does not
119 // call the proc)
122 /** Call proc on all cache entries, stopping early if proc returns true.
123 The proc should not create or delete caches, since it could produce
126 static void VisitAllCaches(bool (*proc)(SkGlyphCache*, void*), void* ctx);
128 /** Find a matching cache entry, and call proc() with it. If none is found
129 create a new one. If the proc() returns true, detach the cache and
133 bool (*proc)(const SkGlyphCache*, void*),