Home
last modified time | relevance | path

Searched refs:m_head (Results 1 – 19 of 19) sorted by relevance

/external/webkit/JavaScriptCore/profiler/
DProfile.cpp45 m_head = ProfileNode::create(CallIdentifier("Thread_1", UString(), 0), 0, 0); in Profile()
54 ProfileNode* currentNode = m_head->firstChild(); in forEach()
59 currentNode = m_head.get(); in forEach()
61 ProfileNode* endNode = m_head->traverseNextNodePostOrder(); in forEach()
70 if (!profileNode || !m_head) in focus()
75 …for (ProfileNode* currentNode = m_head.get(); currentNode; currentNode = currentNode->traverseNext… in focus()
84 if (!profileNode || !m_head) in exclude()
89 …for (ProfileNode* currentNode = m_head.get(); currentNode; currentNode = currentNode->traverseNext… in exclude()
93 m_head->setVisibleTotalTime(m_head->totalTime() - m_head->selfTime()); in exclude()
94 m_head->setVisibleSelfTime(0.0); in exclude()
[all …]
DProfileGenerator.cpp53 m_currentNode = m_head = m_profile->head(); in ProfileGenerator()
66 …c, function ? function.toThisObject(exec) : 0, sourceURL, lineNumber), m_head.get(), m_head.get()); in addParentForConsoleStart()
67 m_head->insertNode(m_currentNode.get()); in addParentForConsoleStart()
103 …RefPtr<ProfileNode> returningNode = ProfileNode::create(callIdentifier, m_head.get(), m_currentNod… in didExecute()
126 if (double headSelfTime = m_head->selfTime()) { in stopProfiling()
127 …de = ProfileNode::create(CallIdentifier(NonJSExecution, UString(), 0), m_head.get(), m_head.get()); in stopProfiling()
133 m_head->setSelfTime(0.0); in stopProfiling()
134 m_head->addChild(idleNode.release()); in stopProfiling()
142 for (ProfileNode* next = m_head.get(); next; next = next->firstChild()) in removeProfileStart()
157 for (ProfileNode* next = m_head.get(); next; next = next->lastChild()) in removeProfileEnd()
DProfile.h42 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
DProfileNode.h69 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
DProfileNode.cpp60 , m_head(headNode) in ProfileNode()
76 , m_head(headNode) in ProfileNode()
98 …RefPtr<ProfileNode> newChild = ProfileNode::create(callIdentifier, m_head ? m_head : this, this); … in willExecute()
DProfileGenerator.h71 RefPtr<ProfileNode> m_head; variable
/external/webkit/WebCore/history/
DPageCache.cpp52 , 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()
DPageCache.h75 HistoryItem* m_head; variable
/external/webkit/WebCore/loader/
DCache.cpp383 if (m_allResources[i].m_head) in pruneDeadResources()
483 …for (CachedResource* current = list->m_head; current; current = current->m_nextInAllResourcesList)… in removeFromLRUList()
495 if (next == 0 && prev == 0 && list->m_head != resource) in removeFromLRUList()
508 else if (list->m_head == resource) in removeFromLRUList()
509 list->m_head = next; in removeFromLRUList()
521 resource->m_nextInAllResourcesList = list->m_head; in insertInLRUList()
522 if (list->m_head) in insertInLRUList()
523 list->m_head->m_prevInAllResourcesList = resource; in insertInLRUList()
524 list->m_head = resource; in insertInLRUList()
533 …for (CachedResource* current = list->m_head; current; current = current->m_nextInAllResourcesList)… in insertInLRUList()
[all …]
DCache.h65 CachedResource* m_head; member
67 LRUList() : m_head(0), m_tail(0) { } in LRUList()
/external/webkit/JavaScriptCore/wtf/
DListHashSet.h117 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/
DHTMLDocument.java32 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/
DRenderTable.cpp53 , 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()
413 RenderTableSection* section = m_head ? m_head : (m_firstBody ? m_firstBody : m_foot); in layout()
693 m_head = 0; in recalcSections()
714 if (!m_head) in recalcSections()
715 m_head = section; in recalcSections()
788 … RenderTableSection* firstNonEmptySection = m_head ? m_head : (m_firstBody ? m_firstBody : m_foot); in calcBorderLeft()
847 … RenderTableSection* firstNonEmptySection = m_head ? m_head : (m_firstBody ? m_firstBody : m_foot); in calcBorderRight()
[all …]
DRenderTable.h83 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/
DHTMLParser.cpp191 m_head = 0; in reset()
313 if (m_head == n) in parseToken()
314 m_head = 0; in parseToken()
433 if (!m_head) { in handleError()
437 if (m_head) { in handleError()
440 if (m_head->addChild(n)) { in handleError()
466 if (!m_head) { in handleError()
470 if (m_head) { in handleError()
471 Node* newNode = m_head->addChild(n); in handleError()
526 } else if (n->isCommentNode() && !m_head) in handleError()
[all …]
DHTMLParser.h179 …RefPtr<HTMLHeadElement> m_head; // head element; needed for HTML which defines <base> after </head> variable
/external/webkit/JavaScriptCore/
DChangeLog-2008-08-101933 -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/
DChangeLog-2008-08-105401 -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…
DChangeLog-2009-06-1620536 (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.