Searched defs:sawError (Results 1 - 9 of 9) sorted by relevance

/external/webkit/Source/WebCore/loader/
H A DTextResourceDecoder.h66 bool sawError() const { return m_sawError; } function in class:WebCore::TextResourceDecoder
/external/webkit/Source/WebCore/platform/text/
H A DTextCodecUTF8.cpp159 void TextCodecUTF8::handleError(UChar*& destination, bool stopOnError, bool& sawError) argument
161 sawError = true;
169 void TextCodecUTF8::handlePartialSequence(UChar*& destination, const uint8_t*& source, const uint8_t* end, bool flush, bool stopOnError, bool& sawError) argument
180 handleError(destination, stopOnError, sawError);
195 handleError(destination, stopOnError, sawError);
206 handleError(destination, stopOnError, sawError);
216 String TextCodecUTF8::decode(const char* bytes, size_t length, bool flush, bool stopOnError, bool& sawError) argument
235 handlePartialSequence(destinationForHandlePartialSequence, sourceForHandlePartialSequence, end, flush, stopOnError, sawError);
278 sawError = true;
H A DTextCodecICU.cpp295 String TextCodecICU::decode(const char* bytes, size_t length, bool flush, bool stopOnError, bool& sawError) argument
328 sawError = true;
/external/webkit/Source/WebCore/platform/text/brew/
H A DTextCodecBrew.cpp77 String TextCodecBrew::decode(const char* bytes, size_t length, bool flush, bool stopOnError, bool& sawError) argument
124 sawError = true;
136 sawError = true;
/external/webkit/Source/WebCore/platform/text/qt/
H A DTextCodecQt.cpp94 String TextCodecQt::decode(const char* bytes, size_t length, bool flush, bool /*stopOnError*/, bool& sawError) argument
116 sawError = m_state.invalidChars != 0;
/external/webkit/Source/JavaScriptCore/parser/
H A DLexer.h67 bool sawError() const { return m_error; } function in class:JSC::Lexer
/external/webkit/Source/WebCore/platform/text/gtk/
H A DTextCodecGtk.cpp435 String TextCodecGtk::decode(const char* bytes, size_t length, bool flush, bool stopOnError, bool& sawError) argument
493 sawError = true;
500 sawError = true;
509 } while ((inputLength || bufferWasFull) && !sawError);
/external/webkit/Source/WebCore/platform/text/mac/
H A DTextCodecMac.cpp198 String TextCodecMac::decode(const char* bytes, size_t length, bool flush, bool stopOnError, bool& sawError) argument
211 while ((sourceLength || bufferWasFull) && !sawError) {
228 sawError = true;
250 sawError = true;
/external/webkit/Source/WebCore/platform/text/wince/
H A DTextCodecWinCE.cpp236 String TextCodecWinCE::decode(const char* bytes, size_t length, bool flush, bool stopOnError, bool& sawError) argument
255 sawError = true;

Completed in 2266 milliseconds