• Home
  • Raw
  • Download

Lines Matching refs:join

77 LOCAL_PLAYBACK_ROOT_DIR = os.path.join(
79 LOCAL_REPLAY_WEBPAGES_ARCHIVE_DIR = os.path.join(
85 CREDENTIALS_FILE_PATH = os.path.join(
120 CHROMIUM_PAGE_SETS_PATH = os.path.join('tools', 'perf', 'page_sets')
147 self._chrome_page_sets_path = os.path.join(parse_options.chrome_src_path,
164 self._telemetry_binaries_dir = os.path.join(parse_options.chrome_src_path,
167 self._local_skp_dir = os.path.join(
169 self._local_record_webpages_archive_dir = os.path.join(
180 page_sets_dir = os.path.join(os.path.abspath(os.path.dirname(__file__)),
182 ps = [os.path.join(page_sets_dir, page_set)
184 if not os.path.isdir(os.path.join(page_sets_dir, page_set)) and
187 os.path.join(self._chrome_page_sets_path, cr_page_set)
227 os.path.join(LOCAL_REPLAY_WEBPAGES_ARCHIVE_DIR, 'skia_*')):
256 os.path.join(self._telemetry_binaries_dir, 'record_wpr'),
265 shell_utils.run(' '.join(record_wpr_cmd), shell=True)
270 os.path.join(LOCAL_REPLAY_WEBPAGES_ARCHIVE_DIR, wpr_data_file),
273 os.path.join(LOCAL_REPLAY_WEBPAGES_ARCHIVE_DIR,
295 os.path.join(self._telemetry_binaries_dir, 'run_benchmark'),
309 shell_utils.run(' '.join(run_benchmark_cmd), shell=True)
335 os.path.join(self._skia_tools, 'render_pictures'),
339 os.path.join(self._skia_tools, 'render_pdfs'),
344 print '\n\n=======Running %s=======' % ' '.join(tools_cmd)
348 raise Exception('%s failed!' % ' '.join(tools_cmd))
352 os.system('%s %s' % (os.path.join(self._skia_tools, 'debugger'),
371 posixpath.join(self.gs.target_name(), dest_dir_name,
380 os.path.join(LOCAL_PLAYBACK_ROOT_DIR, SKPICTURES_DIR_NAME),
384 posixpath.join(partner_gs.target_name(), SKPICTURES_DIR_NAME))
423 subdirs = glob.glob(os.path.join(TMP_SKP_DIR, '*'))
435 largest_skp = max(glob.glob(os.path.join(site, '*.skp')),
437 dest = os.path.join(self._local_skp_dir, filename)
453 wpr_source = posixpath.join(ROOT_PLAYBACK_DIR_NAME, 'webpages_archive',
455 page_set_source = posixpath.join(ROOT_PLAYBACK_DIR_NAME,
462 os.path.join(LOCAL_REPLAY_WEBPAGES_ARCHIVE_DIR,
465 os.path.join(LOCAL_REPLAY_WEBPAGES_ARCHIVE_DIR,
500 self.gs.delete_file(self._bucket, posixpath.join(path, f))
514 return os.path.isfile(os.path.join(self._base_dir, name))
518 shutil.copyfile(os.path.join(self._base_dir, name), local_path)
524 source = os.path.join(source_dir, item)
525 dest = os.path.join(dest_dir, item)
530 copytree(source_dir, os.path.join(self._base_dir, dest_dir))