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

  /external/webkit/Source/JavaScriptCore/wtf/
SinglyLinkedList.h 41 Node* m_head; member in class:WTF::SinglyLinkedList
45 : m_head(0)
51 return !m_head;
57 node->setNext(m_head);
58 m_head = node;
63 Node* tmp = m_head;
64 m_head = m_head->next();
DoublyLinkedList.h 43 Node* m_head; member in class:WTF::DoublyLinkedList
48 : m_head(0)
55 return !m_head;
60 return m_head;
66 ASSERT(!m_head);
67 m_head = node;
74 ASSERT(m_head);
84 ASSERT(node != m_head);
87 ASSERT(node == m_head);
88 m_head = node->next()
    [all...]
BumpPointerAllocator.h 219 : m_head(0)
225 if (m_head)
226 m_head->destroy();
231 if (!m_head)
232 m_head = BumpPointerPool::create();
233 return m_head;
238 if (m_head)
239 m_head->shrink();
243 BumpPointerPool* m_head; member in class:WTF::BumpPointerAllocator
ListHashSet.h 134 Node* m_head; member in class:WTF::ListHashSet
333 ASSERT(m_position != m_set->m_head);
377 : m_head(0)
385 : m_head(0)
406 std::swap(m_head, other.m_head);
438 return makeIterator(m_head);
450 return makeConstIterator(m_head);
463 return m_head->m_value;
470 return m_head->m_value
    [all...]
  /external/webkit/Source/JavaScriptCore/profiler/
Profile.cpp 45 m_head = ProfileNode::create(0, 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(exec, 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(callerCallFrame, callIdentifier, m_head.get(), m_currentNode.get());
137 if (double headSelfTime = m_head->selfTime()) {
138 RefPtr<ProfileNode> idleNode = ProfileNode::create(0, CallIdentifier(NonJSExecution, UString(), 0), m_head.get(), m_head.get());
144 m_head->setSelfTime(0.0);
145 m_head->addChild(idleNode.release())
    [all...]
ProfileNode.h 72 ProfileNode* head() const { return m_head; }
73 void setHead(ProfileNode* head) { m_head = head; }
93 double totalPercent() const { return (m_visibleTotalTime / (m_head ? m_head->totalTime() : totalTime())) * 100.0; }
94 double selfPercent() const { return (m_visibleSelfTime / (m_head ? m_head->totalTime() : totalTime())) * 100.0; }
154 ProfileNode* m_head; member in class:JSC::ProfileNode
ProfileGenerator.h 74 RefPtr<ProfileNode> m_head; member in class:JSC::ProfileGenerator
ProfileNode.cpp 62 , m_head(headNode)
79 , m_head(headNode)
101 RefPtr<ProfileNode> newChild = ProfileNode::create(callerCallFrame, callIdentifier, m_head ? m_head : this, this); // If this ProfileNode has no head it is the head.
  /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/Source/WebCore/loader/cache/
MemoryCache.cpp 284 if (m_allResources[i].m_head)
398 for (CachedResource* current = list->m_head; current; current = current->m_nextInAllResourcesList) {
410 if (next == 0 && prev == 0 && list->m_head != resource)
423 else if (list->m_head == resource)
424 list->m_head = next;
436 resource->m_nextInAllResourcesList = list->m_head;
437 if (list->m_head)
438 list->m_head->m_prevInAllResourcesList = resource;
439 list->m_head = resource;
448 for (CachedResource* current = list->m_head; current; current = current->m_nextInAllResourcesList)
    [all...]
MemoryCache.h 83 CachedResource* m_head; member in struct:WebCore::MemoryCache::LRUList
85 LRUList() : m_head(0), m_tail(0) { }
  /external/opencv/cv/src/
_cvlist.h 77 CVPOS m_head; member in struct:_list
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/
PageCache.h 84 HistoryItem* m_head; member in class:WebCore::PageCache
PageCache.cpp 240 , m_head(0)
330 for (HistoryItem* current = m_head; current; current = current->m_next) {
346 for (HistoryItem* current = m_head; current; current = current->m_next)
410 item->m_next = m_head;
413 if (m_head) {
415 m_head->m_prev = item;
421 m_head = item;
435 ASSERT(item == m_head);
436 m_head = item->m_next;
438 ASSERT(item != m_head);
    [all...]
  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
example-tuple.cpp 69 : m_head(v), inherited(vtail...) { }
73 : m_head(other.head()), inherited(other.tail()) { }
77 m_head = other.head();
82 typename add_reference<Head>::type head() { return m_head; }
83 typename add_reference<const Head>::type head() const { return m_head; }
88 Head m_head; member in class:tuple
example-bind.cpp 69 : m_head(v), inherited(vtail...) { }
73 : m_head(other.head()), inherited(other.tail()) { }
77 m_head = other.head();
82 typename add_reference<Head>::type head() { return m_head; }
83 typename add_reference<const Head>::type head() const { return m_head; }
88 Head m_head; member in class:tuple
  /external/webkit/Source/WebCore/rendering/
RenderTable.cpp 55 , m_head(0)
142 resetSectionPointerIfNotBefore(m_head, beforeChild);
143 if (!m_head) {
144 m_head = toRenderTableSection(child);
431 RenderTableSection* section = m_head ? m_head : (m_firstBody ? m_firstBody : m_foot);
776 m_head = 0;
797 if (!m_head)
798 m_head = section;
869 RenderTableSection* firstNonEmptySection = m_head ? m_head : (m_firstBody ? m_firstBody : m_foot)
    [all...]
RenderTable.h 143 RenderTableSection* header() const { return m_head; }
197 bool hasSections() const { return m_head || m_foot || m_firstBody; }
253 mutable RenderTableSection* m_head; member in class:WebCore::RenderTable
  /external/webkit/Source/WebCore/html/parser/
HTMLConstructionSite.h 90 Element* head() const { return m_head.get(); }
142 RefPtr<Element> m_head; member in class:WebCore::HTMLConstructionSite
HTMLConstructionSite.cpp 266 m_head = attachToCurrent(createHTMLElement(token));
267 m_openElements.pushHTMLHeadElement(m_head);
  /external/emma/lib/
emma.jar 

Completed in 443 milliseconds