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

  /external/webkit/Source/WebCore/html/parser/
HTMLInputStream.h 36 // /\ (also called m_last)
47 // m_last is a pointer to the last of the afterInsertionPoint strings.
54 : m_last(&m_first)
60 m_last->append(string);
70 return &m_first != m_last;
78 m_last->append(SegmentedString(String(&endOfFileMarker, 1)));
79 m_last->close();
84 return m_last->isClosed();
94 if (m_last == &m_first) {
97 // the m_last string, |next| is now the last one
120 SegmentedString* m_last; member in class:WebCore::HTMLInputStream
    [all...]
HTMLEntitySearch.h 62 m_last = 0;
70 const HTMLEntityTableEntry* m_last; member in class:WebCore::HTMLEntitySearch
HTMLEntitySearch.cpp 47 , m_last(HTMLEntityTable::lastEntry())
64 const HTMLEntityTableEntry* right = m_last;
89 const HTMLEntityTableEntry* right = m_last;
116 m_last = HTMLEntityTable::lastEntryStartingWith(nextCharacter);
117 if (!m_first || !m_last)
121 m_last = findLast(nextCharacter);
122 if (m_first == m_last && compare(m_first, nextCharacter) != Prefix)
  /external/apache-xml/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;
  /external/apache-xml/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/Source/WebCore/bindings/v8/
IntrusiveDOMWrapperMap.h 42 ChunkedTable() : m_chunks(0), m_current(0), m_last(0) { }
46 if (m_current == m_last) {
49 m_last = m_current + CHUNK_SIZE;
51 ASSERT((m_chunks->m_entries <= m_current) && (m_current < m_last));
67 m_current = m_last = m_chunks ? m_chunks->m_entries + CHUNK_SIZE : 0;
70 ASSERT(!m_chunks || ((m_chunks->m_entries < m_current) && (m_current <= m_last)));
91 m_last = m_current + CHUNK_SIZE;
125 T* m_last; member in class:WebCore::ChunkedTable
  /external/webkit/Source/WebCore/platform/text/
BidiResolver.h 204 Iterator m_last; member in class:WebCore::BidiResolver
283 if (!m_emptyRun && m_eor != m_last) {
304 m_eor = m_last;
321 if (!m_emptyRun && m_eor != m_last) {
344 m_eor = m_last;
501 m_last = m_current;
578 m_eor = m_last;
589 m_eor = m_last;
596 m_eor = m_last;
629 m_eor = m_last;
    [all...]
  /external/apache-xml/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;
  /external/apache-xml/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/apache-xml/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/Source/WebCore/rendering/
RenderLayer.h 170 RenderLayer* lastChild() const { return m_last; }
494 void setLastChild(RenderLayer* last) { m_last = last; }
655 RenderLayer* m_last; member in class:WebCore::RenderLayer
    [all...]
RenderLayer.cpp 141 , m_last(0)
    [all...]

Completed in 690 milliseconds