/external/v8/test/cctest/ |
test-profile-generator.cc | 278 ProfileTree empty_tree; local 279 CHECK_EQ(0, empty_tree.root()->total_ticks()); 280 CHECK_EQ(0, empty_tree.root()->self_ticks()); 281 empty_tree.CalculateTotalTicks(); 282 CHECK_EQ(0, empty_tree.root()->total_ticks()); 283 CHECK_EQ(0, empty_tree.root()->self_ticks()); 284 empty_tree.root()->IncrementSelfTicks(); 285 CHECK_EQ(0, empty_tree.root()->total_ticks()); 286 CHECK_EQ(1, empty_tree.root()->self_ticks()); 287 empty_tree.CalculateTotalTicks() [all...] |
/external/chromium/chrome/common/extensions/ |
extension_message_bundle_unittest.cc | 93 DictionaryValue* empty_tree = new DictionaryValue; local 94 SetDictionary("n4", empty_tree, dict); 104 DictionaryValue* empty_tree = new DictionaryValue; local 105 SetDictionary("n1.placeholders", empty_tree, dict);
|
/external/chromium_org/chrome/common/extensions/ |
message_bundle_unittest.cc | 95 base::DictionaryValue* empty_tree = new base::DictionaryValue; local 96 SetDictionary("n4", empty_tree, dict); 106 base::DictionaryValue* empty_tree = new base::DictionaryValue; local 107 SetDictionary("n1.placeholders", empty_tree, dict);
|
/external/chromium_org/v8/test/cctest/ |
test-profile-generator.cc | 237 ProfileTree empty_tree; local 238 CHECK_EQ(0, empty_tree.root()->self_ticks()); 239 empty_tree.root()->IncrementSelfTicks(); 240 CHECK_EQ(1, empty_tree.root()->self_ticks());
|