Home
last modified time | relevance | path

Searched refs:DoublyLinkedListNode (Results 1 – 6 of 6) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/wtf/
DDoublyLinkedList.h32 template<typename T> class DoublyLinkedListNode {
34 DoublyLinkedListNode();
43 template<typename T> inline DoublyLinkedListNode<T>::DoublyLinkedListNode() in DoublyLinkedListNode() function
49 template<typename T> inline void DoublyLinkedListNode<T>::setPrev(T* prev) in setPrev()
54 template<typename T> inline void DoublyLinkedListNode<T>::setNext(T* next) in setNext()
59 template<typename T> inline T* DoublyLinkedListNode<T>::prev() const in prev()
64 template<typename T> inline T* DoublyLinkedListNode<T>::next() const in next()
191 using WTF::DoublyLinkedListNode;
DThreadSpecificWin.cpp45 class PlatformThreadSpecificKey : public DoublyLinkedListNode<PlatformThreadSpecificKey> {
47 friend class DoublyLinkedListNode<PlatformThreadSpecificKey>;
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
DCanvas2DLayerBridge.h51 …eLayerClient, public SkDeferredCanvas::NotificationClient, public DoublyLinkedListNode<Canvas2DLay…
100 friend class WTF::DoublyLinkedListNode<Canvas2DLayerBridge>;
DImageDecodingStore.h152 class CacheEntry : public DoublyLinkedListNode<CacheEntry> {
153 friend class WTF::DoublyLinkedListNode<CacheEntry>;
/external/chromium_org/third_party/WebKit/Source/core/dom/shadow/
DShadowRoot.h45 class ShadowRoot FINAL : public DocumentFragment, public TreeScope, public DoublyLinkedListNode<Sha…
46 friend class WTF::DoublyLinkedListNode<ShadowRoot>;
DShadowRoot.cpp44 …eAsShadowRoot : public DocumentFragment, public TreeScope, public DoublyLinkedListNode<ShadowRoot>…