HomeSort by relevance Sort by last modified time
    Searched defs:m_next (Results 26 - 48 of 48) sorted by null

12

  /external/webkit/Source/JavaScriptCore/wtf/
Deque.h 146 mutable DequeIteratorBase* m_next; member in class:WTF::DequeIteratorBase
291 next = p->m_next;
293 p->m_next = 0;
548 m_next = 0;
550 m_next = m_deque->m_iterators;
552 if (m_next)
553 m_next->m_previous = this;
562 ASSERT(!m_next);
565 if (m_next) {
566 ASSERT(m_next->m_previous == this)
    [all...]
ListHashSet.h 159 Node* next = result->m_next;
182 node->m_next = m_freeList;
214 , m_next(0)
233 ListHashSetNode* m_next; member in struct:WTF::ListHashSetNode
325 m_position = m_position->m_next;
617 m_head = node->m_next;
620 node->m_prev->m_next = node->m_next;
623 if (!node->m_next) {
628 node->m_next->m_prev = node->m_prev
    [all...]
HashTable.h 214 // Any modifications of the m_next or m_previous of an iterator that is in a linked list of a HashTable::m_iterator,
217 mutable const_iterator* m_next; member in class:WTF::HashTableConstIterator
    [all...]
  /external/webkit/Source/WebCore/history/
HistoryItem.h 285 HistoryItem* m_next; member in class:WebCore::HistoryItem
  /frameworks/base/tools/localize/
XMLHandler.h 164 XMLHandler* m_next; member in class:TopElementHandler
  /ndk/tests/device/test-gnustl-full/unit/cppunit/
cppunit_mini.h 125 TestCase *m_next; member in class:TestCase
  /ndk/tests/device/test-stlport/unit/cppunit/
cppunit_mini.h 125 TestCase *m_next; member in class:TestCase
  /external/apache-xml/src/main/java/org/apache/xpath/
NodeSet.java 172 m_next = 0;
244 if ((m_next) < this.size())
246 Node next = this.elementAt(m_next);
248 m_next++;
274 if ((m_next - 1) > 0)
276 m_next--;
278 return this.elementAt(m_next);
307 return (m_next == 0);
313 * m_next to the index. If the index argument is -1, this
329 if ((index >= 0) && (m_next < m_firstFree)
718 transient protected int m_next = 0; field in class:NodeSet
    [all...]
NodeSetDTM.java 285 m_next = 0;
388 if ((m_next) < this.size())
390 int next = this.elementAt(m_next);
392 m_next++;
418 if ((m_next - 1) > 0)
420 m_next--;
422 return this.elementAt(m_next);
463 return (m_next == 0);
469 * m_next to the index. If the index argument is -1, this
485 if ((index >= 0) && (m_next < m_firstFree)
1103 transient protected int m_next = 0; field in class:NodeSetDTM
    [all...]
  /external/emma/core/java12/com/vladium/util/
SoftValueMap.java 169 for (SoftEntry entry = buckets [bucketIndex]; entry != null; entry = entry.m_next)
238 for (SoftEntry entry = buckets [bucketIndex]; entry != null; entry = entry.m_next)
307 for (SoftEntry entry = buckets [bucketIndex], prev = null; entry != null; prev = entry, entry = entry.m_next)
315 buckets [bucketIndex] = entry.m_next;
319 prev.m_next = entry.m_next;
331 entry.m_next = null;
351 final SoftEntry next = entry.m_next; // remember next pointer because we are going to reuse this entry
358 entry.m_next = null;
454 m_next = next
460 SoftEntry m_next; \/\/ singly-linked list link field in class:SoftValueMap.SoftEntry
    [all...]
  /external/webkit/Source/JavaScriptCore/bytecode/
SamplingTool.h 301 // Set m_next to point to the head of the chain, and inform whatever is
303 m_next = s_abstractSamplingCounterChain;
304 s_abstractSamplingCounterChain->m_referer = &m_next;
312 AbstractSamplingCounter* m_next; member in class:JSC::AbstractSamplingCounter
374 if (!m_next)
405 // and m_next should know that this node is the previous node in the list.
407 ASSERT(m_next->m_referer == &m_next);
408 // Remove this node from the list, and inform m_next that we have done so.
409 m_next->m_referer = m_referer
    [all...]
  /external/webkit/Source/WebCore/rendering/
InlineBox.h 39 : m_next(0)
74 : m_next(next)
136 InlineBox* next() const { return m_next; }
192 InlineBox* nextOnLine() const { return m_next; }
197 m_next = next;
321 InlineBox* m_next; // The next element on the same line as us. member in class:WebCore::InlineBox
RenderLayer.h 190 RenderLayer* nextSibling() const { return m_next; }
506 void setNextSibling(RenderLayer* next) { m_next = next; }
669 RenderLayer* m_next; member in class:WebCore::RenderLayer
    [all...]
RenderObject.h 131 RenderObject* nextSibling() const { return m_next; }
215 void setNextSibling(RenderObject* next) { m_next = next; }
837 RenderObject* m_next; member in class:WebCore::RenderObject
    [all...]
  /external/webkit/Source/WebCore/rendering/style/
FillLayer.h 81 const FillLayer* next() const { return m_next; }
82 FillLayer* next() { return m_next; }
119 void setNext(FillLayer* n) { if (m_next != n) { delete m_next; m_next = n; } }
137 return m_next ? m_next->hasImage() : false;
144 return m_next ? m_next->hasFixedImage() : false;
170 FillLayer* m_next; member in class:WebCore::FillLayer
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/axes/
NodeSequence.java 50 protected int m_next = 0; field in class:NodeSequence
271 m_next=0;
283 m_next = 0;
318 if(m_next < vec.size())
321 int next = vec.elementAt(m_next);
322 m_next++;
327 m_next++;
343 m_next++;
349 m_next++;
353 m_next++
    [all...]
  /external/webkit/Source/WebCore/platform/text/
BidiResolver.h 109 , m_next(0)
136 BidiCharacterRun* next() const { return m_next; }
142 BidiCharacterRun* m_next; member in struct:WebCore::BidiCharacterRun
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
RedundentExprEliminator.java 173 next = next.m_next;
218 matchedPathsTail.m_next = null;
223 matchedPathsTail.m_next = (MultistepExprHolder)meh.clone();
227 matchedPathsTail = matchedPathsTail.m_next;
228 matchedPathsTail.m_next = null;
231 meh = meh.m_next;
255 matchedPaths = matchedPaths.m_next;
317 next = next.m_next;
390 next = next.m_next;
629 tail.m_next = new MultistepExprHolder(owner2, stepCount, null)
1303 MultistepExprHolder m_next; field in class:RedundentExprEliminator.MultistepExprHolder
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/gpu/
LoopBlinnPathProcessor.cpp 144 , m_next(0)
192 Segment* next() const { return m_next; }
195 void setNext(Segment* next) { m_next = next; }
348 Segment* m_next; member in class:WebCore::LoopBlinnPathProcessorImplementation::Segment
    [all...]
  /external/webkit/Source/WebCore/bindings/v8/
SerializedScriptValue.cpp 404 StateBase* nextState() { return m_next; }
417 , m_next(next)
423 StateBase* m_next; member in class:WebCore::__anon13231::Serializer::StateBase
    [all...]
  /external/webkit/Source/WebCore/dom/
Node.h 147 Node* nextSibling() const { return m_next; }
243 void setNextSibling(Node* next) { m_next = next; }
704 Node* m_next; member in class:WebCore::Node
  /external/webkit/Source/JavaScriptCore/parser/
Nodes.h 384 ElementNode* next() { return m_next; }
387 ElementNode* m_next; member in class:JSC::ElementNode
436 PropertyListNode* m_next; member in class:JSC::PropertyListNode
490 ArgumentListNode* m_next; member in class:JSC::ArgumentListNode
1121 ConstDeclNode* m_next; member in class:JSC::ConstDeclNode
1134 ConstDeclNode* m_next; member in class:JSC::ConstStatementNode
1376 ParameterNode* m_next; member in class:JSC::ParameterNode
1560 ClauseListNode* m_next; member in class:JSC::ClauseListNode
    [all...]
  /external/emma/lib/
emma.jar 

Completed in 1656 milliseconds

12