HomeSort by relevance Sort by last modified time
    Searched full:segmentedstring (Results 1 - 25 of 45) sorted by null

1 2

  /external/webkit/Source/WebCore/platform/text/
SegmentedString.cpp 21 #include "SegmentedString.h"
25 SegmentedString::SegmentedString(const SegmentedString& other)
40 const SegmentedString& SegmentedString::operator=(const SegmentedString& other)
60 unsigned SegmentedString::length() const
77 void SegmentedString::setExcludeLineNumbers()
88 void SegmentedString::clear(
    [all...]
SegmentedString.h 29 class SegmentedString;
77 class SegmentedString {
79 SegmentedString()
90 SegmentedString(const String& str)
102 SegmentedString(const SegmentedString&);
104 const SegmentedString& operator=(const SegmentedString&);
109 void append(const SegmentedString&);
110 void prepend(const SegmentedString&)
    [all...]
  /external/webkit/Source/WebCore/bindings/cpp/
WebDOMHTMLDocumentCustom.cpp 24 #include "SegmentedString.h"
31 WebCore::SegmentedString segmentedString = WTF::String(text);
33 segmentedString.append(WebCore::SegmentedString(WTF::String(&WTF::Unicode::newlineCharacter)));
34 document->write(segmentedString);
  /external/webkit/Source/WebCore/html/parser/
HTMLInputStream.h 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
    [all...]
HTMLPreloadScanner.h 32 #include "SegmentedString.h"
39 class SegmentedString;
46 void appendToEnd(const SegmentedString&);
54 SegmentedString m_source;
HTMLTokenizer.h 30 #include "SegmentedString.h"
131 bool nextToken(SegmentedString&, HTMLToken&);
191 ALWAYS_INLINE bool peek(SegmentedString& source, int& lineNumber)
236 bool advance(SegmentedString& source, int& lineNumber)
247 bool shouldTreatNullAsEndOfFileMarker(SegmentedString& source) const
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)
    [all...]
HTMLEntityParser.h 30 #include "SegmentedString.h"
34 bool consumeHTMLEntity(SegmentedString&, Vector<UChar, 16>& decodedEntity, bool& notEnoughCharacters, UChar additionalAllowedCharacter = '\0');
HTMLMetaCharsetParser.h 30 #include "SegmentedString.h"
65 SegmentedString m_input;
HTMLViewSourceParser.h 61 virtual void insert(const SegmentedString&);
62 virtual void append(const SegmentedString&);
HTMLDocumentParser.h 36 #include "SegmentedString.h"
87 virtual void insert(const SegmentedString&);
88 virtual void append(const SegmentedString&);
HTMLTokenizer.cpp 65 inline void advanceStringAndASSERTIgnoringCase(SegmentedString& source, const char* expectedCharacters)
71 inline void advanceStringAndASSERT(SegmentedString& source, const char* expectedCharacters)
128 inline bool HTMLTokenizer::processEntity(SegmentedString& source)
199 bool HTMLTokenizer::emitAndResumeIn(SegmentedString& source, State state)
208 bool HTMLTokenizer::emitAndReconsumeIn(SegmentedString&, State state)
217 bool HTMLTokenizer::emitEndOfFile(SegmentedString& source)
228 bool HTMLTokenizer::flushBufferedEndTag(SegmentedString& source)
251 bool HTMLTokenizer::flushEmitAndResumeIn(SegmentedString& source, State state)
258 bool HTMLTokenizer::nextToken(SegmentedString& source, HTMLToken& token)
    [all...]
HTMLViewSourceParser.cpp 45 void HTMLViewSourceParser::insert(const SegmentedString&)
64 void HTMLViewSourceParser::append(const SegmentedString& input)
TextDocumentParser.h 44 virtual void append(const SegmentedString&);
HTMLSourceTracker.h 49 SegmentedString m_source;
HTMLEntityParser.cpp 88 void unconsumeCharacters(SegmentedString& source, const Vector<UChar, 10>& consumedCharacters)
96 source.prepend(SegmentedString(String(consumedCharacters.data(), consumedCharacters.size())));
101 bool consumeHTMLEntity(SegmentedString& source, Vector<UChar, 16>& decodedEntity, bool& notEnoughCharacters, UChar additionalAllowedCharacter)
TextDocumentParser.cpp 48 void TextDocumentParser::append(const SegmentedString& text)
HTMLDocumentParser.cpp 312 void HTMLDocumentParser::insert(const SegmentedString& source)
321 SegmentedString excludedLineNumberSource(source);
337 void HTMLDocumentParser::append(const SegmentedString& source)
461 const SegmentedString& currentString = m_input.current();
  /external/webkit/Source/WebCore/bindings/js/
JSHTMLDocumentCustom.cpp 41 #include "SegmentedString.h"
141 SegmentedString segmentedString = ustringToString(firstString);
144 segmentedString.clear();
148 segmentedString.append(SegmentedString(ustringToString(subsequentString)));
153 segmentedString.append(SegmentedString(String(&newlineCharacter, 1)));
156 document->write(segmentedString, activeDocument);
  /external/webkit/Source/WebCore/dom/
RawDataDocumentParser.h 47 virtual void insert(const SegmentedString&)
53 virtual void append(const SegmentedString&)
XMLDocumentParser.h 31 #include "SegmentedString.h"
57 virtual bool write(const SegmentedString &str, bool);
127 SegmentedString m_pendingSrc;
141 #include "SegmentedString.h"
226 virtual void insert(const SegmentedString&);
227 virtual void append(const SegmentedString&);
332 SegmentedString m_pendingSrc;
DocumentParser.h 33 class SegmentedString;
46 virtual void insert(const SegmentedString&) = 0;
53 virtual void append(const SegmentedString&) = 0;
DecodedDataDocumentParser.cpp 30 #include "SegmentedString.h"
DecodedDataDocumentParser.h 44 virtual void append(const SegmentedString&) = 0;
XMLDocumentParser.cpp 119 void XMLDocumentParser::insert(const SegmentedString&)
124 void XMLDocumentParser::append(const SegmentedString& s)
  /external/webkit/Source/WebCore/html/
FTPDirectoryDocument.cpp 35 #include "SegmentedString.h"
58 virtual void append(const SegmentedString&);
359 void FTPDirectoryDocumentParser::append(const SegmentedString& source)
372 SegmentedString str = source;

Completed in 252 milliseconds

1 2