• Home
  • Raw
  • Download

Lines Matching refs:join

75 LOCAL_REPLAY_WEBPAGES_ARCHIVE_DIR = os.path.join(
81 CREDENTIALS_FILE_PATH = os.path.join(
110 CHROMIUM_PAGE_SETS_PATH = os.path.join('tools', 'perf', 'page_sets')
137 self._chrome_page_sets_path = os.path.join(parse_options.chrome_src_path,
154 self._telemetry_binaries_dir = os.path.join(parse_options.chrome_src_path,
156 self._catapult_dir = os.path.join(parse_options.chrome_src_path,
159 self._local_skp_dir = os.path.join(
161 self._local_record_webpages_archive_dir = os.path.join(
172 page_sets_dir = os.path.join(os.path.abspath(os.path.dirname(__file__)),
174 ps = [os.path.join(page_sets_dir, page_set)
176 if not os.path.isdir(os.path.join(page_sets_dir, page_set)) and
179 os.path.join(self._chrome_page_sets_path, cr_page_set)
219 os.path.join(LOCAL_REPLAY_WEBPAGES_ARCHIVE_DIR, 'skia_*')):
244 os.path.join(self._telemetry_binaries_dir, 'record_wpr'),
253 subprocess.check_call(' '.join(record_wpr_cmd), shell=True)
258 os.path.join(LOCAL_REPLAY_WEBPAGES_ARCHIVE_DIR, wpr_data_file),
261 os.path.join(LOCAL_REPLAY_WEBPAGES_ARCHIVE_DIR,
283 os.path.join(self._telemetry_binaries_dir, 'run_benchmark'),
297 subprocess.check_call(' '.join(run_benchmark_cmd), shell=True)
323 os.path.join(self._skia_tools, 'render_pictures'),
327 os.path.join(self._skia_tools, 'render_pdfs'),
332 print '\n\n=======Running %s=======' % ' '.join(tools_cmd)
337 os.system('%s %s' % (os.path.join(self._skia_tools, 'debugger'),
353 posixpath.join(self.gs.target_name(), dest_dir_name,
369 posixpath.join(partner_gs.target_name(), SKPICTURES_DIR_NAME))
404 subdirs = glob.glob(os.path.join(TMP_SKP_DIR, '*'))
416 largest_skp = max(glob.glob(os.path.join(site, '*.skp')),
418 dest = os.path.join(self._local_skp_dir, filename)
434 wpr_source = posixpath.join(ROOT_PLAYBACK_DIR_NAME, 'webpages_archive',
436 page_set_source = posixpath.join(ROOT_PLAYBACK_DIR_NAME,
443 os.path.join(LOCAL_REPLAY_WEBPAGES_ARCHIVE_DIR,
446 os.path.join(LOCAL_REPLAY_WEBPAGES_ARCHIVE_DIR,
480 'gsutil', 'ls', '/'.join((self._url, name))])
488 subprocess.check_call(['gsutil', 'rm', '-r', '/'.join((self._url, path))])
492 'gsutil', 'cp', '/'.join((self._url, name)), local_path])
496 'gsutil', 'cp', '-r', source_dir, '/'.join((self._url, dest_dir))])
507 return os.path.isfile(os.path.join(self._base_dir, name))
511 shutil.copyfile(os.path.join(self._base_dir, name), local_path)
517 source = os.path.join(source_dir, item)
518 dest = os.path.join(dest_dir, item)
523 copytree(source_dir, os.path.join(self._base_dir, dest_dir))