HomeSort by relevance Sort by last modified time
    Searched refs:sawError (Results 1 - 25 of 30) sorted by null

1 2

  /external/webkit/Source/WebCore/platform/text/
TextCodecUTF8.h 42 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);
TextCodecLatin1.h 38 virtual String decode(const char*, size_t length, bool flush, bool stopOnError, bool& sawError);
TextCodecUTF16.h 40 virtual String decode(const char*, size_t length, bool flush, bool stopOnError, bool& sawError);
TextCodecUserDefined.h 38 virtual String decode(const char*, size_t length, bool flush, bool stopOnError, bool& sawError);
TextCodecUTF8.cpp 159 void TextCodecUTF8::handleError(UChar*& destination, bool stopOnError, bool& sawError)
161 sawError = true;
169 void TextCodecUTF8::handlePartialSequence(UChar*& destination, const uint8_t*& source, const uint8_t* end, bool flush, bool stopOnError, bool& sawError)
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)
235 handlePartialSequence(destinationForHandlePartialSequence, sourceForHandlePartialSequence, end, flush, stopOnError, sawError);
278 sawError = true;
TextCodec.h 72 virtual String decode(const char*, size_t length, bool flush, bool stopOnError, bool& sawError) = 0;
TextCodecICU.h 49 virtual String decode(const char*, size_t length, bool flush, bool stopOnError, bool& sawError);
TextEncoding.h 71 String decode(const char*, size_t length, bool stopOnError, bool& sawError) const;
TextEncoding.cpp 66 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/
check-for-weak-vtables-and-externals 57 my $sawError = 0;
62 $sawError = 1;
92 $sawError = 1;
102 $sawError = 1;
106 if ($sawError and !$coverageBuild) {
check-for-exit-time-destructors 69 my $sawError = 0;
78 $sawError = 1;
95 $sawError = 1 if printFunctions($shortName, $file);
98 if ($sawError and !$coverageBuild) {
check-for-global-initializers 69 my $sawError = 0;
78 $sawError = 1;
136 $sawError = 1;
140 if ($sawError and !$coverageBuild) {
extract-localizable-strings 75 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/brew/
TextCodecBrew.h 44 virtual String decode(const char*, size_t length, bool flush, bool stopOnError, bool& sawError);
TextCodecBrew.cpp 77 String TextCodecBrew::decode(const char* bytes, size_t length, bool flush, bool stopOnError, bool& sawError)
124 sawError = true;
136 sawError = true;
  /external/webkit/Source/WebCore/platform/text/qt/
TextCodecQt.h 43 virtual String decode(const char*, size_t length, bool flush, bool stopOnError, bool& sawError);
TextCodecQt.cpp 94 String TextCodecQt::decode(const char* bytes, size_t length, bool flush, bool /*stopOnError*/, bool& sawError)
116 sawError = m_state.invalidChars != 0;
  /external/webkit/Source/WebCore/platform/text/gtk/
TextCodecGtk.h 50 virtual String decode(const char*, size_t length, bool flush, bool stopOnError, bool& sawError);
TextCodecGtk.cpp 435 String TextCodecGtk::decode(const char* bytes, size_t length, bool flush, bool stopOnError, bool& sawError)
493 sawError = true;
500 sawError = true;
509 } while ((inputLength || bufferWasFull) && !sawError);
  /external/webkit/Source/WebCore/platform/text/wince/
TextCodecWinCE.h 48 virtual String decode(const char*, size_t length, bool flush, bool stopOnError, bool& sawError);
  /external/webkit/Source/WebCore/platform/text/mac/
TextCodecMac.h 46 virtual String decode(const char*, size_t length, bool flush, bool stopOnError, bool& sawError);
TextCodecMac.cpp 198 String TextCodecMac::decode(const char* bytes, size_t length, bool flush, bool stopOnError, bool& sawError)
211 while ((sourceLength || bufferWasFull) && !sawError) {
228 sawError = true;
250 sawError = true;
  /external/webkit/Source/JavaScriptCore/parser/
Parser.cpp 60 bool lexError = lexer.sawError();
Lexer.h 67 bool sawError() const { return m_error; }
  /external/webkit/Source/WebCore/loader/
TextResourceDecoder.h 66 bool sawError() const { return m_sawError; }

Completed in 224 milliseconds

1 2