/external/chromium_org/third_party/WebKit/Source/wtf/text/ |
TextCodecUTF8Test.cpp | 54 bool sawError = false; 55 const String& result = codec->decode(testCase, testCaseSize, true, false, sawError); 56 EXPECT_FALSE(sawError); 72 bool sawError = false; 73 const String& result = codec->decode(testCase, testCaseSize, true, false, sawError); 74 EXPECT_FALSE(sawError); 85 bool sawError = false; 86 const String& result = codec->decode("\xff", 1, true, false, sawError); 87 EXPECT_TRUE(sawError);
|
TextCodecUTF8.h | 42 virtual String decode(const char*, size_t length, bool flush, bool stopOnError, bool& sawError) OVERRIDE; 50 bool handlePartialSequence(CharType*& destination, const uint8_t*& source, const uint8_t* end, bool flush, bool stopOnError, bool& sawError); 51 void handleError(UChar*& destination, bool stopOnError, bool& sawError);
|
TextCodecLatin1.h | 39 virtual String decode(const char*, size_t length, bool flush, bool stopOnError, bool& sawError) OVERRIDE;
|
TextCodecUTF16.h | 40 virtual String decode(const char*, size_t length, bool flush, bool stopOnError, bool& sawError) OVERRIDE;
|
TextCodecUserDefined.h | 39 virtual String decode(const char*, size_t length, bool flush, bool stopOnError, bool& sawError) OVERRIDE;
|
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, bool 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 | 71 virtual String decode(const char*, size_t length, bool flush, bool stopOnError, bool& sawError) = 0;
|
TextCodecICU.h | 51 virtual String decode(const char*, size_t length, bool flush, bool stopOnError, bool& sawError) OVERRIDE;
|
TextEncoding.h | 53 String decode(const char*, size_t length, bool stopOnError, bool& sawError) const;
|
TextEncoding.cpp | 58 String TextEncoding::decode(const char* data, size_t length, bool stopOnError, bool& sawError) const 63 return newTextCodec(*this)->decode(data, length, true, stopOnError, sawError);
|
TextCodecICU.cpp | 340 String TextCodecICU::decode(const char* bytes, size_t length, bool flush, bool stopOnError, bool& sawError) 373 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/modules/encoding/ |
TextDecoder.cpp | 93 bool sawError = false; 94 String s = m_codec->decode(start, length, flush, m_fatal, sawError); 96 if (m_fatal && sawError) {
|
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
DecodedDataDocumentParser.cpp | 97 encodingData.sawDecodingError = m_decoder->sawError();
|
/external/chromium_org/third_party/WebKit/Source/core/fetch/ |
TextResourceDecoder.h | 70 bool sawError() const { return m_sawError; }
|
FontResource.cpp | 118 if (decoder->sawError())
|