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

Unified Diff: third_party/WebKit/Source/wtf/InstanceCounter.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
« no previous file with comments | « third_party/WebKit/Source/wtf/InstanceCounter.h ('k') | third_party/WebKit/Source/wtf/Int16Array.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/wtf/InstanceCounter.cpp
diff --git a/third_party/WebKit/Source/wtf/InstanceCounter.cpp b/third_party/WebKit/Source/wtf/InstanceCounter.cpp
index a1ee06d5299d82e842a0d03f3ecc4015a820f6ad..3d033fa9a68fff110d68e4c934ffbb36ead8c5c8 100644
--- a/third_party/WebKit/Source/wtf/InstanceCounter.cpp
+++ b/third_party/WebKit/Source/wtf/InstanceCounter.cpp
@@ -37,117 +37,117 @@ namespace WTF {
#if ENABLE(INSTANCE_COUNTER) || ENABLE(DETAILED_MEMORY_INFRA)
#if COMPILER(CLANG)
-const size_t stringWithTypeNamePrefixLength = sizeof("const char *WTF::getStringWithTypeName() [T = ") - 1;
+const size_t stringWithTypeNamePrefixLength =
+ sizeof("const char *WTF::getStringWithTypeName() [T = ") - 1;
const size_t stringWithTypeNamePostfixLength = sizeof("]") - 1;
#elif COMPILER(GCC)
-const size_t stringWithTypeNamePrefixLength = sizeof("const char* WTF::getStringWithTypeName() [with T = ") - 1;
+const size_t stringWithTypeNamePrefixLength =
+ sizeof("const char* WTF::getStringWithTypeName() [with T = ") - 1;
const size_t stringWithTypeNamePostfixLength = sizeof("]") - 1;
#elif COMPILER(MSVC)
-const size_t stringWithTypeNamePrefixLength = sizeof("const char *__cdecl WTF::getStringWithTypeName<class ") - 1;
+const size_t stringWithTypeNamePrefixLength =
+ sizeof("const char *__cdecl WTF::getStringWithTypeName<class ") - 1;
const size_t stringWithTypeNamePostfixLength = sizeof(">(void)") - 1;
#else
-#warning "Extracting typename is supported only in compiler GCC, CLANG and MSVC at this moment"
+#warning \
+ "Extracting typename is supported only in compiler GCC, CLANG and MSVC at this moment"
#endif
// This function is used to stringify a typename T without using RTTI.
// The result of stringWithTypeName<T>() is given as |funcName|. |extractTypeNameFromFunctionName| then extracts a typename string from |funcName|.
-String extractTypeNameFromFunctionName(const char* funcName)
-{
+String extractTypeNameFromFunctionName(const char* funcName) {
#if COMPILER(CLANG) || COMPILER(GCC) || COMPILER(MSVC)
- size_t funcNameLength = strlen(funcName);
- ASSERT(funcNameLength > stringWithTypeNamePrefixLength + stringWithTypeNamePostfixLength);
-
- const char* funcNameWithoutPrefix = funcName + stringWithTypeNamePrefixLength;
- return String(funcNameWithoutPrefix, funcNameLength - stringWithTypeNamePrefixLength - stringWithTypeNamePostfixLength);
+ size_t funcNameLength = strlen(funcName);
+ ASSERT(funcNameLength >
+ stringWithTypeNamePrefixLength + stringWithTypeNamePostfixLength);
+
+ const char* funcNameWithoutPrefix = funcName + stringWithTypeNamePrefixLength;
+ return String(funcNameWithoutPrefix, funcNameLength -
+ stringWithTypeNamePrefixLength -
+ stringWithTypeNamePostfixLength);
#else
- return String("unknown");
+ return String("unknown");
#endif
}
class InstanceCounter {
-public:
- void incrementInstanceCount(const String& instanceName, void* ptr);
- void decrementInstanceCount(const String& instanceName, void* ptr);
- String dump();
-
- static InstanceCounter* instance()
- {
- DEFINE_STATIC_LOCAL(InstanceCounter, self, ());
- return &self;
- }
-
-private:
- InstanceCounter() { }
-
- Mutex m_mutex;
- HashMap<String, int> m_counterMap;
+ public:
+ void incrementInstanceCount(const String& instanceName, void* ptr);
+ void decrementInstanceCount(const String& instanceName, void* ptr);
+ String dump();
+
+ static InstanceCounter* instance() {
+ DEFINE_STATIC_LOCAL(InstanceCounter, self, ());
+ return &self;
+ }
+
+ private:
+ InstanceCounter() {}
+
+ Mutex m_mutex;
+ HashMap<String, int> m_counterMap;
};
-void incrementInstanceCount(const char* stringWithTypeNameName, void* ptr)
-{
- String instanceName = extractTypeNameFromFunctionName(stringWithTypeNameName);
- InstanceCounter::instance()->incrementInstanceCount(instanceName, ptr);
+void incrementInstanceCount(const char* stringWithTypeNameName, void* ptr) {
+ String instanceName = extractTypeNameFromFunctionName(stringWithTypeNameName);
+ InstanceCounter::instance()->incrementInstanceCount(instanceName, ptr);
}
-void decrementInstanceCount(const char* stringWithTypeNameName, void* ptr)
-{
- String instanceName = extractTypeNameFromFunctionName(stringWithTypeNameName);
- InstanceCounter::instance()->decrementInstanceCount(instanceName, ptr);
+void decrementInstanceCount(const char* stringWithTypeNameName, void* ptr) {
+ String instanceName = extractTypeNameFromFunctionName(stringWithTypeNameName);
+ InstanceCounter::instance()->decrementInstanceCount(instanceName, ptr);
}
-String dumpRefCountedInstanceCounts()
-{
- return InstanceCounter::instance()->dump();
+String dumpRefCountedInstanceCounts() {
+ return InstanceCounter::instance()->dump();
}
-void InstanceCounter::incrementInstanceCount(const String& instanceName, void* ptr)
-{
- MutexLocker locker(m_mutex);
- HashMap<String, int>::AddResult result = m_counterMap.add(instanceName, 1);
- if (!result.isNewEntry)
- ++(result.storedValue->value);
+void InstanceCounter::incrementInstanceCount(const String& instanceName,
+ void* ptr) {
+ MutexLocker locker(m_mutex);
+ HashMap<String, int>::AddResult result = m_counterMap.add(instanceName, 1);
+ if (!result.isNewEntry)
+ ++(result.storedValue->value);
}
-void InstanceCounter::decrementInstanceCount(const String& instanceName, void* ptr)
-{
- MutexLocker locker(m_mutex);
- HashMap<String, int>::iterator it = m_counterMap.find(instanceName);
- ASSERT(it != m_counterMap.end());
+void InstanceCounter::decrementInstanceCount(const String& instanceName,
+ void* ptr) {
+ MutexLocker locker(m_mutex);
+ HashMap<String, int>::iterator it = m_counterMap.find(instanceName);
+ ASSERT(it != m_counterMap.end());
- --(it->value);
- if (!it->value)
- m_counterMap.remove(it);
+ --(it->value);
+ if (!it->value)
+ m_counterMap.remove(it);
}
-String InstanceCounter::dump()
-{
- MutexLocker locker(m_mutex);
-
- StringBuilder builder;
-
- builder.append('{');
- HashMap<String, int>::iterator it = m_counterMap.begin();
- HashMap<String, int>::iterator itEnd = m_counterMap.end();
- for (; it != itEnd; ++it) {
- if (it != m_counterMap.begin())
- builder.append(',');
- builder.append('"');
- builder.append(it->key);
- builder.appendLiteral("\": ");
- builder.appendNumber(it->value);
- }
- builder.append('}');
-
- return builder.toString();
+String InstanceCounter::dump() {
+ MutexLocker locker(m_mutex);
+
+ StringBuilder builder;
+
+ builder.append('{');
+ HashMap<String, int>::iterator it = m_counterMap.begin();
+ HashMap<String, int>::iterator itEnd = m_counterMap.end();
+ for (; it != itEnd; ++it) {
+ if (it != m_counterMap.begin())
+ builder.append(',');
+ builder.append('"');
+ builder.append(it->key);
+ builder.appendLiteral("\": ");
+ builder.appendNumber(it->value);
+ }
+ builder.append('}');
+
+ return builder.toString();
}
#else
-String dumpRefCountedInstanceCounts()
-{
- return String("{}");
+String dumpRefCountedInstanceCounts() {
+ return String("{}");
}
-#endif // ENABLE(INSTANCE_COUNTER) || ENABLE(DETAILED_MEMORY_INFRA)
+#endif // ENABLE(INSTANCE_COUNTER) || ENABLE(DETAILED_MEMORY_INFRA)
-} // namespace WTF
+} // namespace WTF
« no previous file with comments | « third_party/WebKit/Source/wtf/InstanceCounter.h ('k') | third_party/WebKit/Source/wtf/Int16Array.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698