HomeSort by relevance Sort by last modified time
    Searched refs:m_tail (Results 1 - 7 of 7) 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/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/history/
PageCache.h 85 HistoryItem* m_tail; member in class:WebCore::PageCache
PageCache.cpp 241 , m_tail(0)
403 ASSERT(m_tail && m_tail->m_cachedPage);
404 remove(m_tail);
414 ASSERT(m_tail);
417 ASSERT(!m_tail);
418 m_tail = item;
427 ASSERT(item == m_tail);
428 m_tail = item->m_prev;
430 ASSERT(item != m_tail);
    [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) { }
MemoryCache.cpp 186 CachedResource* current = m_liveDecodedResources.m_tail;
223 CachedResource* current = m_allResources[i].m_tail;
242 CachedResource* current = m_allResources[i].m_tail;
262 current = m_allResources[i].m_tail;
418 else if (list->m_tail == resource)
419 list->m_tail = prev;
442 list->m_tail = resource;
533 else if (m_liveDecodedResources.m_tail == resource)
534 m_liveDecodedResources.m_tail = prev;
554 m_liveDecodedResources.m_tail = resource
    [all...]

Completed in 183 milliseconds