Lines Matching refs:kSize
31 static const int kSize = 100;
32 SkLRUCache<int, std::unique_ptr<Value>> test(kSize);
33 for (int i = 1; i < kSize * 2; i++) {
38 if (i > kSize) {
39 REPORTER_ASSERT(r, kSize == instances);
40 REPORTER_ASSERT(r, !test.find(i - kSize));
55 static const int kSize = 5;
56 SkLRUCache<int, std::unique_ptr<Value>> test(kSize);
63 REPORTER_ASSERT(r, kSize == instances);
64 REPORTER_ASSERT(r, kSize == test.count());
65 for (int i = 0; i < kSize; i++) {