Home | History | Annotate | Download | only in tests

Lines Matching defs:Value

11 struct Value {
12 Value(int value, int* counter)
13 : fValue(value)
18 ~Value() {
30 SkLRUCache<int, std::unique_ptr<Value>> test(kSize);
33 test.insert(i, std::unique_ptr<Value>(new Value(i * i, &instances)));
54 SkLRUCache<int, std::unique_ptr<Value>> test(kSize);
58 test.insert(k, std::unique_ptr<Value>(new Value(k, &instances)));