/external/chromium_org/third_party/WebKit/Source/wtf/text/ |
TextCodecUTF8Test.cpp | 54 bool sawError = false; 55 const String& result = codec->decode(testCase, testCaseSize, DataEOF, false, sawError); 56 EXPECT_FALSE(sawError); 72 bool sawError = false; 73 const String& result = codec->decode(testCase, testCaseSize, DataEOF, false, sawError); 74 EXPECT_FALSE(sawError); 85 bool sawError = false; 86 const String& result = codec->decode("\xff", 1, DataEOF, false, sawError); 87 EXPECT_TRUE(sawError);
|
TextCodecReplacement.h | 21 virtual String decode(const char*, size_t length, FlushBehavior, bool stopOnError, bool& sawError) OVERRIDE;
|
TextCodecReplacement.cpp | 44 String TextCodecReplacement::decode(const char*, size_t, FlushBehavior, bool, bool& sawError) 46 sawError = true;
|
TextCodecUTF8.h | 44 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);
|
TextCodecLatin1.h | 39 virtual String decode(const char*, size_t length, FlushBehavior, bool stopOnError, bool& sawError) OVERRIDE;
|
TextCodecUTF16.h | 40 virtual String decode(const char*, size_t length, FlushBehavior, bool stopOnError, bool& sawError) OVERRIDE;
|
TextCodecUserDefined.h | 39 virtual String decode(const char*, size_t length, FlushBehavior, bool stopOnError, bool& sawError) OVERRIDE;
|
TextCodecReplacementTest.cpp | 39 bool sawError = false; 43 const String result = codec->decode(testCase, testCaseSize, DataEOF, false, sawError); 44 EXPECT_TRUE(sawError);
|
TextCodecUTF8.cpp | 164 void TextCodecUTF8::handleError(UChar*& destination, bool stopOnError, bool& sawError) 166 sawError = true; 218 bool TextCodecUTF8::handlePartialSequence<UChar>(UChar*& destination, const uint8_t*& source, const uint8_t* end, bool flush, bool stopOnError, bool& sawError) 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) 287 if (handlePartialSequence(destinationForHandlePartialSequence, sourceForHandlePartialSequence, end, flush, stopOnError, sawError)) { 333 sawError = true; 367 handlePartialSequence(destinationForHandlePartialSequence, sourceForHandlePartialSequence, end, flush, stopOnError, sawError); [all...] |
TextCodec.h | 87 virtual String decode(const char*, size_t length, FlushBehavior, bool stopOnError, bool& sawError) = 0;
|
TextCodecUTF16.cpp | 70 String TextCodecUTF16::decode(const char* bytes, size_t length, FlushBehavior flush, bool, bool& sawError) 78 sawError = true; 122 sawError = true;
|
TextCodecICU.h | 51 virtual String decode(const char*, size_t length, FlushBehavior, bool stopOnError, bool& sawError) OVERRIDE;
|
TextEncoding.h | 53 String decode(const char*, size_t length, bool stopOnError, bool& sawError) const;
|
TextEncoding.cpp | 62 String TextEncoding::decode(const char* data, size_t length, bool stopOnError, bool& sawError) const 67 return newTextCodec(*this)->decode(data, length, DataEOF, stopOnError, sawError);
|
TextCodecICU.cpp | 333 String TextCodecICU::decode(const char* bytes, size_t length, FlushBehavior flush, bool stopOnError, bool& sawError) 366 sawError = true;
|
/external/chromium_org/third_party/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; 96 $sawError = 1 if printFunctions($shortName, $file); 99 if ($sawError and !$coverageBuild) {
|
check-for-global-initializers | 69 my $sawError = 0; 78 $sawError = 1; 136 $sawError = 1; 140 if ($sawError and !$coverageBuild) {
|
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
DocumentEncodingData.cpp | 48 m_sawDecodingError = decoder.sawError();
|
/external/chromium_org/third_party/WebKit/Source/modules/encoding/ |
TextDecoder.cpp | 97 bool sawError = false; 98 String s = m_codec->decode(start, length, flush, m_fatal, sawError); 100 if (m_fatal && sawError) {
|
/external/chromium_org/third_party/WebKit/Source/core/html/parser/ |
TextResourceDecoder.h | 71 bool sawError() const { return m_sawError; }
|
/external/chromium_org/third_party/WebKit/Source/core/fetch/ |
FontResource.cpp | 156 if (decoder->sawError())
|
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/background/ |
background.js | 175 var sawError = false; 190 if (sawError) { 193 sawError = true;
|