Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(391)

Side by Side Diff: tests/LListTest.cpp

Issue 841263004: Simplify SkInstCnt (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: T:: Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « tests/GrMemoryPoolTest.cpp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 "SkRandom.h" 8 #include "SkRandom.h"
9 #include "SkTInternalLList.h" 9 #include "SkTInternalLList.h"
10 #include "SkTLList.h" 10 #include "SkTLList.h"
11 #include "Test.h" 11 #include "Test.h"
12 12
13 class ListElement { 13 class ListElement {
14 public: 14 public:
15 ListElement(int id) : fID(id) { 15 ListElement(int id) : fID(id) {
16 } 16 }
17 bool operator== (const ListElement& other) { return fID == other.fID; } 17 bool operator== (const ListElement& other) { return fID == other.fID; }
18 18
19 #if SK_ENABLE_INST_COUNT 19 #if SK_ENABLE_INST_COUNT
20 // Make the instance count available publicly. 20 // Make the instance count available publicly.
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(ListElement);
28 SK_DECLARE_INTERNAL_LLIST_INTERFACE(ListElement); 28 SK_DECLARE_INTERNAL_LLIST_INTERFACE(ListElement);
29 }; 29 };
30 30
31 static void check_list(const SkTInternalLList<ListElement>& list, 31 static void check_list(const SkTInternalLList<ListElement>& list,
32 skiatest::Reporter* reporter, 32 skiatest::Reporter* reporter,
33 bool empty, 33 bool empty,
34 int numElements, 34 int numElements,
35 bool in0, bool in1, bool in2, bool in3, 35 bool in0, bool in1, bool in2, bool in3,
36 ListElement elements[4]) { 36 ListElement elements[4]) {
37 37
(...skipping 269 matching lines...) Expand 10 before | Expand all | Expand 10 after
307 #if SK_ENABLE_INST_COUNT 307 #if SK_ENABLE_INST_COUNT
308 SkASSERT(0 == ListElement::InstanceCount()); 308 SkASSERT(0 == ListElement::InstanceCount());
309 #endif 309 #endif
310 } 310 }
311 } 311 }
312 312
313 DEF_TEST(LList, reporter) { 313 DEF_TEST(LList, reporter) {
314 TestTInternalLList(reporter); 314 TestTInternalLList(reporter);
315 TestTLList(reporter); 315 TestTLList(reporter);
316 } 316 }
OLDNEW
« no previous file with comments | « tests/GrMemoryPoolTest.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698