Home | History | Annotate | Download | only in parser

Lines Matching refs:SegmentedString

29 #include "SegmentedString.h"
58 void appendToEnd(const SegmentedString& string)
63 void insertAtCurrentInsertionPoint(const SegmentedString& string)
78 m_last->append(SegmentedString(String(&endOfFileMarker, 1)));
87 SegmentedString& current() { return m_first; }
88 const SegmentedString& current() const { return m_first; }
90 void splitInto(SegmentedString& next)
93 m_first = SegmentedString();
95 // We used to only have one SegmentedString in the InputStream
102 void mergeFrom(SegmentedString& next)
106 // The string |next| used to be the last SegmentedString in
119 SegmentedString m_first;
120 SegmentedString* m_last;
149 SegmentedString m_next;