Home
last modified time | relevance | path

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

/external/webkit/Source/JavaScriptCore/profiler/
DProfile.cpp45 m_head = ProfileNode::create(0, 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 …de> returningNode = ProfileNode::create(callerCallFrame, callIdentifier, m_head.get(), m_currentNo… in didExecute()
137 if (double headSelfTime = m_head->selfTime()) { in stopProfiling()
138 …= ProfileNode::create(0, CallIdentifier(NonJSExecution, UString(), 0), m_head.get(), m_head.get()); in stopProfiling()
144 m_head->setSelfTime(0.0); in stopProfiling()
145 m_head->addChild(idleNode.release()); in stopProfiling()
153 for (ProfileNode* next = m_head.get(); next; next = next->firstChild()) in removeProfileStart()
168 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.h72 ProfileNode* head() const { return m_head; } in head()
73 void setHead(ProfileNode* head) { m_head = head; } in setHead()
93 …double totalPercent() const { return (m_visibleTotalTime / (m_head ? m_head->totalTime() : totalTi… in totalPercent()
94 …double selfPercent() const { return (m_visibleSelfTime / (m_head ? m_head->totalTime() : totalTime… in selfPercent()
154 ProfileNode* m_head; variable
DProfileNode.cpp62 , m_head(headNode) in ProfileNode()
79 , m_head(headNode) in ProfileNode()
101 …ode> newChild = ProfileNode::create(callerCallFrame, callIdentifier, m_head ? m_head : this, this)… in willExecute()
DProfileGenerator.h74 RefPtr<ProfileNode> m_head; variable
/external/webkit/Source/JavaScriptCore/wtf/
DDoublyLinkedList.h43 Node* m_head;
48 : m_head(0) in DoublyLinkedList()
55 return !m_head; in isEmpty()
60 return m_head; in head()
66 ASSERT(!m_head); in append()
67 m_head = node; in append()
74 ASSERT(m_head); in append()
84 ASSERT(node != m_head); in remove()
87 ASSERT(node == m_head); in remove()
88 m_head = node->next(); in remove()
DSinglyLinkedList.h41 Node* m_head;
45 : m_head(0) in SinglyLinkedList()
51 return !m_head; in isEmpty()
57 node->setNext(m_head); in push()
58 m_head = node; in push()
63 Node* tmp = m_head; in pop()
64 m_head = m_head->next(); in pop()
DBumpPointerAllocator.h219 : m_head(0) in BumpPointerAllocator()
225 if (m_head) in ~BumpPointerAllocator()
226 m_head->destroy(); in ~BumpPointerAllocator()
231 if (!m_head) in startAllocator()
232 m_head = BumpPointerPool::create(); in startAllocator()
233 return m_head; in startAllocator()
238 if (m_head) in stopAllocator()
239 m_head->shrink(); in stopAllocator()
243 BumpPointerPool* m_head;
DListHashSet.h134 Node* m_head; variable
333 ASSERT(m_position != m_set->m_head);
377 : m_head(0) in ListHashSet()
385 : m_head(0) in ListHashSet()
406 std::swap(m_head, other.m_head); in swap()
438 return makeIterator(m_head); in begin()
450 return makeConstIterator(m_head); in begin()
463 return m_head->m_value; in first()
470 return m_head->m_value; in first()
608 m_head = 0; in clear()
[all …]
/external/webkit/Source/WebCore/loader/cache/
DMemoryCache.cpp284 if (m_allResources[i].m_head) in pruneDeadResources()
398 …for (CachedResource* current = list->m_head; current; current = current->m_nextInAllResourcesList)… in removeFromLRUList()
410 if (next == 0 && prev == 0 && list->m_head != resource) in removeFromLRUList()
423 else if (list->m_head == resource) in removeFromLRUList()
424 list->m_head = next; in removeFromLRUList()
436 resource->m_nextInAllResourcesList = list->m_head; in insertInLRUList()
437 if (list->m_head) in insertInLRUList()
438 list->m_head->m_prevInAllResourcesList = resource; in insertInLRUList()
439 list->m_head = resource; in insertInLRUList()
448 …for (CachedResource* current = list->m_head; current; current = current->m_nextInAllResourcesList)… in insertInLRUList()
[all …]
DMemoryCache.h83 CachedResource* m_head; member
85 LRUList() : m_head(0), m_tail(0) { } in LRUList()
/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/opencv/cv/src/
D_cvlist.h77 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/webkit/Source/WebCore/history/
DPageCache.cpp240 , m_head(0) in PageCache()
330 for (HistoryItem* current = m_head; current; current = current->m_next) { in frameCount()
346 for (HistoryItem* current = m_head; current; current = current->m_next) in markPagesForVistedLinkStyleRecalc()
410 item->m_next = m_head; in addToLRUList()
413 if (m_head) { in addToLRUList()
415 m_head->m_prev = item; in addToLRUList()
421 m_head = item; in addToLRUList()
435 ASSERT(item == m_head); in removeFromLRUList()
436 m_head = item->m_next; in removeFromLRUList()
438 ASSERT(item != m_head); in removeFromLRUList()
DPageCache.h84 HistoryItem* m_head; variable
/external/webkit/Source/WebCore/rendering/
DRenderTable.cpp55 , m_head(0) in RenderTable()
142 resetSectionPointerIfNotBefore(m_head, beforeChild); in addChild()
143 if (!m_head) { in addChild()
144 m_head = toRenderTableSection(child); in addChild()
431 RenderTableSection* section = m_head ? m_head : (m_firstBody ? m_firstBody : m_foot); in layout()
776 m_head = 0; in recalcSections()
797 if (!m_head) in recalcSections()
798 m_head = section; in recalcSections()
869 … RenderTableSection* firstNonEmptySection = m_head ? m_head : (m_firstBody ? m_firstBody : m_foot); in calcBorderStart()
927 … RenderTableSection* firstNonEmptySection = m_head ? m_head : (m_firstBody ? m_firstBody : m_foot); in calcBorderEnd()
[all …]
DRenderTable.h143 RenderTableSection* header() const { return m_head; } in header()
197 bool hasSections() const { return m_head || m_foot || m_firstBody; } in hasSections()
253 mutable RenderTableSection* m_head; variable
/external/clang/test/CXX/temp/temp.decls/temp.variadic/
Dexample-tuple.cpp69 : m_head(v), inherited(vtail...) { } in tuple()
73 : m_head(other.head()), inherited(other.tail()) { } in tuple()
77 m_head = other.head(); in operator =()
82 typename add_reference<Head>::type head() { return m_head; } in head()
83 typename add_reference<const Head>::type head() const { return m_head; } in head()
88 Head m_head; member in tuple
Dexample-bind.cpp69 : m_head(v), inherited(vtail...) { } in tuple()
73 : m_head(other.head()), inherited(other.tail()) { } in tuple()
77 m_head = other.head(); in operator =()
82 typename add_reference<Head>::type head() { return m_head; } in head()
83 typename add_reference<const Head>::type head() const { return m_head; } in head()
88 Head m_head; member in tuple
/external/webkit/Source/WebCore/html/parser/
DHTMLConstructionSite.h90 Element* head() const { return m_head.get(); } in head()
142 RefPtr<Element> m_head; variable
DHTMLConstructionSite.cpp266 m_head = attachToCurrent(createHTMLElement(token)); in insertHTMLHeadElement()
267 m_openElements.pushHTMLHeadElement(m_head); in insertHTMLHeadElement()
/external/webkit/Source/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/Source/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.