Home | History | Annotate | Download | only in tests

Lines Matching refs:array

88         SkTDArray<Dummy> array;
89 array.setReserve(count);
91 Dummy* dummy = array.append();
96 array.pop();
104 pq.insert(&array[j]);
106 REPORTER_ASSERT(reporter, pq.count() == array.count());
109 REPORTER_ASSERT(reporter, -1 != array[j].fIndex);
117 REPORTER_ASSERT(reporter, kSentinel == array[k] ||
118 array[k].fPriority >= top->fPriority);
125 REPORTER_ASSERT(reporter, array.begin() <= top && top < array.end());
134 } while (array[item] == kSentinel);
135 pq.remove(&array[item]);
136 array[item] = kSentinel;
143 } while (array[item] == kSentinel);
144 array[item].fPriority = random.nextS();
145 pq.priorityDidChange(&array[item]);