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

Unified Diff: runtime/vm/heap_test.cc

Issue 2481873005: clang-format runtime/vm (Closed)
Patch Set: Merge Created 4 years, 1 month 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 | « runtime/vm/heap.cc ('k') | runtime/vm/il_printer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/heap_test.cc
diff --git a/runtime/vm/heap_test.cc b/runtime/vm/heap_test.cc
index 7454cf45709df4bd295d029b8eac6f95293d8516..939225fbb425d5f9b0d759e045690a48eeed6913 100644
--- a/runtime/vm/heap_test.cc
+++ b/runtime/vm/heap_test.cc
@@ -15,9 +15,9 @@ namespace dart {
TEST_CASE(OldGC) {
const char* kScriptChars =
- "main() {\n"
- " return [1, 2, 3];\n"
- "}\n";
+ "main() {\n"
+ " return [1, 2, 3];\n"
+ "}\n";
FLAG_verbose_gc = true;
Dart_Handle lib = TestCase::LoadTestScript(kScriptChars, NULL);
Dart_Handle result = Dart_Invoke(lib, NewString("main"), 0, NULL);
@@ -35,9 +35,9 @@ TEST_CASE(OldGC) {
TEST_CASE(OldGC_Unsync) {
FLAG_marker_tasks = 0;
const char* kScriptChars =
- "main() {\n"
- " return [1, 2, 3];\n"
- "}\n";
+ "main() {\n"
+ " return [1, 2, 3];\n"
+ "}\n";
FLAG_verbose_gc = true;
Dart_Handle lib = TestCase::LoadTestScript(kScriptChars, NULL);
Dart_Handle result = Dart_Invoke(lib, NewString("main"), 0, NULL);
@@ -54,9 +54,9 @@ TEST_CASE(OldGC_Unsync) {
TEST_CASE(LargeSweep) {
const char* kScriptChars =
- "main() {\n"
- " return new List(8 * 1024 * 1024);\n"
- "}\n";
+ "main() {\n"
+ " return new List(8 * 1024 * 1024);\n"
+ "}\n";
FLAG_verbose_gc = true;
Dart_Handle lib = TestCase::LoadTestScript(kScriptChars, NULL);
Dart_EnterScope();
@@ -101,15 +101,15 @@ static RawClass* GetClass(const Library& lib, const char* name) {
TEST_CASE(ClassHeapStats) {
const char* kScriptChars =
- "class A {\n"
- " var a;\n"
- " var b;\n"
- "}\n"
- ""
- "main() {\n"
- " var x = new A();\n"
- " return new A();\n"
- "}\n";
+ "class A {\n"
+ " var a;\n"
+ " var b;\n"
+ "}\n"
+ ""
+ "main() {\n"
+ " var x = new A();\n"
+ " return new A();\n"
+ "}\n";
Dart_Handle h_lib = TestCase::LoadTestScript(kScriptChars, NULL);
Isolate* isolate = Isolate::Current();
ClassTable* class_table = isolate->class_table();
@@ -126,8 +126,7 @@ TEST_CASE(ClassHeapStats) {
ASSERT(!cls.IsNull());
intptr_t cid = cls.id();
ClassHeapStats* class_stats =
- ClassHeapStatsTestHelper::GetHeapStatsForCid(class_table,
- cid);
+ ClassHeapStatsTestHelper::GetHeapStatsForCid(class_table, cid);
// Verify preconditions:
EXPECT_EQ(0, class_stats->pre_gc.old_count);
EXPECT_EQ(0, class_stats->post_gc.old_count);
@@ -196,20 +195,19 @@ TEST_CASE(ClassHeapStats) {
TEST_CASE(ArrayHeapStats) {
const char* kScriptChars =
- "List f(int len) {\n"
- " return new List(len);\n"
- "}\n"
- ""
- "main() {\n"
- " return f(1234);\n"
- "}\n";
+ "List f(int len) {\n"
+ " return new List(len);\n"
+ "}\n"
+ ""
+ "main() {\n"
+ " return f(1234);\n"
+ "}\n";
Dart_Handle h_lib = TestCase::LoadTestScript(kScriptChars, NULL);
Isolate* isolate = Isolate::Current();
ClassTable* class_table = isolate->class_table();
intptr_t cid = kArrayCid;
ClassHeapStats* class_stats =
- ClassHeapStatsTestHelper::GetHeapStatsForCid(class_table,
- cid);
+ ClassHeapStatsTestHelper::GetHeapStatsForCid(class_table, cid);
Dart_EnterScope();
// Invoke 'main' twice, since initial compilation might trigger extra array
// allocations.
@@ -242,11 +240,10 @@ class FindOnly : public FindObjectVisitor {
EXPECT_GT(Thread::Current()->no_safepoint_scope_depth(), 0);
#endif
}
- virtual ~FindOnly() { }
+ virtual ~FindOnly() {}
+
+ virtual bool FindObject(RawObject* obj) const { return obj == target_; }
- virtual bool FindObject(RawObject* obj) const {
- return obj == target_;
- }
private:
RawObject* target_;
};
@@ -254,8 +251,8 @@ class FindOnly : public FindObjectVisitor {
class FindNothing : public FindObjectVisitor {
public:
- FindNothing() { }
- virtual ~FindNothing() { }
+ FindNothing() {}
+ virtual ~FindNothing() {}
virtual bool FindObject(RawObject* obj) const { return false; }
};
« no previous file with comments | « runtime/vm/heap.cc ('k') | runtime/vm/il_printer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698