Home
last modified time | relevance | path

Searched refs:DeprecatedListNode (Results 1 – 2 of 2) sorted by relevance

/external/webkit/WebCore/platform/
DDeprecatedPtrListImpl.cpp36 class DeprecatedListNode : public Noncopyable class
39 DeprecatedListNode(void *d) : data(d), next(0), prev(0) { } in DeprecatedListNode() function in WebCore::DeprecatedListNode
42 DeprecatedListNode *next;
43 DeprecatedListNode *prev;
47 static DeprecatedListNode *copyList(DeprecatedListNode *l, DeprecatedListNode *&tail) in copyList()
49 DeprecatedListNode *node = l; in copyList()
50 DeprecatedListNode *copyHead = 0; in copyList()
51 DeprecatedListNode *last = 0; in copyList()
54 DeprecatedListNode *copy = new DeprecatedListNode(node->data); in copyList()
107 DeprecatedListNode *next; in clear()
[all …]
DDeprecatedPtrListImpl.h31 class DeprecatedListNode; variable
83 DeprecatedListNode *head;
84 DeprecatedListNode *tail;
85 DeprecatedListNode *cur;
113 DeprecatedListNode *node;