Home | History | Annotate | Download | only in parser

Lines Matching refs:m_first

55         : m_last(&m_first)
66 m_first.append(string);
71 return &m_first != m_last;
90 SegmentedString& current() { return m_first; }
91 const SegmentedString& current() const { return m_first; }
95 next = m_first;
96 m_first = SegmentedString();
97 if (m_last == &m_first) {
99 // but now we have two. That means m_first is no longer also
107 m_first.append(next);
110 // the InputStream. Now that it's been merged into m_first,
111 // that makes m_first the last one.
112 m_last = &m_first;
116 // m_first. Arguably, this work could be done in append().
117 m_first.close();
122 SegmentedString m_first;