Lines Matching full:rc0
27 SkRefPtr<RefClass> rc0;
28 REPORTER_ASSERT(reporter, rc0.get() == NULL);
29 REPORTER_ASSERT(reporter, !rc0);
32 REPORTER_ASSERT(reporter, rc0 == rc1);
33 REPORTER_ASSERT(reporter, rc0.get() != r0);
35 rc0 = r0;
36 REPORTER_ASSERT(reporter, rc0);
37 REPORTER_ASSERT(reporter, rc0 != rc1);
38 REPORTER_ASSERT(reporter, rc0.get() == r0);
40 rc1 = rc0;
42 REPORTER_ASSERT(reporter, rc0 == rc1);
43 REPORTER_ASSERT(reporter, rc0.get() == r0);
45 rc0 = NULL;
46 REPORTER_ASSERT(reporter, rc0.get() == NULL);
47 REPORTER_ASSERT(reporter, !rc0);
48 REPORTER_ASSERT(reporter, rc0 != rc1);