Home
last modified time | relevance | path

Searched refs:fPathHeap (Results 1 – 5 of 5) sorted by relevance

/external/skia/src/core/
DSkPicturePlayback.h78 return (*fPathHeap)[getInt() - 1]; in getPath()
160 SkPathHeap* fPathHeap; // reference counted
DSkPicturePlayback.cpp117 fPathHeap = record.fPathHeap; in SkPicturePlayback()
118 SkSafeRef(fPathHeap); in SkPicturePlayback()
192 fPathHeap = src.fPathHeap; in SkPicturePlayback()
193 SkSafeRef(fPathHeap); in SkPicturePlayback()
213 fPathHeap = NULL; in init()
230 SkSafeUnref(fPathHeap); in ~SkPicturePlayback()
246 fPathHeap ? fPathHeap->count() : 0, in dumpSize()
347 int count = fPathHeap ? fPathHeap->count() : 0; in serialize()
350 fPathHeap->flatten(buffer); in serialize()
462 fPathHeap = SkNEW_ARGS(SkPathHeap, (buffer)); in SkPicturePlayback()
DSkPictureRecord.cpp25 fPathHeap = NULL; // lazy allocate in SkPictureRecord()
489 SkSafeUnref(fPathHeap); in reset()
490 fPathHeap = NULL; in reset()
528 if (NULL == fPathHeap) { in addPath()
529 fPathHeap = SkNEW(SkPathHeap); in addPath()
531 addInt(fPathHeap->append(path)); in addPath()
DSkPictureRecord.h181 SkPathHeap* fPathHeap; // reference counted variable
/external/skia/tests/
DCanvasTest.cpp492 !referenceRecord->fPathHeap == in AssertFlattenedObjectsEqual()
493 !testRecord->fPathHeap, in AssertFlattenedObjectsEqual()