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

Unified Diff: third_party/WebKit/Source/wtf/text/StringConcatenate.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/StringConcatenate.cpp
diff --git a/third_party/WebKit/Source/wtf/text/StringConcatenate.cpp b/third_party/WebKit/Source/wtf/text/StringConcatenate.cpp
index 7da90e9cabd9f540cf1519e785f19c5f8f8344ce..7a5091ae4875f746fcd7371fe85ef573b2497b5b 100644
--- a/third_party/WebKit/Source/wtf/text/StringConcatenate.cpp
+++ b/third_party/WebKit/Source/wtf/text/StringConcatenate.cpp
@@ -12,138 +12,113 @@
#define WTF_STRINGTYPEADAPTER_COPIED_WTF_STRING() ((void)0)
#endif
-void WTF::StringTypeAdapter<char*>::writeTo(LChar* destination)
-{
- for (unsigned i = 0; i < m_length; ++i)
- destination[i] = static_cast<LChar>(m_buffer[i]);
+void WTF::StringTypeAdapter<char*>::writeTo(LChar* destination) {
+ for (unsigned i = 0; i < m_length; ++i)
+ destination[i] = static_cast<LChar>(m_buffer[i]);
}
-void WTF::StringTypeAdapter<char*>::writeTo(UChar* destination)
-{
- for (unsigned i = 0; i < m_length; ++i) {
- unsigned char c = m_buffer[i];
- destination[i] = c;
- }
+void WTF::StringTypeAdapter<char*>::writeTo(UChar* destination) {
+ for (unsigned i = 0; i < m_length; ++i) {
+ unsigned char c = m_buffer[i];
+ destination[i] = c;
+ }
}
WTF::StringTypeAdapter<LChar*>::StringTypeAdapter(LChar* buffer)
- : m_buffer(buffer)
- , m_length(strlen(reinterpret_cast<char*>(buffer)))
-{
-}
+ : m_buffer(buffer), m_length(strlen(reinterpret_cast<char*>(buffer))) {}
-void WTF::StringTypeAdapter<LChar*>::writeTo(LChar* destination)
-{
- memcpy(destination, m_buffer, m_length * sizeof(LChar));
+void WTF::StringTypeAdapter<LChar*>::writeTo(LChar* destination) {
+ memcpy(destination, m_buffer, m_length * sizeof(LChar));
}
-void WTF::StringTypeAdapter<LChar*>::writeTo(UChar* destination)
-{
- StringImpl::copyChars(destination, m_buffer, m_length);
+void WTF::StringTypeAdapter<LChar*>::writeTo(UChar* destination) {
+ StringImpl::copyChars(destination, m_buffer, m_length);
}
WTF::StringTypeAdapter<const UChar*>::StringTypeAdapter(const UChar* buffer)
- : m_buffer(buffer)
-{
- size_t len = 0;
- while (m_buffer[len] != UChar(0))
- ++len;
+ : m_buffer(buffer) {
+ size_t len = 0;
+ while (m_buffer[len] != UChar(0))
+ ++len;
- RELEASE_ASSERT(len <= std::numeric_limits<unsigned>::max());
+ RELEASE_ASSERT(len <= std::numeric_limits<unsigned>::max());
- m_length = len;
+ m_length = len;
}
-void WTF::StringTypeAdapter<const UChar*>::writeTo(UChar* destination)
-{
- memcpy(destination, m_buffer, m_length * sizeof(UChar));
+void WTF::StringTypeAdapter<const UChar*>::writeTo(UChar* destination) {
+ memcpy(destination, m_buffer, m_length * sizeof(UChar));
}
WTF::StringTypeAdapter<const char*>::StringTypeAdapter(const char* buffer)
-: m_buffer(buffer)
-, m_length(strlen(buffer))
-{
-}
+ : m_buffer(buffer), m_length(strlen(buffer)) {}
-void WTF::StringTypeAdapter<const char*>::writeTo(LChar* destination)
-{
- memcpy(destination, m_buffer, static_cast<size_t>(m_length) * sizeof(LChar));
+void WTF::StringTypeAdapter<const char*>::writeTo(LChar* destination) {
+ memcpy(destination, m_buffer, static_cast<size_t>(m_length) * sizeof(LChar));
}
-void WTF::StringTypeAdapter<const char*>::writeTo(UChar* destination)
-{
- for (unsigned i = 0; i < m_length; ++i) {
- unsigned char c = m_buffer[i];
- destination[i] = c;
- }
+void WTF::StringTypeAdapter<const char*>::writeTo(UChar* destination) {
+ for (unsigned i = 0; i < m_length; ++i) {
+ unsigned char c = m_buffer[i];
+ destination[i] = c;
+ }
}
WTF::StringTypeAdapter<const LChar*>::StringTypeAdapter(const LChar* buffer)
-: m_buffer(buffer)
-, m_length(strlen(reinterpret_cast<const char*>(buffer)))
-{
-}
+ : m_buffer(buffer),
+ m_length(strlen(reinterpret_cast<const char*>(buffer))) {}
-void WTF::StringTypeAdapter<const LChar*>::writeTo(LChar* destination)
-{
- memcpy(destination, m_buffer, static_cast<size_t>(m_length) * sizeof(LChar));
+void WTF::StringTypeAdapter<const LChar*>::writeTo(LChar* destination) {
+ memcpy(destination, m_buffer, static_cast<size_t>(m_length) * sizeof(LChar));
}
-void WTF::StringTypeAdapter<const LChar*>::writeTo(UChar* destination)
-{
- StringImpl::copyChars(destination, m_buffer, m_length);
+void WTF::StringTypeAdapter<const LChar*>::writeTo(UChar* destination) {
+ StringImpl::copyChars(destination, m_buffer, m_length);
}
-void WTF::StringTypeAdapter<Vector<char>>::writeTo(LChar* destination)
-{
- for (size_t i = 0; i < m_buffer.size(); ++i)
- destination[i] = static_cast<unsigned char>(m_buffer[i]);
+void WTF::StringTypeAdapter<Vector<char>>::writeTo(LChar* destination) {
+ for (size_t i = 0; i < m_buffer.size(); ++i)
+ destination[i] = static_cast<unsigned char>(m_buffer[i]);
}
-void WTF::StringTypeAdapter<Vector<char>>::writeTo(UChar* destination)
-{
- for (size_t i = 0; i < m_buffer.size(); ++i)
- destination[i] = static_cast<unsigned char>(m_buffer[i]);
+void WTF::StringTypeAdapter<Vector<char>>::writeTo(UChar* destination) {
+ for (size_t i = 0; i < m_buffer.size(); ++i)
+ destination[i] = static_cast<unsigned char>(m_buffer[i]);
}
-void WTF::StringTypeAdapter<Vector<LChar>>::writeTo(LChar* destination)
-{
- for (size_t i = 0; i < m_buffer.size(); ++i)
- destination[i] = m_buffer[i];
+void WTF::StringTypeAdapter<Vector<LChar>>::writeTo(LChar* destination) {
+ for (size_t i = 0; i < m_buffer.size(); ++i)
+ destination[i] = m_buffer[i];
}
-void WTF::StringTypeAdapter<Vector<LChar>>::writeTo(UChar* destination)
-{
- for (size_t i = 0; i < m_buffer.size(); ++i)
- destination[i] = m_buffer[i];
+void WTF::StringTypeAdapter<Vector<LChar>>::writeTo(UChar* destination) {
+ for (size_t i = 0; i < m_buffer.size(); ++i)
+ destination[i] = m_buffer[i];
}
-void WTF::StringTypeAdapter<String>::writeTo(LChar* destination)
-{
- unsigned length = m_buffer.length();
+void WTF::StringTypeAdapter<String>::writeTo(LChar* destination) {
+ unsigned length = m_buffer.length();
- ASSERT(is8Bit());
- const LChar* data = m_buffer.characters8();
- for (unsigned i = 0; i < length; ++i)
- destination[i] = data[i];
+ ASSERT(is8Bit());
+ const LChar* data = m_buffer.characters8();
+ for (unsigned i = 0; i < length; ++i)
+ destination[i] = data[i];
- WTF_STRINGTYPEADAPTER_COPIED_WTF_STRING();
+ WTF_STRINGTYPEADAPTER_COPIED_WTF_STRING();
}
-void WTF::StringTypeAdapter<String>::writeTo(UChar* destination)
-{
- unsigned length = m_buffer.length();
+void WTF::StringTypeAdapter<String>::writeTo(UChar* destination) {
+ unsigned length = m_buffer.length();
- if (is8Bit()) {
- const LChar* data = m_buffer.characters8();
- for (unsigned i = 0; i < length; ++i)
- destination[i] = data[i];
- } else {
- const UChar* data = m_buffer.characters16();
- for (unsigned i = 0; i < length; ++i)
- destination[i] = data[i];
- }
+ if (is8Bit()) {
+ const LChar* data = m_buffer.characters8();
+ for (unsigned i = 0; i < length; ++i)
+ destination[i] = data[i];
+ } else {
+ const UChar* data = m_buffer.characters16();
+ for (unsigned i = 0; i < length; ++i)
+ destination[i] = data[i];
+ }
- WTF_STRINGTYPEADAPTER_COPIED_WTF_STRING();
+ WTF_STRINGTYPEADAPTER_COPIED_WTF_STRING();
}
-
« no previous file with comments | « third_party/WebKit/Source/wtf/text/StringConcatenate.h ('k') | third_party/WebKit/Source/wtf/text/StringHash.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698