Home | History | Annotate | Download | only in profman

Lines Matching defs:output_file_contents

303                      std::string* output_file_contents) {
309 EXPECT_TRUE(DumpClassesAndMethods(profile_file.GetFilename(), output_file_contents));
696 std::string output_file_contents;
697 ASSERT_TRUE(CreateAndDump(file_contents, &output_file_contents));
698 ASSERT_EQ(output_file_contents, file_contents);
713 std::string output_file_contents;
817 std::string output_file_contents;
818 EXPECT_TRUE(DumpClassesAndMethods(out_profile.GetFilename(), &output_file_contents));
820 EXPECT_NE(output_file_contents.find(kCleanClass + "\n"), std::string::npos)
821 << output_file_contents;
822 EXPECT_NE(output_file_contents.find(kDirtyClass + "\n"), std::string::npos)
823 << output_file_contents;
825 EXPECT_EQ(output_file_contents.find(kUncommonCleanClass + "\n"), std::string::npos)
826 << output_file_contents;
827 EXPECT_EQ(output_file_contents.find(kUncommonDirtyClass + "\n"), std::string::npos)
828 << output_file_contents;
830 EXPECT_NE(output_file_contents.find("Ljava/lang/Comparable;\n"), std::string::npos)
831 << output_file_contents;
833 EXPECT_NE(output_file_contents.find("HSP" + kHotMethod), std::string::npos)
834 << output_file_contents;
835 EXPECT_NE(output_file_contents.find("P" + kOtherMethod), std::string::npos)
836 << output_file_contents;
838 EXPECT_EQ(output_file_contents.find("Ljava/util/HashMap;\n"), std::string::npos)
839 << output_file_contents;
842 EXPECT_EQ(output_file_contents.find("HP" + kOtherMethod), std::string::npos)
843 << output_file_contents;
845 EXPECT_NE(output_file_contents.find("HP" + kMultiMethod), std::string::npos)
846 << output_file_contents;
860 std::string output_file_contents;
861 ASSERT_TRUE(CreateAndDump(input_file_contents, &output_file_contents));
865 ASSERT_EQ(output_file_contents, expected_contents);
879 std::string output_file_contents;
880 ASSERT_TRUE(CreateAndDump(input_file_contents, &output_file_contents));
882 ASSERT_EQ(output_file_contents, expected_contents);