/external/chromium_org/third_party/WebKit/Source/wtf/ |
D | DoublyLinkedList.h | 87 T* m_head; 92 : m_head(0) in DoublyLinkedList() 99 return !m_head; in isEmpty() 105 for (T* node = m_head; node; node = node->next()) in size() 112 m_head = 0; in clear() 118 return m_head; in head() 128 if (!m_head) { in push() 130 m_head = node; in push() 138 m_head->setPrev(node); in push() 139 node->setNext(m_head); in push() [all …]
|
D | LinkedStack.h | 66 OwnPtr<Node> m_head; 80 return !m_head; in isEmpty() 86 m_head = adoptPtr(new Node(data, m_head.release())); in push() 93 return m_head->m_data; in peek() 99 ASSERT(m_head && m_size); in pop() 100 m_head = m_head->m_next.release(); in pop()
|
D | ListHashSet.h | 164 Node* m_head; variable 361 ASSERT(m_position != m_set->m_head); 475 m_position = m_set->m_head; 512 : m_head(0) in ListHashSet() 519 : m_head(0) in ListHashSet() 539 std::swap(m_head, other.m_head); in swap() 575 for (Node* node = m_head; node; node = node->m_next) { in sizeInBytes() 585 return makeIterator(m_head); in begin() 597 return makeConstIterator(m_head); in begin() 634 return m_head->m_value; in first() [all …]
|
/external/emma/core/java12/com/vladium/emma/report/html/doc/ |
D | HTMLDocument.java | 32 super.add (m_head = IElement.Factory.create (Tag.HEAD)); in HTMLDocument() 44 m_head.add (meta); in HTMLDocument() 53 m_head.add (titleElement); in HTMLDocument() 66 return m_head; in getHead() 131 m_head.add (style); in addStyle() 148 m_head.add (link); in addLINK() 194 private final IElement m_head; field in HTMLDocument
|
/external/chromium_org/third_party/WebKit/Source/core/fetch/ |
D | MemoryCache.cpp | 276 if (m_allResources[i].m_head) in pruneDeadResources() 346 for (Resource* current = list->m_head; current; current = current->m_nextInAllResourcesList) { in removeFromLRUList() 358 if (!next && !prev && list->m_head != resource) in removeFromLRUList() 371 else if (list->m_head == resource) in removeFromLRUList() 372 list->m_head = next; in removeFromLRUList() 384 resource->m_nextInAllResourcesList = list->m_head; in insertInLRUList() 385 if (list->m_head) in insertInLRUList() 386 list->m_head->m_prevInAllResourcesList = resource; in insertInLRUList() 387 list->m_head = resource; in insertInLRUList() 396 for (Resource* current = list->m_head; current; current = current->m_nextInAllResourcesList) { in insertInLRUList() [all …]
|
D | MemoryCache.h | 71 Resource* m_head; member 73 LRUList() : m_head(0), m_tail(0) { } in LRUList()
|
/external/opencv/cv/src/ |
D | _cvlist.h | 77 CVPOS m_head; member 167 pl->m_head.m_pos = NULL;\ 186 return l->m_head;\ 224 l->m_head.m_pos = NULL;\ 234 element->m_next = (ELEMENT_##type*)(l->m_head.m_pos);\ 244 l->m_head.m_pos = element;\ 245 return l->m_head;\ 260 l->m_head.m_pos = element;\ 267 ELEMENT_##type* element = ((ELEMENT_##type*)(l->m_head.m_pos));\ 272 l->m_head.m_pos = element->m_next;\ [all …]
|
/external/clang/test/CXX/temp/temp.decls/temp.variadic/ |
D | example-tuple.cpp | 70 : m_head(v), inherited(vtail...) { } in tuple() 74 : m_head(other.head()), inherited(other.tail()) { } in tuple() 78 m_head = other.head(); in operator =() 83 typename add_reference<Head>::type head() { return m_head; } in head() 84 typename add_reference<const Head>::type head() const { return m_head; } in head() 89 Head m_head; member in tuple
|
D | example-bind.cpp | 70 : m_head(v), inherited(vtail...) { } in tuple() 74 : m_head(other.head()), inherited(other.tail()) { } in tuple() 78 m_head = other.head(); in operator =() 83 typename add_reference<Head>::type head() { return m_head; } in head() 84 typename add_reference<const Head>::type head() const { return m_head; } in head() 89 Head m_head; member in tuple
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
D | RenderTable.h | 154 RenderTableSection* header() const { return m_head; } in header() 243 bool hasSections() const { return m_head || m_foot || m_firstBody; } in hasSections() 320 mutable RenderTableSection* m_head; variable 345 if (m_head) in topSection() 346 return m_head; in topSection()
|
D | RenderTable.cpp | 57 , m_head(0) in RenderTable() 132 resetSectionPointerIfNotBefore(m_head, beforeChild); in addChild() 133 if (!m_head) { in addChild() 134 m_head = toRenderTableSection(child); in addChild() 900 m_head = 0; in recalcSections() 917 if (!m_head) in recalcSections() 918 m_head = section; in recalcSections() 1195 if (section == m_head) in sectionAbove() 1200 …if (prevSection->isTableSection() && prevSection != m_head && prevSection != m_foot && (skipEmptyS… in sectionAbove() 1204 … if (!prevSection && m_head && (skipEmptySections == DoNotSkipEmptySections || m_head->numRows())) in sectionAbove() [all …]
|
/external/chromium_org/third_party/WebKit/Source/core/html/parser/ |
D | HTMLConstructionSite.h | 177 Element* head() const { return m_head->element(); } 178 HTMLStackItem* headStackItem() const { return m_head.get(); } 234 RefPtr<HTMLStackItem> m_head;
|
D | HTMLConstructionSite.cpp | 581 m_head = HTMLStackItem::create(createHTMLElement(token), token); in insertHTMLHeadElement() 582 attachLater(currentNode(), m_head->element()); in insertHTMLHeadElement() 583 m_openElements.pushHTMLHeadElement(m_head); in insertHTMLHeadElement()
|