/external/chromium-trace/catapult/trace_processor/experimental/wpt_downloader/ |
D | wpt_downloader.py | 23 output_path, file_name, metadata, trace_contents): argument 24 file_name = os.path.join(output_path, file_name) 26 with open(os.path.join(output_path, file_name), 'wb') as f: 29 with open(os.path.join(output_path, '%s.meta' % file_name), 'w') as f: 33 def DownloadFromWPT(wpt_job, output_path): argument 55 output_path, file_name, metadata, file_response.read()) 64 output_path = os.path.abspath(args.output_path) 72 DownloadFromWPT(wpt_job, output_path)
|
/external/v8/build/android/gyp/ |
D | pack_relocations.py | 29 def PackLibraryRelocations(android_pack_relocations, library_path, output_path): argument 30 shutil.copy(library_path, output_path) 31 pack_command = [android_pack_relocations, output_path] 35 def CopyLibraryUnchanged(library_path, output_path): argument 36 shutil.copy(library_path, output_path) 88 output_path = os.path.join( 90 output_paths.append(output_path) 95 output_path) 97 CopyLibraryUnchanged(library_path, output_path)
|
D | java_google_api_keys.py | 73 def _DoWriteJavaOutput(output_path, constant_definition): argument 74 folder = os.path.dirname(output_path) 77 with open(output_path, 'w') as out_file: 81 def _DoWriteJarOutput(output_path, constant_definition): argument 82 folder = os.path.dirname(output_path) 85 with zipfile.ZipFile(output_path, 'w') as srcjar:
|
D | emma_instr.py | 86 if not (options.input_path and options.output_path and 95 shutil.copy(options.input_path, options.output_path) 159 if not (options.input_path and options.output_path and 190 if os.path.exists(options.output_path): 191 os.unlink(options.output_path) 192 shutil.move(os.path.join(temp_jar_dir, jars[0]), options.output_path)
|
D | strip_library_for_device.py | 14 def StripLibrary(android_strip, android_strip_args, library_path, output_path): argument 15 if build_utils.IsTimeStale(output_path, [library_path]): 18 ['-o', output_path, library_path])
|
/external/chromium-trace/catapult/telemetry/telemetry/internal/platform/profiler/ |
D | tcpdump_profiler.py | 27 def __init__(self, device, output_path): argument 29 self._output_path = output_path 68 def __init__(self, output_path): argument 69 if not os.path.exists(output_path): 70 os.makedirs(output_path) 71 self._dump_file = os.path.join(output_path, self._DUMP_FILE) 106 def __init__(self, browser_backend, platform_backend, output_path, state): argument 108 browser_backend, platform_backend, output_path, state) 113 browser_backend.device, output_path) 115 self._platform_profiler = _TCPDumpProfilerLinux(output_path)
|
D | trace_profiler.py | 17 def __init__(self, browser_backend, platform_backend, output_path, state, argument 20 browser_backend, platform_backend, output_path, state) 65 def __init__(self, browser_backend, platform_backend, output_path, state): argument 67 browser_backend, platform_backend, output_path, state, 77 def __init__(self, browser_backend, platform_backend, output_path, state): argument 79 browser_backend, platform_backend, output_path, state,
|
D | monsoon_profiler.py | 21 def _CollectData(output_path, is_collecting): argument 48 with open(output_path, 'w') as output_file: 64 'gnuplot --persist' % output_path) 68 def __init__(self, browser_backend, platform_backend, output_path, state): argument 70 browser_backend, platform_backend, output_path, state) 75 target=_CollectData, args=(output_path, self._is_collecting))
|
D | android_systrace_profiler.py | 27 def __init__(self, browser_backend, platform_backend, output_path, state, argument 30 browser_backend, platform_backend, output_path, state) 32 self._output_path = output_path + '-trace.zip' 33 self._systrace_output_path = output_path + '.systrace'
|
D | sample_profiler.py | 17 def __init__(self, pid, output_path): argument 18 self._output_path = output_path 60 def __init__(self, browser_backend, platform_backend, output_path, state): argument 62 browser_backend, platform_backend, output_path, state)
|
D | iprofiler_profiler.py | 21 def __init__(self, pid, output_path): argument 22 self._output_path = output_path 67 def __init__(self, browser_backend, platform_backend, output_path, state): argument 69 browser_backend, platform_backend, output_path, state)
|
D | android_screen_recorder_profiler.py | 21 def __init__(self, browser_backend, platform_backend, output_path, state): argument 23 browser_backend, platform_backend, output_path, state) 24 self._output_path = output_path + '.mp4'
|
D | tcmalloc_heap_profiler.py | 25 def __init__(self, browser_backend, output_path): argument 27 self._output_path = output_path 105 def __init__(self, browser_backend, platform_backend, output_path, state): argument 107 browser_backend, platform_backend, output_path, state) 110 browser_backend, output_path)
|
/external/llvm/utils/llvm-build/llvmbuild/ |
D | main.py | 203 def write_components(self, output_path): argument 257 directory_path = os.path.join(output_path, subpath[1:]) 319 def write_library_table(self, output_path, enabled_optional_components): argument 385 make_install_dir(os.path.dirname(output_path)) 386 f = open(output_path+'.new', 'w') 428 if not os.path.isfile(output_path): 429 os.rename(output_path+'.new', output_path) 430 elif filecmp.cmp(output_path, output_path+'.new'): 431 os.remove(output_path+'.new') 433 os.remove(output_path) [all …]
|
D | configutil.py | 8 def configure_file(input_path, output_path, substitutions): argument 39 output_parent_path = os.path.dirname(os.path.abspath(output_path)) 44 if os.path.exists(output_path): 47 f = open(output_path, "rb") 60 f = open(output_path, "wb")
|
/external/dbus-binding-generator/chromeos-dbus-bindings/ |
D | proxy_generator_unittest.cc | 1349 base::FilePath output_path = temp_dir_.path().Append("output.h"); in TEST_F() local 1351 EXPECT_TRUE(ProxyGenerator::GenerateProxies(config, interfaces, output_path)); in TEST_F() 1353 EXPECT_TRUE(base::ReadFileToString(output_path, &contents)); in TEST_F() 1367 base::FilePath output_path = temp_dir_.path().Append("output2.h"); in TEST_F() local 1370 EXPECT_TRUE(ProxyGenerator::GenerateProxies(config, interfaces, output_path)); in TEST_F() 1372 EXPECT_TRUE(base::ReadFileToString(output_path, &contents)); in TEST_F() 1388 base::FilePath output_path = temp_dir_.path().Append("output3.h"); in TEST_F() local 1392 EXPECT_TRUE(ProxyGenerator::GenerateProxies(config, interfaces, output_path)); in TEST_F() 1394 EXPECT_TRUE(base::ReadFileToString(output_path, &contents)); in TEST_F() 1409 base::FilePath output_path = temp_dir_.path().Append("output4.h"); in TEST_F() local [all …]
|
D | method_name_generator_unittest.cc | 61 base::FilePath output_path = temp_dir_.path().Append("output.h"); in TEST_F() local 63 output_path)); in TEST_F() 65 EXPECT_TRUE(base::ReadFileToString(output_path, &contents)); in TEST_F()
|
D | proxy_generator_mock_unittest.cc | 237 base::FilePath output_path = temp_dir_.path().Append("output.h"); in TEST_F() local 241 EXPECT_TRUE(ProxyGenerator::GenerateMocks(config, interfaces, output_path, in TEST_F() 244 EXPECT_TRUE(base::ReadFileToString(output_path, &contents)); in TEST_F()
|
/external/autotest/client/site_tests/graphics_VTSwitch/ |
D | graphics_VTSwitch.py | 167 output_path = os.path.join(self.resultsdir, filename) 168 return self._take_drm_screenshot(output_path) 171 def _take_drm_screenshot(self, output_path): argument 177 output = utils.system_output('%s %s.rgba' % (getfb_path, output_path)) 186 (size, output_path, output_path)) 188 logging.info('Saving screenshot to %s', output_path) 189 return output_path
|
/external/v8/build/android/ |
D | adb_logcat_printer.py | 171 if options.output_path: 172 if not os.path.exists(os.path.dirname(options.output_path)): 174 os.path.dirname(options.output_path)) 175 os.makedirs(os.path.dirname(options.output_path)) 176 output_file = open(options.output_path, 'w') 180 options.output_path)
|
D | main_dex_action.gypi | 14 # 'output_path': 'output path', 25 'output_path%': '', 36 '<(output_path)', 40 '--main-dex-list-path', '<(output_path)',
|
D | dex_action.gypi | 28 'message': 'Creating dex file: <(output_path)', 46 '<(output_path)', 47 '<(output_path).inputs', 51 '--dex-path=<(output_path)',
|
/external/doclava/src/com/google/doclava/ |
D | AtLinksNavTree.java | 62 String output_path; in writeAtLinksNavTree() local 64 output_path = dir + Doclava.testSupportPath + "at_links_navtree.json"; in writeAtLinksNavTree() 66 output_path = dir + Doclava.wearableSupportPath + "at_links_navtree.json"; in writeAtLinksNavTree() 68 output_path = "at_links_navtree.json"; in writeAtLinksNavTree() 71 ClearPage.write(data, "at_links_navtree.cs", output_path); in writeAtLinksNavTree()
|
/external/pdfium/testing/tools/ |
D | fixup_pdf_template.py | 74 def expand_file(input_path, output_path): argument 78 with open(output_path, 'wb') as outfile: 95 output_path = os.path.join(output_dir, testcase_root + '.pdf') 96 expand_file(testcase_path, output_path)
|
/external/autotest/client/site_tests/graphics_dEQP/ |
D | process_logs.py | 230 output_path = os.path.join(_EXPECTATIONS_DIR, gpu) 231 if not os.access(output_path, os.R_OK): 232 os.makedirs(output_path) 233 expectation_path = os.path.join(output_path, filter) 235 expectation_path = os.path.join(output_path, filter + '.hasty')
|