Home
last modified time | relevance | path

Searched refs:m_last (Results 1 – 16 of 16) sorted by relevance

/external/webkit/Source/WebCore/html/parser/
DHTMLInputStream.h54 : m_last(&m_first) in HTMLInputStream()
60 m_last->append(string); in appendToEnd()
70 return &m_first != m_last; in hasInsertionPoint()
78 m_last->append(SegmentedString(String(&endOfFileMarker, 1))); in markEndOfFile()
79 m_last->close(); in markEndOfFile()
84 return m_last->isClosed(); in haveSeenEndOfFile()
94 if (m_last == &m_first) { in splitInto()
98 m_last = &next; in splitInto()
105 if (m_last == &next) { in mergeFrom()
109 m_last = &m_first; in mergeFrom()
[all …]
DHTMLEntitySearch.cpp47 , m_last(HTMLEntityTable::lastEntry()) in HTMLEntitySearch()
64 const HTMLEntityTableEntry* right = m_last; in findFirst()
89 const HTMLEntityTableEntry* right = m_last; in findLast()
116 m_last = HTMLEntityTable::lastEntryStartingWith(nextCharacter); in advance()
117 if (!m_first || !m_last) in advance()
121 m_last = findLast(nextCharacter); in advance()
122 if (m_first == m_last && compare(m_first, nextCharacter) != Prefix) in advance()
DHTMLEntitySearch.h62 m_last = 0; in fail()
70 const HTMLEntityTableEntry* m_last; variable
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DDTMAxisIterNodeList.java62 private int m_last = -1; field in DTMAxisIterNodeList
74 m_last = 0; in DTMAxisIterNodeList()
112 } else if (m_last == -1) { in item()
119 m_last = count; in item()
133 if (m_last == -1) { in getLength()
138 m_last = m_cachedNodes.size(); in getLength()
140 return m_last; in getLength()
/external/webkit/Source/WebCore/platform/text/
DBidiResolver.h204 Iterator m_last; variable
283 if (!m_emptyRun && m_eor != m_last) { in lowerExplicitEmbeddingLevel()
304 m_eor = m_last; in lowerExplicitEmbeddingLevel()
321 if (!m_emptyRun && m_eor != m_last) { in raiseExplicitEmbeddingLevel()
344 m_eor = m_last; in raiseExplicitEmbeddingLevel()
501 m_last = m_current; in createBidiRunsForLine()
578 m_eor = m_last; in createBidiRunsForLine()
589 m_eor = m_last; in createBidiRunsForLine()
596 m_eor = m_last; in createBidiRunsForLine()
629 m_eor = m_last; in createBidiRunsForLine()
[all …]
/external/webkit/Source/WebCore/bindings/v8/
DIntrusiveDOMWrapperMap.h42 ChunkedTable() : m_chunks(0), m_current(0), m_last(0) { } in ChunkedTable()
46 if (m_current == m_last) { in add()
49 m_last = m_current + CHUNK_SIZE; in add()
51 ASSERT((m_chunks->m_entries <= m_current) && (m_current < m_last)); in add()
67 m_current = m_last = m_chunks ? m_chunks->m_entries + CHUNK_SIZE : 0; in remove()
70 ASSERT(!m_chunks || ((m_chunks->m_entries < m_current) && (m_current <= m_last))); in remove()
91 m_last = m_current + CHUNK_SIZE; in clear()
125 T* m_last; variable
/external/apache-xml/src/main/java/org/apache/xpath/axes/
DNodeSequence.java43 protected int m_last = -1; field in NodeSequence
190 m_last = ((DTMIterator)nodeVector).getLength(); in NodeSequence()
203 m_last = 0; in NodeSequence()
325 else if(cacheComplete() || (-1 != m_last) || (null == m_iter)) in nextNode()
362 m_last = m_next; in nextNode()
578 m_last = vec.size(); in setItem()
609 if(-1 == m_last) in getLength()
615 return m_last; in getLength()
619 return (-1 == m_last) ? (m_last = m_iter.getLength()) : m_last; in getLength()
/external/apache-xml/src/main/java/org/apache/xml/serializer/
DEncodingInfo.java213 m_last, in isInEncoding()
260 m_last, in isInEncoding()
300 final private int m_last; field in EncodingInfo.EncodingImpl
347 m_last = last; in EncodingImpl()
/external/apache-xml/src/main/java/org/apache/xpath/objects/
DXNodeSet.java61 m_last = nodeSet.m_last; in XNodeSet()
84 m_last = val.m_last; in XNodeSet()
114 m_last = 1; in XNodeSet()
117 m_last = 0; in XNodeSet()
DXNodeSetForDOM.java71 m_last=nsdtm.getLength(); in XNodeSetForDOM()
85 m_last=nsdtm.getLength(); in XNodeSetForDOM()
/external/apache-xml/src/main/java/org/apache/xpath/
DNodeSetDTM.java1212 transient private int m_last = 0; field in NodeSetDTM
1216 return m_last; in getLast()
1221 m_last = last; in setLast()
DNodeSet.java810 transient private int m_last = 0; field in NodeSet
814 return m_last; in getLast()
819 m_last = last; in setLast()
/external/webkit/Source/WebCore/rendering/
DRenderLayer.h170 RenderLayer* lastChild() const { return m_last; } in lastChild()
494 void setLastChild(RenderLayer* last) { m_last = last; } in setLastChild()
655 RenderLayer* m_last; variable
DRenderLayer.cpp141 , m_last(0) in RenderLayer()
1073 if (m_last == oldChild) in removeChild()
1074 m_last = oldChild->previousSibling(); in removeChild()
/external/webkit/Source/WebCore/
DChangeLog34187 Rename BidiResolver::last to m_last to match modern style
DChangeLog-2007-10-1468166 * rendering/RenderContainer.h: Renamed m_first and m_last to m_firstChild