Home | History | Annotate | Download | only in simpleperf

Lines Matching refs:strs

55     strs = self.dump()
56 return '\n'.join(strs)
59 strs = []
60 strs.append('CallTreeNode percentage = %.2f' % self.percentage)
62 strs.append(' %s' % function_name)
65 strs.extend([' ' + x for x in child_strs])
66 return strs
78 strs = []
79 strs.append('ReportItem (raw_line %s)' % self.raw_line)
81 strs.append('%s' % self.call_tree)
82 return '\n'.join(strs)