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

  /libcore/luni/src/main/java/org/apache/xml/dtm/ref/
DTMAxisIterNodeList.java 62 private int m_last = -1; field in class:DTMAxisIterNodeList
74 m_last = 0;
112 } else if (m_last == -1) {
119 m_last = count;
133 if (m_last == -1) {
138 m_last = m_cachedNodes.size();
140 return m_last;
  /libcore/luni/src/main/java/org/apache/xpath/axes/
NodeSequence.java 43 protected int m_last = -1; field in class:NodeSequence
190 m_last = ((DTMIterator)nodeVector).getLength();
203 m_last = 0;
325 else if(cacheComplete() || (-1 != m_last) || (null == m_iter))
362 m_last = m_next;
578 m_last = vec.size();
602 // m_last will not reflect the size of the nodeset if
609 if(-1 == m_last)
615 return m_last;
619 return (-1 == m_last) ? (m_last = m_iter.getLength()) : m_last
    [all...]
  /external/webkit/WebCore/bindings/v8/
DOMDataStore.h 56 ChunkedTable() : m_chunks(0), m_current(0), m_last(0) { }
60 if (m_current == m_last) {
63 m_last = m_current + CHUNK_SIZE;
65 ASSERT((m_chunks->m_entries <= m_current) && (m_current < m_last));
81 m_current = m_last = m_chunks ? m_chunks->m_entries + CHUNK_SIZE : 0;
84 ASSERT(!m_chunks || ((m_chunks->m_entries < m_current) && (m_current <= m_last)));
105 m_last = m_current + CHUNK_SIZE;
139 T* m_last; member in class:WebCore::ChunkedTable
  /libcore/luni/src/main/java/org/apache/xml/serializer/
EncodingInfo.java 42 * <code>m_last</code>). It will handle a certain range of values
47 * <code>m_explLast < value <= m_last</code>, but delgating to <code>m_after</code>
213 m_last,
260 m_last,
286 * m_first through m_last is the range of unicode
300 final private int m_last; field in class:EncodingInfo.EncodingImpl
347 m_last = last;
  /libcore/luni/src/main/java/org/apache/xpath/objects/
XNodeSetForDOM.java 71 m_last=nsdtm.getLength();
85 m_last=nsdtm.getLength();
XNodeSet.java 61 m_last = nodeSet.m_last;
84 m_last = val.m_last;
114 m_last = 1;
117 m_last = 0;
  /external/webkit/WebCore/css/
CSSStyleSelector.h 323 , m_last(m_first)
340 CSSRuleData* last() { return m_last; }
342 void append(unsigned pos, CSSStyleRule* rule, CSSSelector* sel) { m_last = new CSSRuleData(pos, rule, sel, m_last); }
346 CSSRuleData* m_last; member in class:WebCore::CSSRuleDataList
  /libcore/luni/src/main/java/org/apache/xpath/
NodeSetDTM.java 1212 transient private int m_last = 0; field in class:NodeSetDTM
    [all...]
NodeSet.java 810 transient private int m_last = 0; field in class:NodeSet
814 return m_last;
819 m_last = last;
    [all...]
  /external/webkit/WebCore/rendering/
RenderLayer.h 176 RenderLayer* lastChild() const { return m_last; }
466 void setLastChild(RenderLayer* last) { m_last = last; }
572 RenderLayer* m_last; member in class:WebCore::RenderLayer
RenderLayer.cpp 134 , m_last(0)
922 if (m_last == oldChild)
923 m_last = oldChild->previousSibling();
    [all...]

Completed in 331 milliseconds