Home
last modified time | relevance | path

Searched refs:SegmentedString (Results 1 – 25 of 47) sorted by relevance

12

/external/webkit/Source/WebCore/platform/text/
DSegmentedString.cpp25 SegmentedString::SegmentedString(const SegmentedString& other) in SegmentedString() function in WebCore::SegmentedString
40 const SegmentedString& SegmentedString::operator=(const SegmentedString& other) in operator =()
60 unsigned SegmentedString::length() const in length()
77 void SegmentedString::setExcludeLineNumbers() in setExcludeLineNumbers()
88 void SegmentedString::clear() in clear()
98 void SegmentedString::append(const SegmentedSubstring& s) in append()
111 void SegmentedString::prepend(const SegmentedSubstring& s) in prepend()
134 void SegmentedString::close() in close()
141 void SegmentedString::append(const SegmentedString& s) in append()
155 void SegmentedString::prepend(const SegmentedString& s) in prepend()
[all …]
DSegmentedString.h29 class SegmentedString; variable
77 class SegmentedString {
79 SegmentedString() in SegmentedString() function
90 SegmentedString(const String& str) in SegmentedString() function
102 SegmentedString(const SegmentedString&);
104 const SegmentedString& operator=(const SegmentedString&);
109 void append(const SegmentedString&);
110 void prepend(const SegmentedString&);
137 …LookAheadResult lookAhead(const String& string) { return lookAheadInline<SegmentedString::equalsLi… in lookAhead()
138 …lookAheadIgnoringCase(const String& string) { return lookAheadInline<SegmentedString::equalsIgnori… in lookAheadIgnoringCase()
[all …]
/external/webkit/Source/WebCore/html/parser/
DHTMLInputStream.h58 void appendToEnd(const SegmentedString& string) in appendToEnd()
63 void insertAtCurrentInsertionPoint(const SegmentedString& string) in insertAtCurrentInsertionPoint()
78 m_last->append(SegmentedString(String(&endOfFileMarker, 1))); in markEndOfFile()
87 SegmentedString& current() { return m_first; } in current()
88 const SegmentedString& current() const { return m_first; } in current()
90 void splitInto(SegmentedString& next) in splitInto()
93 m_first = SegmentedString(); in splitInto()
102 void mergeFrom(SegmentedString& next) in mergeFrom()
119 SegmentedString m_first;
120 SegmentedString* m_last;
[all …]
DHTMLTokenizer.h131 bool nextToken(SegmentedString&, HTMLToken&);
191 ALWAYS_INLINE bool peek(SegmentedString& source, int& lineNumber) in peek()
236 bool advance(SegmentedString& source, int& lineNumber) in advance()
247 bool shouldTreatNullAsEndOfFileMarker(SegmentedString& source) const in shouldTreatNullAsEndOfFileMarker()
261 inline bool processEntity(SegmentedString&);
267 inline bool emitAndResumeIn(SegmentedString&, State);
268 inline bool emitAndReconsumeIn(SegmentedString&, State);
269 inline bool emitEndOfFile(SegmentedString&);
270 inline bool flushEmitAndResumeIn(SegmentedString&, State);
274 inline bool flushBufferedEndTag(SegmentedString&);
DHTMLPreloadScanner.h39 class SegmentedString; variable
46 void appendToEnd(const SegmentedString&);
54 SegmentedString m_source;
DHTMLTokenizer.cpp65 inline void advanceStringAndASSERTIgnoringCase(SegmentedString& source, const char* expectedCharact… in advanceStringAndASSERTIgnoringCase()
71 inline void advanceStringAndASSERT(SegmentedString& source, const char* expectedCharacters) in advanceStringAndASSERT()
128 inline bool HTMLTokenizer::processEntity(SegmentedString& source) in processEntity()
199 bool HTMLTokenizer::emitAndResumeIn(SegmentedString& source, State state) in emitAndResumeIn()
208 bool HTMLTokenizer::emitAndReconsumeIn(SegmentedString&, State state) in emitAndReconsumeIn() argument
217 bool HTMLTokenizer::emitEndOfFile(SegmentedString& source) in emitEndOfFile()
228 bool HTMLTokenizer::flushBufferedEndTag(SegmentedString& source) in flushBufferedEndTag()
251 bool HTMLTokenizer::flushEmitAndResumeIn(SegmentedString& source, State state) in flushEmitAndResumeIn()
258 bool HTMLTokenizer::nextToken(SegmentedString& source, HTMLToken& token) in nextToken()
1138 SegmentedString::LookAheadResult result = source.lookAhead(dashDashString); in nextToken()
[all …]
DHTMLViewSourceParser.h61 virtual void insert(const SegmentedString&);
62 virtual void append(const SegmentedString&);
DHTMLViewSourceParser.cpp45 void HTMLViewSourceParser::insert(const SegmentedString&) in insert() argument
64 void HTMLViewSourceParser::append(const SegmentedString& input) in append()
DHTMLEntityParser.cpp88 void unconsumeCharacters(SegmentedString& source, const Vector<UChar, 10>& consumedCharacters) in unconsumeCharacters()
96 … source.prepend(SegmentedString(String(consumedCharacters.data(), consumedCharacters.size()))); in unconsumeCharacters()
101 bool consumeHTMLEntity(SegmentedString& source, Vector<UChar, 16>& decodedEntity, bool& notEnoughCh… in consumeHTMLEntity()
DHTMLDocumentParser.cpp312 void HTMLDocumentParser::insert(const SegmentedString& source) in insert()
321 SegmentedString excludedLineNumberSource(source); in insert()
337 void HTMLDocumentParser::append(const SegmentedString& source) in append()
461 const SegmentedString& currentString = m_input.current(); in textPosition()
DHTMLDocumentParser.h87 virtual void insert(const SegmentedString&);
88 virtual void append(const SegmentedString&);
DHTMLEntityParser.h34 bool consumeHTMLEntity(SegmentedString&, Vector<UChar, 16>& decodedEntity, bool& notEnoughCharacter…
DHTMLSourceTracker.h49 SegmentedString m_source;
DTextDocumentParser.h44 virtual void append(const SegmentedString&);
DHTMLMetaCharsetParser.h65 SegmentedString m_input;
DTextDocumentParser.cpp48 void TextDocumentParser::append(const SegmentedString& text) in append()
DHTMLMetaCharsetParser.cpp166 m_input.append(SegmentedString(m_assumedCodec->decode(data, length))); in checkForMetaCharset()
/external/webkit/Source/WebCore/dom/
DDocumentParser.h33 class SegmentedString; variable
46 virtual void insert(const SegmentedString&) = 0;
53 virtual void append(const SegmentedString&) = 0;
DRawDataDocumentParser.h47 virtual void insert(const SegmentedString&) in insert() argument
53 virtual void append(const SegmentedString&) in append() argument
DXMLDocumentParser.h57 virtual bool write(const SegmentedString &str, bool);
127 SegmentedString m_pendingSrc;
226 virtual void insert(const SegmentedString&);
227 virtual void append(const SegmentedString&);
332 SegmentedString m_pendingSrc;
DDecodedDataDocumentParser.h44 virtual void append(const SegmentedString&) = 0;
DXMLDocumentParser.cpp119 void XMLDocumentParser::insert(const SegmentedString&) in insert() argument
124 void XMLDocumentParser::append(const SegmentedString& s) in append()
/external/webkit/Source/WebCore/bindings/cpp/
DWebDOMHTMLDocumentCustom.cpp31 WebCore::SegmentedString segmentedString = WTF::String(text); in documentWrite()
33 … segmentedString.append(WebCore::SegmentedString(WTF::String(&WTF::Unicode::newlineCharacter))); in documentWrite()
/external/webkit/Source/WebCore/bindings/js/
DJSHTMLDocumentCustom.cpp141 SegmentedString segmentedString = ustringToString(firstString); in documentWrite()
148 segmentedString.append(SegmentedString(ustringToString(subsequentString))); in documentWrite()
153 segmentedString.append(SegmentedString(String(&newlineCharacter, 1))); in documentWrite()
/external/webkit/Source/WebCore/html/
DFTPDirectoryDocument.cpp58 virtual void append(const SegmentedString&);
359 void FTPDirectoryDocumentParser::append(const SegmentedString& source) in append()
372 SegmentedString str = source; in append()

12