Home | History | Annotate | Download | only in tests

Lines Matching full:nullptr

28             SkMallocPixelRef::NewAllocate(info, info.minRowBytes() - 1, nullptr));
30 REPORTER_ASSERT(reporter, nullptr == pr.get());
37 SkMallocPixelRef::NewWithData(info, rowBytes, nullptr, data));
39 REPORTER_ASSERT(reporter, nullptr == pr.get());
46 SkMallocPixelRef::NewWithData(info, rowBytes, nullptr, data));
48 REPORTER_ASSERT(reporter, nullptr == pr.get());
55 SkMallocPixelRef::NewDirect(info, memory.get(), rowBytes, nullptr));
56 REPORTER_ASSERT(reporter, pr.get() != nullptr);
61 SkMallocPixelRef::NewAllocate(info, rowBytes, nullptr));
62 REPORTER_ASSERT(reporter, pr.get() != nullptr);
68 SkMallocPixelRef::NewWithProc(info, rowBytes, nullptr, addr,
69 delete_uint8_proc, nullptr));
70 REPORTER_ASSERT(reporter, pr.get() != nullptr);
77 SkMallocPixelRef::NewWithProc(info, rowBytes, nullptr,
80 REPORTER_ASSERT(reporter, pr.get() != nullptr);
83 pr.reset(nullptr);
89 REPORTER_ASSERT(reporter, addr != nullptr);
91 SkMallocPixelRef::NewWithProc(info, rowBytes, nullptr, addr,
92 delete_uint8_proc, nullptr));
100 SkMallocPixelRef::NewWithData(info, rowBytes, nullptr, data.get()));
102 data.reset(nullptr);