Home | History | Annotate | Download | only in core

Lines Matching refs:SkFlatDictionary

155 // SkFlatDictionary: is an abstract templated dictionary that maintains a
157 // SkFlatController: is an interface provided to SkFlatDictionary which handles
161 // NOTE: any class that wishes to be used in conjunction with SkFlatDictionary
180 * Return a new block of memory for the SkFlatDictionary to use.
209 * SkFlatDictionary. Needs to be set by the protected setTypefacePlayback
335 template <class T> friend class SkFlatDictionary;
339 class SkFlatDictionary {
343 SkFlatDictionary(SkFlatController* controller, size_t scratchSizeGuess = 0)
366 ~SkFlatDictionary() {
637 class SkMatrixDictionary : public SkFlatDictionary<SkMatrix> {
641 : SkFlatDictionary<SkMatrix>(controller, 36) {
655 class SkPaintDictionary : public SkFlatDictionary<SkPaint> {
659 : SkFlatDictionary<SkPaint>(controller, 512) {
665 class SkRegionDictionary : public SkFlatDictionary<SkRegion> {
668 : SkFlatDictionary<SkRegion>(controller) {