Lines Matching refs:str

55             version: str,
56 git_rev: str,
57 arch: str,
58 config: str,
59 compiler: str,
60 opt_level: str,
78 self.pre_make_cmd = [] #type: typing.List[str]
90 host_arch: str,
91 measure_cmd: str,
109 record_dir: str,
110 comp_dir: str,
132 def detect_arch() -> str:
172 host_arch: str,
212 def infer_pre_make_command(self) -> typing.List[str]:
214 pre_make_cmd = [] #type: typing.List[str]
224 def infer_make_cflags(self) -> str:
226 cflags = [] #type: typing.List[str]
240 def infer_make_command(self) -> str:
274 git_rev: str,
275 pre_make_cmd: typing.List[str],
276 make_cmd: str,
277 measure_cmd: str,
298 def validate_git_revision(git_rev: str) -> str:
304 def _create_git_worktree(self) -> str:
334 def _build_libraries(self, git_worktree_path: str) -> None:
364 def _gen_raw_code_size(self, git_worktree_path: str) -> typing.Dict[str, str]:
384 def _remove_worktree(self, git_worktree_path: str) -> None:
396 git_worktree_path: str) -> None:
408 def cal_libraries_code_size(self) -> typing.Dict[str, str]:
413 - typing.Dict[mod: str]
441 git_rev: str,
442 code_size_text: typing.Dict[str, str],
450 - typing.Dict[mod: str]
458 old_rev: str,
459 new_rev: str,
504 self.code_size = {} #type: typing.Dict[str, typing.Dict]
507 def _set_size_record(self, git_rev: str, mod: str, size_text: str) -> None:
522 def read_size_record(self, git_rev: str, fname: str) -> None:
554 git_rev: str,
555 code_size_text: typing.Dict[str, str],
579 old_rev: str,
580 new_rev: str,
601 bold_text = lambda x: '**' + str(x) + '**'
609 sect: str
655 typing.Dict[str,
656 typing.Dict[str,
690 f_rev_size = {} #type: typing.Dict[str, typing.Dict]
774 ) -> typing.Dict[str, str]:
864 '-o', '--old-rev', type=str, required=True,
871 '--record-dir', type=str, default='code_size_records',
875 '--comp-dir', type=str, default='comparison',
879 '-n', '--new-rev', type=str, default='current',
884 '-a', '--arch', type=str, default=detect_arch(),
889 '-c', '--config', type=str, default=SupportedConfig.DEFAULT.value,