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