| 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 #ifndef SkTLList_DEFINED | 8 #ifndef SkTLList_DEFINED |
| 9 #define SkTLList_DEFINED | 9 #define SkTLList_DEFINED |
| 10 | 10 |
| 11 #include "SkTInternalLList.h" | 11 #include "SkTInternalLList.h" |
| 12 #include "SkTemplates.h" | 12 #include "SkTypes.h" |
| 13 | 13 |
| 14 template <typename T> class SkTLList; | 14 template <typename T> class SkTLList; |
| 15 template <typename T> | 15 template <typename T> |
| 16 inline void* operator new(size_t, SkTLList<T>* list, | 16 inline void* operator new(size_t, SkTLList<T>* list, |
| 17 typename SkTLList<T>::Placement placement, | 17 typename SkTLList<T>::Placement placement, |
| 18 const typename SkTLList<T>::Iter& location); | 18 const typename SkTLList<T>::Iter& location); |
| 19 | 19 |
| 20 /** Doubly-linked list of objects. The objects' lifetimes are controlled by the
list. I.e. the | 20 /** Doubly-linked list of objects. The objects' lifetimes are controlled by the
list. I.e. the |
| 21 the list creates the objects and they are deleted upon removal. This class b
lock-allocates | 21 the list creates the objects and they are deleted upon removal. This class b
lock-allocates |
| 22 space for entries based on a param passed to the constructor. | 22 space for entries based on a param passed to the constructor. |
| (...skipping 371 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 394 #define SkNEW_INSERT_IN_LLIST_AFTER(list, location, type_name, args) \ | 394 #define SkNEW_INSERT_IN_LLIST_AFTER(list, location, type_name, args) \ |
| 395 (new ((list), SkTLList< type_name >::kAfter_Placement, (location)) type_name
args) | 395 (new ((list), SkTLList< type_name >::kAfter_Placement, (location)) type_name
args) |
| 396 | 396 |
| 397 #define SkNEW_INSERT_AT_LLIST_HEAD(list, type_name, args) \ | 397 #define SkNEW_INSERT_AT_LLIST_HEAD(list, type_name, args) \ |
| 398 SkNEW_INSERT_IN_LLIST_BEFORE((list), (list)->headIter(), type_name, args) | 398 SkNEW_INSERT_IN_LLIST_BEFORE((list), (list)->headIter(), type_name, args) |
| 399 | 399 |
| 400 #define SkNEW_INSERT_AT_LLIST_TAIL(list, type_name, args) \ | 400 #define SkNEW_INSERT_AT_LLIST_TAIL(list, type_name, args) \ |
| 401 SkNEW_INSERT_IN_LLIST_AFTER((list), (list)->tailIter(), type_name, args) | 401 SkNEW_INSERT_IN_LLIST_AFTER((list), (list)->tailIter(), type_name, args) |
| 402 | 402 |
| 403 #endif | 403 #endif |
| OLD | NEW |