Home
last modified time | relevance | path

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

/external/chromium_org/third_party/WebKit/Source/core/html/parser/
DHTMLInputStream.h55 : m_last(&m_first) in HTMLInputStream()
61 m_last->append(string); in appendToEnd()
71 return &m_first != m_last; in hasInsertionPoint()
76 m_last->append(SegmentedString(String(&kEndOfFileMarker, 1))); in markEndOfFile()
77 m_last->close(); in markEndOfFile()
82 m_last->close(); in closeWithoutMarkingEndOfFile()
87 return m_last->isClosed(); in haveSeenEndOfFile()
97 if (m_last == &m_first) { in splitInto()
101 m_last = &next; in splitInto()
108 if (m_last == &next) { in mergeFrom()
[all …]
DHTMLEntitySearch.cpp42 , m_last(HTMLEntityTable::lastEntry()) in HTMLEntitySearch()
59 const HTMLEntityTableEntry* right = m_last; in findFirst()
84 const HTMLEntityTableEntry* right = m_last; in findLast()
111 m_last = HTMLEntityTable::lastEntryStartingWith(nextCharacter); in advance()
112 if (!m_first || !m_last) in advance()
116 m_last = findLast(nextCharacter); in advance()
117 if (m_first == m_last && compare(m_first, nextCharacter) != Prefix) in advance()
DHTMLEntitySearch.h60 m_last = 0; in fail()
67 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/chromium_org/third_party/WebKit/Source/platform/text/
DBidiResolver.h250 Iterator m_last; variable
347 if (!m_emptyRun && m_eor != m_last) { in lowerExplicitEmbeddingLevel()
368 m_eor = m_last; in lowerExplicitEmbeddingLevel()
385 if (!m_emptyRun && m_eor != m_last) { in raiseExplicitEmbeddingLevel()
408 m_eor = m_last; in raiseExplicitEmbeddingLevel()
615 m_last = m_current; in createBidiRunsForLine()
632 stateAtEnd.m_last = m_last; in createBidiRunsForLine()
636 m_endOfRunAtEndOfLine = m_last; in createBidiRunsForLine()
716 m_eor = m_last; in createBidiRunsForLine()
727 m_eor = m_last; in createBidiRunsForLine()
[all …]
/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/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderLayer.h102 RenderLayer* lastChild() const { return m_last; } in lastChild()
501 void setLastChild(RenderLayer* last) { m_last = last; } in setLastChild()
682 RenderLayer* m_last; variable
DInlineIterator.h446 m_last = m_current; in isEndOfLine()
DRenderLayer.cpp132 , m_last(0) in RenderLayer()
1443 if (m_last == oldChild) in removeChild()
1444 m_last = oldChild->previousSibling(); in removeChild()