Lines Matching defs:wr
27 GrWindowRectangles wr;
29 REPORTER_ASSERT(reporter, wr.count() == i);
30 REPORTER_ASSERT(reporter, !memcmp(wr.data(), windowData, i * sizeof(SkIRect)));
32 GrWindowRectangles wr2(wr);
33 REPORTER_ASSERT(reporter, wr2 == wr);
34 REPORTER_ASSERT(reporter, wr2.count() == wr.count());
35 REPORTER_ASSERT(reporter, !memcmp(wr2.data(), wr.data(), i * sizeof(SkIRect)));
37 wr.addWindow(windowData[i]);
40 SkASSERT(wr.count() == GrWindowRectangles::kMaxWindows - 1);
42 GrWindowRectangles A(wr), B(wr);
63 GrWindowRectangles A(wr), B(wr);