Lines Matching refs:entry3
64 CodeEntry entry3(i::Logger::FUNCTION_TAG, "ccc"); in TEST() local
65 ProfileNode* childNode3 = node->FindOrAddChild(&entry3); in TEST()
71 CHECK_EQ(childNode3, node->FindOrAddChild(&entry3)); in TEST()
88 CodeEntry entry3(i::Logger::FUNCTION_TAG, aaa); in TEST() local
89 CHECK_EQ(childNode1, node->FindOrAddChild(&entry3)); in TEST()
102 CodeEntry* entry3 = NULL) { in Walk() argument
110 if (entry3 != NULL) { in Walk()
111 node = node->FindChild(entry3); in Walk()
127 CodeEntry entry3(i::Logger::FUNCTION_TAG, "ccc"); in TEST() local
132 CHECK(!helper.Walk(&entry3)); in TEST()
134 CodeEntry* path[] = {NULL, &entry3, NULL, &entry2, NULL, NULL, &entry1, NULL}; in TEST()
138 CHECK(!helper.Walk(&entry3)); in TEST()
143 CHECK(!helper.Walk(&entry1, &entry3)); in TEST()
150 ProfileNode* node3 = helper.Walk(&entry1, &entry2, &entry3); in TEST()
159 CHECK_EQ(node3, helper.Walk(&entry1, &entry2, &entry3)); in TEST()
168 CHECK(!helper.Walk(&entry3)); in TEST()
171 CHECK(!helper.Walk(&entry1, &entry3)); in TEST()
174 CHECK_EQ(node3, helper.Walk(&entry1, &entry2, &entry3)); in TEST()
232 CodeEntry entry3(i::Logger::FUNCTION_TAG, "ccc"); in TEST() local
233 CodeEntry* e3_path[] = {&entry3}; in TEST()
262 ProfileNode* node3 = wide_helper.Walk(&entry3); in TEST()
285 CodeEntry entry3(i::Logger::FUNCTION_TAG, "ccc"); in TEST() local
289 code_map.AddCode(ToAddress(0x1900), &entry3, 0x50); in TEST()
301 CHECK_EQ(&entry3, code_map.FindEntry(ToAddress(0x1900))); in TEST()
302 CHECK_EQ(&entry3, code_map.FindEntry(ToAddress(0x1900 + 0x28))); in TEST()
322 CodeEntry entry3(i::Logger::FUNCTION_TAG, "ccc"); in TEST() local
323 code_map.AddCode(ToAddress(0x1750), &entry3, 0x100); in TEST()
325 CHECK_EQ(&entry3, code_map.FindEntry(ToAddress(0x1750))); in TEST()
355 CodeEntry* entry3 = profiles.NewCodeEntry(i::Logger::FUNCTION_TAG, "ccc"); in TEST() local
358 generator.code_map()->AddCode(ToAddress(0x1900), entry3, 0x50); in TEST()
390 CHECK(!top_down_test_helper.Walk(entry3)); in TEST()
397 ProfileNode* node3 = top_down_test_helper.Walk(entry1, entry2, entry3); in TEST()
399 CHECK_EQ(entry3, node3->entry()); in TEST()
400 ProfileNode* node4 = top_down_test_helper.Walk(entry1, entry3, entry1); in TEST()
421 CodeEntry* entry3 = profiles.NewCodeEntry(i::Logger::FUNCTION_TAG, "ccc"); in TEST() local
424 generator.code_map()->AddCode(ToAddress(0x1900), entry3, 0x50); in TEST()