/external/webkit/JavaScriptCore/profiler/ |
D | Profile.cpp | 52 m_head = ProfileNode::create(CallIdentifier("Thread_1", 0, 0), 0, 0); in Profile() 61 ProfileNode* currentNode = m_head->firstChild(); in forEach() 66 currentNode = m_head.get(); in forEach() 68 ProfileNode* endNode = m_head->traverseNextNodePostOrder(); in forEach() 77 if (!profileNode || !m_head) in focus() 82 …for (ProfileNode* currentNode = m_head.get(); currentNode; currentNode = currentNode->traverseNext… in focus() 91 if (!profileNode || !m_head) in exclude() 96 …for (ProfileNode* currentNode = m_head.get(); currentNode; currentNode = currentNode->traverseNext… in exclude() 100 m_head->setVisibleTotalTime(m_head->totalTime() - m_head->selfTime()); in exclude() 101 m_head->setVisibleSelfTime(0.0); in exclude() [all …]
|
D | ProfileGenerator.cpp | 52 m_currentNode = m_head = m_profile->head(); in ProfileGenerator() 65 …), function ? function.toThisObject(exec) : 0, sourceURL, lineNumber), m_head.get(), m_head.get()); in addParentForConsoleStart() 66 m_head->insertNode(m_currentNode.get()); in addParentForConsoleStart() 102 …RefPtr<ProfileNode> returningNode = ProfileNode::create(callIdentifier, m_head.get(), m_currentNod… in didExecute() 125 if (double headSelfTime = m_head->selfTime()) { in stopProfiling() 126 …> idleNode = ProfileNode::create(CallIdentifier(NonJSExecution, 0, 0), m_head.get(), m_head.get()); in stopProfiling() 132 m_head->setSelfTime(0.0); in stopProfiling() 133 m_head->addChild(idleNode.release()); in stopProfiling() 141 for (ProfileNode* next = m_head.get(); next; next = next->firstChild()) in removeProfileStart() 156 for (ProfileNode* next = m_head.get(); next; next = next->lastChild()) in removeProfileEnd()
|
D | Profile.h | 42 ProfileNode* head() const { return m_head.get(); } in head() 43 void setHead(PassRefPtr<ProfileNode> head) { m_head = head; } in setHead() 44 double totalTime() const { return m_head->totalTime(); } in totalTime() 66 RefPtr<ProfileNode> m_head; variable
|
D | ProfileNode.h | 69 ProfileNode* head() const { return m_head; } in head() 70 void setHead(ProfileNode* head) { m_head = head; } in setHead() 90 …double totalPercent() const { return (m_visibleTotalTime / (m_head ? m_head->totalTime() : totalTi… in totalPercent() 91 …double selfPercent() const { return (m_visibleSelfTime / (m_head ? m_head->totalTime() : totalTime… in selfPercent() 150 ProfileNode* m_head; variable
|
D | ProfileNode.cpp | 58 , m_head(headNode) in ProfileNode() 74 , m_head(headNode) in ProfileNode() 96 …RefPtr<ProfileNode> newChild = ProfileNode::create(callIdentifier, m_head ? m_head : this, this); … in willExecute()
|
D | ProfileGenerator.h | 71 RefPtr<ProfileNode> m_head; variable
|
/external/webkit/WebCore/history/ |
D | PageCache.cpp | 52 , m_head(0) in PageCache() 69 for (HistoryItem* current = m_head; current; current = current->m_next) { in frameCount() 124 item->m_next = m_head; in addToLRUList() 127 if (m_head) { in addToLRUList() 129 m_head->m_prev = item; in addToLRUList() 135 m_head = item; in addToLRUList() 149 ASSERT(item == m_head); in removeFromLRUList() 150 m_head = item->m_next; in removeFromLRUList() 152 ASSERT(item != m_head); in removeFromLRUList()
|
D | PageCache.h | 75 HistoryItem* m_head; variable
|
/external/webkit/WebCore/loader/ |
D | Cache.cpp | 372 if (m_allResources[i].m_head) in pruneDeadResources() 472 …for (CachedResource* current = list->m_head; current; current = current->m_nextInAllResourcesList)… in removeFromLRUList() 484 if (next == 0 && prev == 0 && list->m_head != resource) in removeFromLRUList() 497 else if (list->m_head == resource) in removeFromLRUList() 498 list->m_head = next; in removeFromLRUList() 510 resource->m_nextInAllResourcesList = list->m_head; in insertInLRUList() 511 if (list->m_head) in insertInLRUList() 512 list->m_head->m_prevInAllResourcesList = resource; in insertInLRUList() 513 list->m_head = resource; in insertInLRUList() 522 …for (CachedResource* current = list->m_head; current; current = current->m_nextInAllResourcesList)… in insertInLRUList() [all …]
|
D | Cache.h | 65 CachedResource* m_head; member 67 LRUList() : m_head(0), m_tail(0) { } in LRUList()
|
/external/webkit/JavaScriptCore/wtf/ |
D | ListHashSet.h | 117 Node* m_head; variable 316 ASSERT(m_position != m_set->m_head); 360 : m_head(0) in ListHashSet() 368 : m_head(0) in ListHashSet() 389 std::swap(m_head, other.m_head); in swap() 421 return makeIterator(m_head); in begin() 433 return makeConstIterator(m_head); in begin() 516 m_head = 0; in clear() 524 ASSERT(node == m_head); in unlinkAndDelete() 525 m_head = node->m_next; in unlinkAndDelete() [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/webkit/WebCore/rendering/ |
D | RenderTable.cpp | 53 , m_head(0) in RenderTable() 129 resetSectionPointerIfNotBefore(m_head, beforeChild); in addChild() 130 if (!m_head) { in addChild() 131 m_head = toRenderTableSection(child); in addChild() 420 RenderTableSection* section = m_head ? m_head : (m_firstBody ? m_firstBody : m_foot); in layout() 704 m_head = 0; in recalcSections() 725 if (!m_head) in recalcSections() 726 m_head = section; in recalcSections() 799 … RenderTableSection* firstNonEmptySection = m_head ? m_head : (m_firstBody ? m_firstBody : m_foot); in calcBorderLeft() 858 … RenderTableSection* firstNonEmptySection = m_head ? m_head : (m_firstBody ? m_firstBody : m_foot); in calcBorderRight() [all …]
|
D | RenderTable.h | 83 RenderTableSection* header() const { return m_head; } in header() 136 bool hasSections() const { return m_head || m_foot || m_firstBody; } in hasSections() 186 mutable RenderTableSection* m_head; variable
|
/external/webkit/WebCore/html/ |
D | HTMLParser.cpp | 186 m_head = 0; in reset() 288 if (m_head == n) in parseToken() 289 m_head = 0; in parseToken() 412 if (!m_head) { in handleError() 416 if (m_head) { in handleError() 419 if (m_head->addChild(n)) { in handleError() 445 if (!m_head) { in handleError() 449 if (m_head) { in handleError() 450 Node* newNode = m_head->addChild(n); in handleError() 505 } else if (n->isCommentNode() && !m_head) in handleError() [all …]
|
D | HTMLParser.h | 176 …RefPtr<HTMLHeadElement> m_head; // head element; needed for HTML which defines <base> after </head> variable
|
/external/webkit/JavaScriptCore/ |
D | ChangeLog-2008-08-10 | 1933 -Minor cleanup. Renamed callTree() to head() and no longer use m_head 2051 * profiler/Profile.h: The m_head is needed by the HeavyProfile so it 7114 (KJS::Profile::focus): Add a null check for m_head. 7849 (KJS::ProfileNode::ProfileNode): m_head used to point to the head node 7851 (KJS::ProfileNode::willExecute): Now must check if m_head is null, this
|
/external/webkit/WebCore/ |
D | ChangeLog-2008-08-10 | 5401 -Minor cleanup. Renamed callTree() to head() and no longer use m_head 61679 …(WebCore::HTMLTableElement::HTMLTableElement): Eliminated m_head, m_foot, m_firstBody, and m_capti… 61708 …Frame enums. Removed m_head, m_foot, m_firstBody, and m_caption, and added lastBody function. Remo…
|
D | ChangeLog-2009-06-16 | 20536 (WebCore::HTMLParser::HTMLParser): Remove unneeded initializer of m_head. 20537 (WebCore::HTMLParser::handleError): Update since m_head is now a RefPtr. 20539 * html/HTMLParser.h: Make m_head a RefPtr.
|