Searched refs:sawError (Results 1 - 20 of 20) sorted by relevance

/macosx-10.10/WebCore-7600.1.25/platform/text/
H A DTextCodecUTF8.h42 virtual String decode(const char*, size_t length, bool flush, bool stopOnError, bool& sawError);
46 bool handlePartialSequence(CharType*& destination, const uint8_t*& source, const uint8_t* end, bool flush, bool stopOnError, bool& sawError);
47 void handleError(UChar*& destination, bool stopOnError, bool& sawError);
H A DTextCodecLatin1.h38 virtual String decode(const char*, size_t length, bool flush, bool stopOnError, bool& sawError);
H A DTextCodecUserDefined.h38 virtual String decode(const char*, size_t length, bool flush, bool stopOnError, bool& sawError);
H A DTextCodecUTF16.h40 virtual String decode(const char*, size_t length, bool flush, bool stopOnError, bool& sawError);
H A DTextCodecUTF8.cpp159 void TextCodecUTF8::handleError(UChar*& destination, bool stopOnError, bool& sawError) argument
161 sawError = true;
213 bool TextCodecUTF8::handlePartialSequence<UChar>(UChar*& destination, const uint8_t*& source, const uint8_t* end, bool flush, bool stopOnError, bool& sawError) argument
224 handleError(destination, stopOnError, sawError);
239 handleError(destination, stopOnError, sawError);
250 handleError(destination, stopOnError, sawError);
263 String TextCodecUTF8::decode(const char* bytes, size_t length, bool flush, bool stopOnError, bool& sawError) argument
282 if (handlePartialSequence(destinationForHandlePartialSequence, sourceForHandlePartialSequence, end, flush, stopOnError, sawError)) {
328 sawError = true;
362 handlePartialSequence(destinationForHandlePartialSequence, sourceForHandlePartialSequence, end, flush, stopOnError, sawError);
[all...]
H A DTextCodec.h70 virtual String decode(const char*, size_t length, bool flush, bool stopOnError, bool& sawError) = 0;
H A DTextCodecICU.h48 virtual String decode(const char*, size_t length, bool flush, bool stopOnError, bool& sawError);
H A DTextEncoding.cpp59 String TextEncoding::decode(const char* data, size_t length, bool stopOnError, bool& sawError) const
64 return newTextCodec(*this)->decode(data, length, true, stopOnError, sawError);
H A DTextEncoding.h71 String decode(const char*, size_t length, bool stopOnError, bool& sawError) const;
H A DTextCodecICU.cpp358 String TextCodecICU::decode(const char* bytes, size_t length, bool flush, bool stopOnError, bool& sawError) argument
391 sawError = true;
/macosx-10.10/WebCore-7600.1.25/
H A Dextract-localizable-strings.pl83 my $sawError = 0;
157 $sawError = 1;
169 $sawError = 1;
220 $sawError = 1;
232 $sawError = 1;
238 $sawError = 1;
274 $sawError = 1;
341 $sawError = 1;
364 print "\n" if $sawError || $notLocalizedCount || $NSLocalizeCount;
380 if ($sawError) {
[all...]
/macosx-10.10/WebCore-7600.1.25/platform/text/mac/
H A DTextCodecMac.h48 virtual String decode(const char*, size_t length, bool flush, bool stopOnError, bool& sawError);
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;
/macosx-10.10/WebCore-7600.1.25/platform/text/win/
H A DTextCodecWin.h48 virtual String decode(const char*, size_t length, bool flush, bool stopOnError, bool& sawError);
H A DTextCodecWin.cpp237 String TextCodecWin::decode(const char* bytes, size_t length, bool flush, bool stopOnError, bool& sawError) argument
256 sawError = true;
/macosx-10.10/WebCore-7600.1.25/loader/
H A DTextResourceDecoder.h69 bool sawError() const { return m_sawError; } function in class:WebCore::TextResourceDecoder
/macosx-10.10/WebCore-7600.1.25/loader/cache/
H A DCachedFont.cpp140 if (decoder->sawError())
/macosx-10.10/JavaScriptCore-7600.1.17/parser/
H A DLexer.h105 bool sawError() const { return m_error; } function in class:JSC::Lexer
H A DParser.h880 bool lexError = m_lexer->sawError();
/macosx-10.10/WebCore-7600.1.25/xml/parser/
H A DXMLDocumentParserLibxml2.cpp694 if (document()->decoder() && document()->decoder()->sawError()) {

Completed in 1298 milliseconds