Home | History | Annotate | Download | only in tests

Lines Matching full:rc0

20     SkRefPtr<RefClass> rc0;
21 REPORTER_ASSERT(reporter, rc0.get() == NULL);
22 REPORTER_ASSERT(reporter, !rc0);
25 REPORTER_ASSERT(reporter, rc0 == rc1);
26 REPORTER_ASSERT(reporter, rc0.get() != r0);
28 rc0 = r0;
29 REPORTER_ASSERT(reporter, rc0);
30 REPORTER_ASSERT(reporter, rc0 != rc1);
31 REPORTER_ASSERT(reporter, rc0.get() == r0);
33 rc1 = rc0;
35 REPORTER_ASSERT(reporter, rc0 == rc1);
36 REPORTER_ASSERT(reporter, rc0.get() == r0);
38 rc0 = NULL;
39 REPORTER_ASSERT(reporter, rc0.get() == NULL);
40 REPORTER_ASSERT(reporter, !rc0);
41 REPORTER_ASSERT(reporter, rc0 != rc1);