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

/external/skia/src/core/
H A DSkPicturePlayback.h78 return (*fPathHeap)[getInt() - 1];
160 SkPathHeap* fPathHeap; // reference counted member in class:SkPicturePlayback
H A DSkPicturePlayback.cpp117 fPathHeap = record.fPathHeap;
118 SkSafeRef(fPathHeap);
192 fPathHeap = src.fPathHeap;
193 SkSafeRef(fPathHeap);
213 fPathHeap = NULL;
230 SkSafeUnref(fPathHeap);
246 fPathHeap ? fPathHeap
[all...]
H A DSkPictureRecord.cpp25 fPathHeap = NULL; // lazy allocate
489 SkSafeUnref(fPathHeap);
490 fPathHeap = NULL;
528 if (NULL == fPathHeap) {
529 fPathHeap = SkNEW(SkPathHeap);
531 addInt(fPathHeap->append(path));
H A DSkPictureRecord.h181 SkPathHeap* fPathHeap; // reference counted member in class:SkPictureRecord
/external/skia/tests/
H A DCanvasTest.cpp492 !referenceRecord->fPathHeap ==
493 !testRecord->fPathHeap,
498 if (referenceRecord->fPathHeap) {
500 referenceRecord->fPathHeap->count() ==
501 testRecord->fPathHeap->count(),
503 for (int i = 0; i < referenceRecord->fPathHeap->count(); ++i) {
505 (*referenceRecord->fPathHeap)[i] ==
506 (*testRecord->fPathHeap)[i], testStep->assertMessage());

Completed in 436 milliseconds