HomeSort by relevance Sort by last modified time
    Searched refs:m_head (Results 1 - 17 of 17) sorted by null

  /external/webkit/JavaScriptCore/profiler/
Profile.cpp 45 m_head = ProfileNode::create(CallIdentifier("Thread_1", UString(), 0), 0, 0);
54 ProfileNode* currentNode = m_head->firstChild();
59 currentNode = m_head.get();
61 ProfileNode* endNode = m_head->traverseNextNodePostOrder();
70 if (!profileNode || !m_head)
75 for (ProfileNode* currentNode = m_head.get(); currentNode; currentNode = currentNode->traverseNextNodePreOrder(processChildren))
84 if (!profileNode || !m_head)
89 for (ProfileNode* currentNode = m_head.get(); currentNode; currentNode = currentNode->traverseNextNodePreOrder())
93 m_head->setVisibleTotalTime(m_head->totalTime() - m_head->selfTime())
    [all...]
Profile.h 42 ProfileNode* head() const { return m_head.get(); }
43 void setHead(PassRefPtr<ProfileNode> head) { m_head = head; }
44 double totalTime() const { return m_head->totalTime(); }
66 RefPtr<ProfileNode> m_head; member in class:JSC::Profile
ProfileGenerator.cpp 53 m_currentNode = m_head = m_profile->head();
66 m_currentNode = ProfileNode::create(Profiler::createCallIdentifier(exec, function ? function.toThisObject(exec) : 0, sourceURL, lineNumber), m_head.get(), m_head.get());
67 m_head->insertNode(m_currentNode.get());
103 RefPtr<ProfileNode> returningNode = ProfileNode::create(callIdentifier, m_head.get(), m_currentNode.get());
126 if (double headSelfTime = m_head->selfTime()) {
127 RefPtr<ProfileNode> idleNode = ProfileNode::create(CallIdentifier(NonJSExecution, UString(), 0), m_head.get(), m_head.get());
133 m_head->setSelfTime(0.0);
134 m_head->addChild(idleNode.release())
    [all...]
ProfileNode.h 69 ProfileNode* head() const { return m_head; }
70 void setHead(ProfileNode* head) { m_head = head; }
90 double totalPercent() const { return (m_visibleTotalTime / (m_head ? m_head->totalTime() : totalTime())) * 100.0; }
91 double selfPercent() const { return (m_visibleSelfTime / (m_head ? m_head->totalTime() : totalTime())) * 100.0; }
150 ProfileNode* m_head; member in class:JSC::ProfileNode
ProfileGenerator.h 71 RefPtr<ProfileNode> m_head; member in class:JSC::ProfileGenerator
ProfileNode.cpp 60 , m_head(headNode)
76 , m_head(headNode)
98 RefPtr<ProfileNode> newChild = ProfileNode::create(callIdentifier, m_head ? m_head : this, this); // If this ProfileNode has no head it is the head.
  /external/webkit/WebCore/history/
PageCache.cpp 52 , m_head(0)
69 for (HistoryItem* current = m_head; current; current = current->m_next) {
124 item->m_next = m_head;
127 if (m_head) {
129 m_head->m_prev = item;
135 m_head = item;
149 ASSERT(item == m_head);
150 m_head = item->m_next;
152 ASSERT(item != m_head);
PageCache.h 75 HistoryItem* m_head; member in class:WebCore::PageCache
  /external/emma/core/java12/com/vladium/emma/report/html/doc/
HTMLDocument.java 32 super.add (m_head = IElement.Factory.create (Tag.HEAD));
44 m_head.add (meta);
53 m_head.add (titleElement);
66 return m_head;
131 m_head.add (style);
148 m_head.add (link);
194 private final IElement m_head; field in class:HTMLDocument
  /external/webkit/JavaScriptCore/wtf/
ListHashSet.h 117 Node* m_head; member in class:WTF::ListHashSet
316 ASSERT(m_position != m_set->m_head);
360 : m_head(0)
368 : m_head(0)
389 std::swap(m_head, other.m_head);
421 return makeIterator(m_head);
433 return makeConstIterator(m_head);
516 m_head = 0;
524 ASSERT(node == m_head);
    [all...]
  /external/webkit/WebCore/loader/
Cache.cpp 383 if (m_allResources[i].m_head)
483 for (CachedResource* current = list->m_head; current; current = current->m_nextInAllResourcesList) {
495 if (next == 0 && prev == 0 && list->m_head != resource)
508 else if (list->m_head == resource)
509 list->m_head = next;
521 resource->m_nextInAllResourcesList = list->m_head;
522 if (list->m_head)
523 list->m_head->m_prevInAllResourcesList = resource;
524 list->m_head = resource;
533 for (CachedResource* current = list->m_head; current; current = current->m_nextInAllResourcesList)
    [all...]
Cache.h 65 CachedResource* m_head; member in struct:WebCore::Cache::LRUList
67 LRUList() : m_head(0), m_tail(0) { }
  /external/webkit/WebCore/rendering/
RenderTable.h 83 RenderTableSection* header() const { return m_head; }
136 bool hasSections() const { return m_head || m_foot || m_firstBody; }
186 mutable RenderTableSection* m_head; member in class:WebCore::RenderTable
RenderTable.cpp 53 , m_head(0)
129 resetSectionPointerIfNotBefore(m_head, beforeChild);
130 if (!m_head) {
131 m_head = toRenderTableSection(child);
413 RenderTableSection* section = m_head ? m_head : (m_firstBody ? m_firstBody : m_foot);
693 m_head = 0;
714 if (!m_head)
715 m_head = section;
788 RenderTableSection* firstNonEmptySection = m_head ? m_head : (m_firstBody ? m_firstBody : m_foot)
    [all...]
  /external/webkit/WebCore/html/
HTMLParser.cpp 191 m_head = 0;
313 if (m_head == n)
314 m_head = 0;
433 if (!m_head) {
437 if (m_head) {
440 if (m_head->addChild(n)) {
466 if (!m_head) {
470 if (m_head) {
471 Node* newNode = m_head->addChild(n);
526 } else if (n->isCommentNode() && !m_head)
    [all...]
HTMLParser.h 179 RefPtr<HTMLHeadElement> m_head; // head element; needed for HTML which defines <base> after </head> member in class:WebCore::HTMLParser
  /external/emma/lib/
emma.jar 

Completed in 251 milliseconds