Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(880)

Unified Diff: third_party/WebKit/Source/wtf/text/TextCodecUserDefined.cpp

Issue 1611343002: wtf reformat test Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: pydent Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/wtf/text/TextCodecUserDefined.cpp
diff --git a/third_party/WebKit/Source/wtf/text/TextCodecUserDefined.cpp b/third_party/WebKit/Source/wtf/text/TextCodecUserDefined.cpp
index 8438bf294b03b605d0add6138a0595a24ba302c8..cc577052a8e4762b04c1d7c2ccf3ffa4d1eea7c4 100644
--- a/third_party/WebKit/Source/wtf/text/TextCodecUserDefined.cpp
+++ b/third_party/WebKit/Source/wtf/text/TextCodecUserDefined.cpp
@@ -33,90 +33,98 @@
namespace WTF {
-void TextCodecUserDefined::registerEncodingNames(EncodingNameRegistrar registrar)
-{
- registrar("x-user-defined", "x-user-defined");
+void TextCodecUserDefined::registerEncodingNames(
+ EncodingNameRegistrar registrar) {
+ registrar("x-user-defined", "x-user-defined");
}
-static PassOwnPtr<TextCodec> newStreamingTextDecoderUserDefined(const TextEncoding&, const void*)
-{
- return adoptPtr(new TextCodecUserDefined);
+static PassOwnPtr<TextCodec> newStreamingTextDecoderUserDefined(
+ const TextEncoding&,
+ const void*) {
+ return adoptPtr(new TextCodecUserDefined);
}
-void TextCodecUserDefined::registerCodecs(TextCodecRegistrar registrar)
-{
- registrar("x-user-defined", newStreamingTextDecoderUserDefined, 0);
+void TextCodecUserDefined::registerCodecs(TextCodecRegistrar registrar) {
+ registrar("x-user-defined", newStreamingTextDecoderUserDefined, 0);
}
-String TextCodecUserDefined::decode(const char* bytes, size_t length, FlushBehavior, bool, bool&)
-{
- StringBuilder result;
- result.reserveCapacity(length);
+String TextCodecUserDefined::decode(const char* bytes,
+ size_t length,
+ FlushBehavior,
+ bool,
+ bool&) {
+ StringBuilder result;
+ result.reserveCapacity(length);
- for (size_t i = 0; i < length; ++i) {
- signed char c = bytes[i];
- result.append(static_cast<UChar>(c & 0xF7FF));
- }
+ for (size_t i = 0; i < length; ++i) {
+ signed char c = bytes[i];
+ result.append(static_cast<UChar>(c & 0xF7FF));
+ }
- return result.toString();
+ return result.toString();
}
-template<typename CharType>
-static CString encodeComplexUserDefined(const CharType* characters, size_t length, UnencodableHandling handling)
-{
- Vector<char> result(length);
- char* bytes = result.data();
-
- size_t resultLength = 0;
- for (size_t i = 0; i < length; ) {
- UChar32 c;
- U16_NEXT(characters, i, length, c);
- signed char signedByte = static_cast<signed char>(c);
- if ((signedByte & 0xF7FF) == c) {
- bytes[resultLength++] = signedByte;
- } else {
- // No way to encode this character with x-user-defined.
- UnencodableReplacementArray replacement;
- int replacementLength = TextCodec::getUnencodableReplacement(c, handling, replacement);
- result.grow(resultLength + replacementLength + length - i);
- bytes = result.data();
- memcpy(bytes + resultLength, replacement, replacementLength);
- resultLength += replacementLength;
- }
+template <typename CharType>
+static CString encodeComplexUserDefined(const CharType* characters,
+ size_t length,
+ UnencodableHandling handling) {
+ Vector<char> result(length);
+ char* bytes = result.data();
+
+ size_t resultLength = 0;
+ for (size_t i = 0; i < length;) {
+ UChar32 c;
+ U16_NEXT(characters, i, length, c);
+ signed char signedByte = static_cast<signed char>(c);
+ if ((signedByte & 0xF7FF) == c) {
+ bytes[resultLength++] = signedByte;
+ } else {
+ // No way to encode this character with x-user-defined.
+ UnencodableReplacementArray replacement;
+ int replacementLength =
+ TextCodec::getUnencodableReplacement(c, handling, replacement);
+ result.grow(resultLength + replacementLength + length - i);
+ bytes = result.data();
+ memcpy(bytes + resultLength, replacement, replacementLength);
+ resultLength += replacementLength;
}
+ }
- return CString(bytes, resultLength);
+ return CString(bytes, resultLength);
}
-template<typename CharType>
-CString TextCodecUserDefined::encodeCommon(const CharType* characters, size_t length, UnencodableHandling handling)
-{
- char* bytes;
- CString result = CString::newUninitialized(length, bytes);
-
- // Convert the string a fast way and simultaneously do an efficient check to see if it's all ASCII.
- UChar ored = 0;
- for (size_t i = 0; i < length; ++i) {
- UChar c = characters[i];
- bytes[i] = static_cast<char>(c);
- ored |= c;
- }
-
- if (!(ored & 0xFF80))
- return result;
-
- // If it wasn't all ASCII, call the function that handles more-complex cases.
- return encodeComplexUserDefined(characters, length, handling);
+template <typename CharType>
+CString TextCodecUserDefined::encodeCommon(const CharType* characters,
+ size_t length,
+ UnencodableHandling handling) {
+ char* bytes;
+ CString result = CString::newUninitialized(length, bytes);
+
+ // Convert the string a fast way and simultaneously do an efficient check to see if it's all ASCII.
+ UChar ored = 0;
+ for (size_t i = 0; i < length; ++i) {
+ UChar c = characters[i];
+ bytes[i] = static_cast<char>(c);
+ ored |= c;
+ }
+
+ if (!(ored & 0xFF80))
+ return result;
+
+ // If it wasn't all ASCII, call the function that handles more-complex cases.
+ return encodeComplexUserDefined(characters, length, handling);
}
-CString TextCodecUserDefined::encode(const UChar* characters, size_t length, UnencodableHandling handling)
-{
- return encodeCommon(characters, length, handling);
+CString TextCodecUserDefined::encode(const UChar* characters,
+ size_t length,
+ UnencodableHandling handling) {
+ return encodeCommon(characters, length, handling);
}
-CString TextCodecUserDefined::encode(const LChar* characters, size_t length, UnencodableHandling handling)
-{
- return encodeCommon(characters, length, handling);
+CString TextCodecUserDefined::encode(const LChar* characters,
+ size_t length,
+ UnencodableHandling handling) {
+ return encodeCommon(characters, length, handling);
}
-} // namespace WTF
+} // namespace WTF
« no previous file with comments | « third_party/WebKit/Source/wtf/text/TextCodecUserDefined.h ('k') | third_party/WebKit/Source/wtf/text/TextEncoding.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698