Home | History | Annotate | Download | only in parser

Lines Matching refs:m_last

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.
98 m_last = &next;
105 if (m_last == &next) {
109 m_last = &m_first;
120 SegmentedString* m_last;