Home | History | Annotate | Download | only in parser

Lines Matching refs:SegmentedString

30 #include "core/platform/text/SegmentedString.h"
59 void appendToEnd(const SegmentedString& string)
64 void insertAtCurrentInsertionPoint(const SegmentedString& string)
76 m_last->append(SegmentedString(String(&kEndOfFileMarker, 1)));
90 SegmentedString& current() { return m_first; }
91 const SegmentedString& current() const { return m_first; }
93 void splitInto(SegmentedString& next)
96 m_first = SegmentedString();
98 // We used to only have one SegmentedString in the InputStream
105 void mergeFrom(SegmentedString& next)
109 // The string |next| used to be the last SegmentedString in
122 SegmentedString m_first;
123 SegmentedString* m_last;
152 SegmentedString m_next;