Searched refs:repo_dict (Results 1 – 2 of 2) sorted by relevance
/external/toolchain-utils/ |
D | repo_to_repo.py | 313 for repo_dict in repo_list: 314 repo = self.CreateRepoFromDict(repo_dict) 322 def CreateRepoFromDict(self, repo_dict): argument 323 repo_type = repo_dict.get('type', None) 324 repo_address = repo_dict.get('address', None) 325 repo_mappings = repo_dict.get('mappings', None) 326 repo_ignores = repo_dict.get('ignores', None) 327 repo_branch = repo_dict.get('branch', None) 328 gerrit = repo_dict.get('gerrit', None) 329 revision = repo_dict.get('revision', None)
|
/external/vulkan-validation-layers/scripts/ |
D | update_deps.py | 356 def CustomPreProcess(self, cmd_str, repo_dict): argument 357 return cmd_str.format(repo_dict, self._args, CONFIG_MAP[self._args.config]) 370 def CustomBuild(self, repo_dict): argument 373 cmd = self.CustomPreProcess(p, repo_dict) 451 def Build(self, repos, repo_dict): argument 461 self.CustomBuild(repo_dict) 606 repo_dict = {} 631 repo_dict[repo.name] = {field: getattr(repo, field) for field in field_list}; 651 repo.Build(repos, repo_dict)
|