| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2012 Google Inc. | 2 * Copyright 2012 Google Inc. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
| 5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
| 6 */ | 6 */ |
| 7 | 7 |
| 8 #include "Test.h" | 8 #include "Test.h" |
| 9 #include "SkRandom.h" | 9 #include "SkRandom.h" |
| 10 #include "SkTInternalLList.h" | 10 #include "SkTInternalLList.h" |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 static int InstanceCount() { return GetInstanceCount(); } | 21 static int InstanceCount() { return GetInstanceCount(); } |
| 22 #endif | 22 #endif |
| 23 | 23 |
| 24 int fID; | 24 int fID; |
| 25 | 25 |
| 26 private: | 26 private: |
| 27 SK_DECLARE_INST_COUNT_ROOT(ListElement); | 27 SK_DECLARE_INST_COUNT_ROOT(ListElement); |
| 28 SK_DECLARE_INTERNAL_LLIST_INTERFACE(ListElement); | 28 SK_DECLARE_INTERNAL_LLIST_INTERFACE(ListElement); |
| 29 }; | 29 }; |
| 30 | 30 |
| 31 SK_DEFINE_INST_COUNT(ListElement); | |
| 32 | |
| 33 static void check_list(const SkTInternalLList<ListElement>& list, | 31 static void check_list(const SkTInternalLList<ListElement>& list, |
| 34 skiatest::Reporter* reporter, | 32 skiatest::Reporter* reporter, |
| 35 bool empty, | 33 bool empty, |
| 36 int numElements, | 34 int numElements, |
| 37 bool in0, bool in1, bool in2, bool in3, | 35 bool in0, bool in1, bool in2, bool in3, |
| 38 ListElement elements[4]) { | 36 ListElement elements[4]) { |
| 39 | 37 |
| 40 REPORTER_ASSERT(reporter, empty == list.isEmpty()); | 38 REPORTER_ASSERT(reporter, empty == list.isEmpty()); |
| 41 #ifdef SK_DEBUG | 39 #ifdef SK_DEBUG |
| 42 list.validate(); | 40 list.validate(); |
| (...skipping 269 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 312 } | 310 } |
| 313 } | 311 } |
| 314 | 312 |
| 315 static void test_llists(skiatest::Reporter* reporter) { | 313 static void test_llists(skiatest::Reporter* reporter) { |
| 316 TestTInternalLList(reporter); | 314 TestTInternalLList(reporter); |
| 317 TestTLList(reporter); | 315 TestTLList(reporter); |
| 318 } | 316 } |
| 319 | 317 |
| 320 #include "TestClassDef.h" | 318 #include "TestClassDef.h" |
| 321 DEFINE_TESTCLASS("LList", TestLListClass, test_llists) | 319 DEFINE_TESTCLASS("LList", TestLListClass, test_llists) |
| OLD | NEW |