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

Unified Diff: runtime/vm/symbols.cc

Issue 23072026: fix cpp11 compile errors (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 4 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 | « runtime/vm/stack_frame.cc ('k') | runtime/vm/thread_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/symbols.cc
===================================================================
--- runtime/vm/symbols.cc (revision 26375)
+++ runtime/vm/symbols.cc (working copy)
@@ -286,24 +286,24 @@
symbol_table = Dart::vm_isolate()->object_store()->symbol_table();
table_size = symbol_table.Length() - 1;
used ^= symbol_table.At(table_size);
- OS::Print("VM Isolate: Number of symbols : %"Pd"\n", used.Value());
- OS::Print("VM Isolate: Symbol table capacity : %"Pd"\n", table_size);
+ OS::Print("VM Isolate: Number of symbols : %" Pd "\n", used.Value());
+ OS::Print("VM Isolate: Symbol table capacity : %" Pd "\n", table_size);
// Now dump regular isolate symbol table stats.
symbol_table = Isolate::Current()->object_store()->symbol_table();
table_size = symbol_table.Length() - 1;
used ^= symbol_table.At(table_size);
- OS::Print("Isolate: Number of symbols : %"Pd"\n", used.Value());
- OS::Print("Isolate: Symbol table capacity : %"Pd"\n", table_size);
+ OS::Print("Isolate: Number of symbols : %" Pd "\n", used.Value());
+ OS::Print("Isolate: Symbol table capacity : %" Pd "\n", table_size);
// Dump overall collision and growth counts.
- OS::Print("Number of symbol table grows = %"Pd"\n", num_of_grows_);
+ OS::Print("Number of symbol table grows = %" Pd "\n", num_of_grows_);
OS::Print("Collision counts on add and lookup :\n");
intptr_t i = 0;
for (i = 0; i < (kMaxCollisionBuckets - 1); i++) {
- OS::Print(" %"Pd" collisions => %"Pd"\n", i, collision_count_[i]);
+ OS::Print(" %" Pd " collisions => %" Pd "\n", i, collision_count_[i]);
}
- OS::Print(" > %"Pd" collisions => %"Pd"\n", i, collision_count_[i]);
+ OS::Print(" > %" Pd " collisions => %" Pd "\n", i, collision_count_[i]);
}
}
« no previous file with comments | « runtime/vm/stack_frame.cc ('k') | runtime/vm/thread_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698