Home | History | Annotate | Download | only in tests

Lines Matching refs:pr

27         SkAutoTUnref<SkMallocPixelRef> pr(
30 REPORTER_ASSERT(reporter, NULL == pr.get());
36 SkAutoTUnref<SkMallocPixelRef> pr(
39 REPORTER_ASSERT(reporter, NULL == pr.get());
45 SkAutoTUnref<SkMallocPixelRef> pr(
48 REPORTER_ASSERT(reporter, NULL == pr.get());
54 SkAutoTUnref<SkMallocPixelRef> pr(
56 REPORTER_ASSERT(reporter, pr.get() != NULL);
57 REPORTER_ASSERT(reporter, memory.get() == pr->pixels());
60 SkAutoTUnref<SkMallocPixelRef> pr(
62 REPORTER_ASSERT(reporter, pr.get() != NULL);
63 REPORTER_ASSERT(reporter, pr->pixels());
67 SkAutoTUnref<SkMallocPixelRef> pr(
70 REPORTER_ASSERT(reporter, pr.get() != NULL);
71 REPORTER_ASSERT(reporter, addr == pr->pixels());
76 SkAutoTUnref<SkMallocPixelRef> pr(
80 REPORTER_ASSERT(reporter, pr.get() != NULL);
81 REPORTER_ASSERT(reporter, memory.get() == pr->pixels());
83 pr.reset(NULL);
90 SkAutoTUnref<SkMallocPixelRef> pr(
93 REPORTER_ASSERT(reporter, addr == pr->pixels());
99 SkAutoTUnref<SkMallocPixelRef> pr(
104 REPORTER_ASSERT(reporter, dataPtr->data() == pr->pixels());