Home
last modified time | relevance | path

Searched refs:CompareSortingEventCount (Results 1 – 3 of 3) sorted by relevance

/developtools/hiperf/test/unittest/common/native/
Dreport_test.cpp124 HWTEST_F(ReportTest, CompareSortingEventCount, TestSize.Level1)
130 EXPECT_EQ(ReportItemCallFrame::CompareSortingEventCount(a, a), false);
131 EXPECT_EQ(ReportItemCallFrame::CompareSortingEventCount(a, a2), false);
132 EXPECT_EQ(ReportItemCallFrame::CompareSortingEventCount(a, a200), false);
133 EXPECT_EQ(ReportItemCallFrame::CompareSortingEventCount(a2, a200), false);
134 EXPECT_EQ(ReportItemCallFrame::CompareSortingEventCount(a200, a200), false);
135 EXPECT_EQ(ReportItemCallFrame::CompareSortingEventCount(a200, a2), true);
136 EXPECT_EQ(ReportItemCallFrame::CompareSortingEventCount(a200, a), true);
209 EXPECT_EQ(ReportItem::CompareSortingEventCount(a123, a123), false);
210 EXPECT_EQ(ReportItem::CompareSortingEventCount(a123, a1234), false);
[all …]
/developtools/hiperf/include/
Dreport.h62 static int CompareSortingEventCount(const ReportItemCallFrame &a, const ReportItemCallFrame &b) in CompareSortingEventCount() function
72 &ReportItemCallFrame::CompareSortingEventCount);
183 static int CompareSortingEventCount(const ReportItem &a, const ReportItem &b) in CompareSortingEventCount() function
/developtools/hiperf/src/
Dreport.cpp205 &ReportItem::CompareSortingEventCount); in AdjustReportItems()