Searched refs:m_next (Results 1 - 25 of 95) sorted by relevance

1234

/external/webkit/Source/WebCore/platform/graphics/
H A DFontFamily.cpp33 , m_next(other.m_next)
40 m_next = other.m_next;
H A DFontFamily.h54 ListRefPtr<SharedFontFamily> m_next; member in class:WebCore::FontFamily
73 return m_next.get();
78 m_next = family;
83 return m_next.release();
/external/webkit/Source/WebKit/android/plugins/
H A DPluginTimer.cpp45 m_next = *list;
46 if (m_next) {
47 m_next->m_prev = this;
56 if (m_next) {
57 m_next->m_prev = m_prev;
60 m_prev->m_next = m_next;
62 *m_list = m_next;
91 curr = curr->m_next;
/external/webkit/Source/WebCore/rendering/style/
H A DShadowData.cpp41 m_next = o.m_next ? new ShadowData(*o.m_next) : 0;
46 if ((m_next && !o.m_next) || (!m_next && o.m_next)
47 || (m_next && o.m_next && *m_next !
[all...]
H A DShadowData.h49 , m_next(0)
61 , m_next(0)
66 ~ShadowData() { delete m_next; }
82 const ShadowData* next() const { return m_next; }
83 void setNext(ShadowData* shadow) { m_next = shadow; }
96 ShadowData* m_next; member in class:WebCore::ShadowData
H A DFillLayer.cpp28 : m_next(0)
54 : m_next(o.m_next ? new FillLayer(*o.m_next) : 0)
81 delete m_next;
86 if (m_next != o.m_next) {
87 delete m_next;
88 m_next = o.m_next
[all...]
H A DContentData.cpp35 for (OwnPtr<ContentData> next = m_next.release(); next; next = next->m_next.release()) { }
/external/apache-xml/src/main/java/org/apache/xpath/axes/
H A DNodeSequence.java50 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/
H A DBidiRunList.h75 m_lastRun->m_next = run;
83 ASSERT(!run->m_next);
88 run->m_next = m_firstRun;
98 ASSERT(run->m_next);
110 current->m_next = run->m_next;
112 run->m_next = 0;
113 m_lastRun->m_next = run;
131 current->m_next = run->m_next;
[all...]
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DElemContext.java101 * that connections between the frames via m_next and m_prev
106 private ElemContext m_next; field in class:ElemContext
167 ElemContext frame = this.m_next;
174 this.m_next = frame;
201 ElemContext frame = this.m_next;
208 this.m_next = frame;
/external/webkit/Source/JavaScriptCore/heap/
H A DHandleStack.h44 HandleSlot m_next; member in class:JSC::HandleStack::Frame
94 for (HandleSlot it = blocks[i] + m_blockStack.blockLength - 1; it != lastFrame.m_next - 1; --it)
100 for (HandleSlot it = m_frame.m_next - 1; it != lastFrame.m_next - 1; --it)
122 if (m_frame.m_next == m_frame.m_end)
124 return m_frame.m_next++;
H A DHandleStack.cpp53 heapRootMarker.mark(block, m_frame.m_next - block);
59 m_frame.m_next = block;
/external/webkit/Source/WebCore/rendering/
H A DLayoutState.cpp39 , m_next(prev)
44 ASSERT(m_next);
92 m_pageLogicalHeight = m_next->m_pageLogicalHeight;
93 m_pageLogicalHeightChanged = m_next->m_pageLogicalHeightChanged;
94 m_pageOffset = m_next->m_pageOffset;
102 m_columnInfo = m_next->m_columnInfo;
104 m_layoutDelta = m_next->m_layoutDelta;
114 , m_next(0)
160 m_pageLogicalHeight = m_next->m_pageLogicalHeight;
161 m_pageOffset = m_next
[all...]
H A DRenderQuote.cpp57 , m_next(0)
90 if (head->m_previous->m_next) {
93 while (tail->m_next)
94 tail = tail->m_next;
95 tail->m_next = head->m_previous->m_next;
96 ASSERT(tail->m_next->m_previous == head->m_previous);
97 tail->m_next->m_previous = tail;
98 tail = tail->m_next; // This marks the splicing point here there may be a depth discontinuity
100 head->m_previous->m_next
[all...]
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DNameSpace.java37 public NameSpace m_next = null; field in class:NameSpace
/external/opencv/cv/src/
H A D_cvlist.h89 struct prefix##element_##type* m_next;\
121 if(element->m_next != NULL)\
123 element->m_next->m_prev = NULL;\
124 l->m_head_free.m_pos = element->m_next;\
152 element->m_next = ((element_type*)l->m_head_free.m_pos);\
197 pos->m_pos = element->m_next;\
234 element->m_next = (ELEMENT_##type*)(l->m_head.m_pos);\
236 if(element->m_next)\
238 element->m_next->m_prev = element;\
251 element->m_next
[all...]
/external/apache-xml/src/main/java/org/apache/xpath/
H A DNodeSetDTM.java285 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_firstFre
1103 transient protected int m_next = 0; field in class:NodeSetDTM
[all...]
/external/webkit/Source/JavaScriptCore/wtf/
H A DBumpPointerAllocator.h100 , m_next(0)
132 while (m_next) {
133 BumpPointerPool* nextNext = m_next->m_next;
134 m_next->destroy();
135 m_next = nextNext;
150 BumpPointerPool* pool = previousPool->m_next;
156 previousPool->m_next = pool;
194 BumpPointerPool* m_next; member in class:WTF::BumpPointerPool
/external/webkit/Source/WebCore/platform/graphics/android/utils/
H A DLinearAllocator.cpp103 , m_next(0)
136 return m_next && ((char*)m_next + size) <= end(m_currentPage);
154 m_next = start(m_currentPage);
172 void* ptr = m_next;
173 m_next = ((char*)m_next) + size;
182 && ptr == ((char*)m_next - allocSize)) {
185 m_next = ptr;
/external/emma/core/java12/com/vladium/util/
H A DIntObjectMap.java91 for (Entry entry = buckets [bucketIndex]; entry != null; entry = entry.m_next)
116 for (Entry entry = buckets [bucketIndex]; entry != null; entry = entry.m_next)
136 for (Entry entry = m_buckets [b]; entry != null; entry = entry.m_next)
165 for (Entry entry = buckets [bucketIndex]; entry != null; entry = entry.m_next)
228 m_next = next;
234 Entry m_next; // singly-linked list link field in class:IntObjectMap.Entry
258 final Entry next = entry.m_next; // remember next pointer because we are going to reuse this entry
265 entry.m_next = bucketListHead;
H A DIntSet.java89 for (Entry entry = buckets [bucketIndex]; entry != null; entry = entry.m_next)
109 for (Entry entry = m_buckets [b]; entry != null; entry = entry.m_next)
127 for (Entry entry = m_buckets [b]; entry != null; entry = entry.m_next)
146 for (Entry entry = buckets [bucketIndex]; entry != null; entry = entry.m_next)
201 m_next = next;
206 Entry m_next; // singly-linked list link field in class:IntSet.Entry
230 final Entry next = entry.m_next; // remember next pointer because we are going to reuse this entry
237 entry.m_next = bucketListHead;
H A DIntIntMap.java91 for (Entry entry = buckets [bucketIndex]; entry != null; entry = entry.m_next)
115 for (Entry entry = buckets [bucketIndex]; entry != null; entry = entry.m_next)
134 for (Entry entry = buckets [bucketIndex]; entry != null; entry = entry.m_next)
153 for (Entry entry = m_buckets [b]; entry != null; entry = entry.m_next)
179 for (Entry entry = buckets [bucketIndex]; entry != null; entry = entry.m_next)
224 final Entry next = entry.m_next;
231 prev.m_next = next;
270 m_next = next;
276 Entry m_next; // singly-linked list link field in class:IntIntMap.Entry
300 final Entry next = entry.m_next; // remembe
[all...]
/external/apache-xml/src/main/java/org/apache/xalan/templates/
H A DTemplateSubPatternAssociation.java50 private TemplateSubPatternAssociation m_next = null; field in class:TemplateSubPatternAssociation
87 tspa.m_next = null;
233 return m_next;
247 m_next = mp;
/external/webkit/Source/WebCore/css/
H A DDashboardRegion.h34 RefPtr<DashboardRegion> m_next; member in class:WebCore::DashboardRegion
/external/webkit/Source/WebCore/html/parser/
H A DHTMLInputStream.h131 m_inputStream->splitInto(m_next);
142 m_inputStream->mergeFrom(m_next);
149 SegmentedString m_next; member in class:WebCore::InsertionPointRecord

Completed in 374 milliseconds

1234