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

12

/external/webkit/Source/WebCore/platform/text/
H A DTextCodecUTF8.h42 virtual String decode(const char*, size_t length, bool flush, bool stopOnError, bool& sawError);
45 void handlePartialSequence(UChar*& destination, const uint8_t*& source, const uint8_t* end, bool flush, bool stopOnError, bool& sawError);
46 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;
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 DTextCodec.h72 virtual String decode(const char*, size_t length, bool flush, bool stopOnError, bool& sawError) = 0;
H A DTextCodecICU.h49 virtual String decode(const char*, size_t length, bool flush, bool stopOnError, bool& sawError);
H A DTextEncoding.h71 String decode(const char*, size_t length, bool stopOnError, bool& sawError) const;
H A DTextEncoding.cpp66 String TextEncoding::decode(const char* data, size_t length, bool stopOnError, bool& sawError) const
71 return newTextCodec(*this)->decode(data, length, true, stopOnError, sawError);
/external/webkit/Tools/Scripts/
H A Dcheck-for-weak-vtables-and-externals57 my $sawError = 0;
62 $sawError = 1;
92 $sawError = 1;
102 $sawError = 1;
106 if ($sawError and !$coverageBuild) {
H A Dcheck-for-exit-time-destructors69 my $sawError = 0;
78 $sawError = 1;
95 $sawError = 1 if printFunctions($shortName, $file);
98 if ($sawError and !$coverageBuild) {
H A Dcheck-for-global-initializers69 my $sawError = 0;
78 $sawError = 1;
136 $sawError = 1;
140 if ($sawError and !$coverageBuild) {
H A Dextract-localizable-strings75 my $sawError = 0;
147 $sawError = 1;
159 $sawError = 1;
210 $sawError = 1;
222 $sawError = 1;
228 $sawError = 1;
264 $sawError = 1;
331 $sawError = 1;
354 print "\n" if $sawError || $notLocalizedCount || $NSLocalizeCount;
370 if ($sawError) {
[all...]
/external/webkit/Source/WebCore/platform/text/qt/
H A DTextCodecQt.h43 virtual String decode(const char*, size_t length, bool flush, bool stopOnError, bool& sawError);
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/WebCore/platform/text/brew/
H A DTextCodecBrew.h44 virtual String decode(const char*, size_t length, bool flush, bool stopOnError, bool& sawError);
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/gtk/
H A DTextCodecGtk.h50 virtual String decode(const char*, size_t length, bool flush, bool stopOnError, bool& sawError);
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.h46 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;
/external/webkit/Source/WebCore/platform/text/wince/
H A DTextCodecWinCE.h48 virtual String decode(const char*, size_t length, bool flush, bool stopOnError, bool& sawError);
/external/webkit/Source/JavaScriptCore/parser/
H A DParser.cpp53 bool lexError = lexer.sawError();
H A DLexer.h67 bool sawError() const { return m_error; } function in class:JSC::Lexer
/external/webkit/Source/WebCore/loader/
H A DTextResourceDecoder.h66 bool sawError() const { return m_sawError; } function in class:WebCore::TextResourceDecoder

Completed in 232 milliseconds

12