Lines Matching refs:array
13 SkAutoSTMalloc<1, int> array; in test_automalloc_realloc() local
16 array[0] = 1; in test_automalloc_realloc()
17 REPORTER_ASSERT(reporter, array[0] == 1); in test_automalloc_realloc()
20 array.realloc(1); in test_automalloc_realloc()
22 array[0] = 1; in test_automalloc_realloc()
23 REPORTER_ASSERT(reporter, array[0] == 1); in test_automalloc_realloc()
26 array.realloc(2); in test_automalloc_realloc()
27 REPORTER_ASSERT(reporter, array[0] == 1); in test_automalloc_realloc()
30 array.realloc(1); in test_automalloc_realloc()
31 REPORTER_ASSERT(reporter, array[0] == 1); in test_automalloc_realloc()
34 array.realloc(0); in test_automalloc_realloc()
37 array.realloc(10); in test_automalloc_realloc()
39 array[i] = 10 - i; in test_automalloc_realloc()
41 array.realloc(20); in test_automalloc_realloc()
43 REPORTER_ASSERT(reporter, array[i] == 10 - i); in test_automalloc_realloc()
45 array.realloc(10); in test_automalloc_realloc()
47 REPORTER_ASSERT(reporter, array[i] == 10 - i); in test_automalloc_realloc()
50 array.realloc(1); in test_automalloc_realloc()
51 REPORTER_ASSERT(reporter, array[0] = 10); in test_automalloc_realloc()
54 array.reset(0); in test_automalloc_realloc()
55 array.realloc(1); in test_automalloc_realloc()
56 array.reset(1); in test_automalloc_realloc()
58 array[0] = 1; in test_automalloc_realloc()
59 REPORTER_ASSERT(reporter, array[0] == 1); in test_automalloc_realloc()
62 array.reset(2); in test_automalloc_realloc()
63 array.realloc(3); in test_automalloc_realloc()
64 array[0] = 1; in test_automalloc_realloc()
65 REPORTER_ASSERT(reporter, array[0] == 1); in test_automalloc_realloc()
66 array.realloc(1); in test_automalloc_realloc()
67 REPORTER_ASSERT(reporter, array[0] == 1); in test_automalloc_realloc()