Home | History | Annotate | Download | only in runtest

Lines Matching refs:strs

50     strs = [indent_str + self.name]
52 strs.extend(child._dump(indent + 1))
53 return strs
71 strs = []
72 strs.append('Symbol name=%s comm=%s overhead=%f children_overhead=%f' % (
75 strs.append('\t%s' % self.call_tree)
76 return '\n'.join(strs)
89 strs = []
90 strs.append('SymbolOverheadRequirement')
92 strs.append('symbol_name=%s' % self.symbol_name)
94 strs.append('comm=%s' % self.comm)
96 strs.append('min_overhead=%f' % self.min_overhead)
98 strs.append('max_overhead=%f' % self.max_overhead)
99 return ' '.join(strs)
135 strs = [indent_str + self.symbol_name +
138 strs.extend(child._dump(indent + 1))
139 return strs
184 strs = []
185 strs.append('Test test_name=%s' % self.test_name)
186 strs.append('\texecutable_name=%s' % self.executable_name)
187 strs.append('\treport_options=%s' % (' '.join(self.report_options)))
188 strs.append('\tsymbol_overhead_requirements:')
190 strs.append('\t\t%s' % req)
191 strs.append('\tsymbol_children_overhead_requirements:')
193 strs.append('\t\t%s' % req)
194 strs.append('\tsymbol_relation_requirements:')
196 strs.append('\t\t%s' % req)
197 return '\n'.join(strs)