Lines Matching refs:section_name
173 def _GetHumanReadableName(self, section_name): argument
174 if not 'raw' in section_name:
175 return section_name
176 raw_number = section_name.strip().split(' ')[-1]
212 for section_name in section_names:
213 if section_name in report.sections:
214 d[section_name] = report.sections[section_name].count
219 for section_name in section_names:
220 function_names = self._GetTopFunctions(section_name, self._num_symbols)
221 self._FindCommonFunctions(section_name)
225 if section_name in report.sections:
226 section = report.sections[section_name]
269 def _FindCommonFunctions(self, section_name): argument
272 if section_name in report.sections:
273 section = report.sections[section_name]
277 self._common_function_names[section_name] = (
280 def _GetTopFunctions(self, section_name, num_functions): argument
283 if section_name in report.sections:
284 section = report.sections[section_name]