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

/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DTextCodecUTF8Test.cpp54 bool sawError = false; local
55 const String& result = codec->decode(testCase, testCaseSize, DataEOF, false, sawError);
56 EXPECT_FALSE(sawError);
72 bool sawError = false; local
73 const String& result = codec->decode(testCase, testCaseSize, DataEOF, false, sawError);
74 EXPECT_FALSE(sawError);
85 bool sawError = false; local
86 const String& result = codec->decode("\xff", 1, DataEOF, false, sawError);
87 EXPECT_TRUE(sawError);
H A DTextCodecReplacement.cpp44 String TextCodecReplacement::decode(const char*, size_t, FlushBehavior, bool, bool& sawError) argument
46 sawError = true;
H A DTextCodecUTF8.h44 virtual String decode(const char*, size_t length, FlushBehavior, bool stopOnError, bool& sawError) override;
52 bool handlePartialSequence(CharType*& destination, const uint8_t*& source, const uint8_t* end, bool flush, bool stopOnError, bool& sawError);
53 void handleError(UChar*& destination, bool stopOnError, bool& sawError);
H A DTextCodecReplacement.h21 virtual String decode(const char*, size_t length, FlushBehavior, bool stopOnError, bool& sawError) override;
H A DTextCodecReplacementTest.cpp39 bool sawError = false; local
43 const String result = codec->decode(testCase, testCaseSize, DataEOF, false, sawError);
44 EXPECT_TRUE(sawError);
H A DTextCodecLatin1.h39 virtual String decode(const char*, size_t length, FlushBehavior, bool stopOnError, bool& sawError) override;
H A DTextCodecUTF16.h40 virtual String decode(const char*, size_t length, FlushBehavior, bool stopOnError, bool& sawError) override;
H A DTextCodecUserDefined.h39 virtual String decode(const char*, size_t length, FlushBehavior, bool stopOnError, bool& sawError) override;
H A DTextCodecUTF8.cpp164 void TextCodecUTF8::handleError(UChar*& destination, bool stopOnError, bool& sawError) argument
166 sawError = true;
218 bool TextCodecUTF8::handlePartialSequence<UChar>(UChar*& destination, const uint8_t*& source, const uint8_t* end, bool flush, bool stopOnError, bool& sawError) argument
229 handleError(destination, stopOnError, sawError);
244 handleError(destination, stopOnError, sawError);
255 handleError(destination, stopOnError, sawError);
268 String TextCodecUTF8::decode(const char* bytes, size_t length, FlushBehavior flush, bool stopOnError, bool& sawError) argument
287 if (handlePartialSequence(destinationForHandlePartialSequence, sourceForHandlePartialSequence, end, flush, stopOnError, sawError)) {
333 sawError = true;
367 handlePartialSequence(destinationForHandlePartialSequence, sourceForHandlePartialSequence, end, flush, stopOnError, sawError);
[all...]
H A DTextCodecUTF16.cpp70 String TextCodecUTF16::decode(const char* bytes, size_t length, FlushBehavior flush, bool, bool& sawError) argument
78 sawError = true;
122 sawError = true;
H A DTextCodec.h86 virtual String decode(const char*, size_t length, FlushBehavior, bool stopOnError, bool& sawError) = 0;
H A DTextCodecICU.h51 virtual String decode(const char*, size_t length, FlushBehavior, bool stopOnError, bool& sawError) override;
H A DTextEncoding.h53 String decode(const char*, size_t length, bool stopOnError, bool& sawError) const;
H A DTextEncoding.cpp62 String TextEncoding::decode(const char* data, size_t length, bool stopOnError, bool& sawError) const
67 return newTextCodec(*this)->decode(data, length, DataEOF, stopOnError, sawError);
H A DTextCodecICU.cpp333 String TextCodecICU::decode(const char* bytes, size_t length, FlushBehavior flush, bool stopOnError, bool& sawError) argument
366 sawError = true;
/external/chromium_org/third_party/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;
96 $sawError = 1 if printFunctions($shortName, $file);
99 if ($sawError and !$coverageBuild) {
H A Dcheck-for-global-initializers69 my $sawError = 0;
78 $sawError = 1;
136 $sawError = 1;
140 if ($sawError and !$coverageBuild) {
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DDocumentEncodingData.cpp48 m_sawDecodingError = decoder.sawError();
/external/chromium_org/third_party/WebKit/Source/modules/encoding/
H A DTextDecoder.cpp86 bool sawError = false; local
87 String s = m_codec->decode(start, length, flush, m_fatal, sawError);
89 if (m_fatal && sawError) {
/external/chromium_org/third_party/WebKit/Source/core/html/parser/
H A DTextResourceDecoder.h71 bool sawError() const { return m_sawError; } function in class:blink::TextResourceDecoder
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/background/
H A Dbackground.js178 var sawError = false;
193 if (sawError) {
196 sawError = true;
/external/chromium_org/third_party/WebKit/Source/core/fetch/
H A DFontResource.cpp177 if (decoder->sawError())

Completed in 424 milliseconds