HomeSort by relevance Sort by last modified time
    Searched defs:m_tail (Results 1 - 5 of 5) sorted by null

  /external/webkit/Source/JavaScriptCore/wtf/
DoublyLinkedList.h 44 Node* m_tail; member in class:WTF::DoublyLinkedList
49 , m_tail(0)
65 if (!m_tail) {
68 m_tail = node;
75 m_tail->setNext(node);
76 node->setPrev(m_tail);
78 m_tail = node;
92 ASSERT(node != m_tail);
95 ASSERT(node == m_tail);
96 m_tail = node->prev()
    [all...]
ListHashSet.h 135 Node* m_tail; member in class:WTF::ListHashSet
335 m_position = m_set->m_tail;
378 , m_tail(0)
386 , m_tail(0)
407 std::swap(m_tail, other.m_tail);
477 return m_tail->m_value;
484 return m_tail->m_value;
491 m_impl.remove(m_tail);
492 unlinkAndDelete(m_tail);
    [all...]
  /external/webkit/Source/WebCore/history/
PageCache.h 85 HistoryItem* m_tail; member in class:WebCore::PageCache
  /external/opencv/cv/src/
_cvlist.h 78 CVPOS m_tail; member in struct:_list
168 pl->m_tail.m_pos = NULL;\
190 return l->m_tail;\
225 l->m_tail.m_pos = NULL;\
242 l->m_tail.m_pos = element;\
252 element->m_prev = (ELEMENT_##type*)(l->m_tail.m_pos);\
262 l->m_tail.m_pos = element;\
263 return l->m_tail;\
278 ELEMENT_##type* element = ((ELEMENT_##type*)(l->m_tail.m_pos));\
283 l->m_tail.m_pos = element->m_prev;
    [all...]
  /external/webkit/Source/WebCore/loader/cache/
MemoryCache.h 84 CachedResource* m_tail; member in struct:WebCore::MemoryCache::LRUList
85 LRUList() : m_head(0), m_tail(0) { }

Completed in 163 milliseconds