/external/chromium_org/build/android/gyp/ |
D | emma_instr.py | 81 if not (options.input_path and options.output_path and 85 coverage_file = os.path.join(os.path.dirname(options.output_path), 87 sources_file = os.path.join(os.path.dirname(options.output_path), 95 shutil.rmtree(options.output_path, ignore_errors=True) 96 shutil.copytree(options.input_path, options.output_path) 98 shutil.copy(options.input_path, options.output_path) 146 if not (options.input_path and options.output_path and 151 coverage_file = os.path.join(os.path.dirname(options.output_path), 153 sources_file = os.path.join(os.path.dirname(options.output_path), 171 options.output_path) [all …]
|
D | proguard.py | 15 outjars = options.output_path 21 if os.path.exists(options.output_path): 22 os.remove(options.output_path)
|
D | strip_library_for_device.py | 15 def StripLibrary(android_strip, android_strip_args, library_path, output_path): argument 16 if build_utils.IsTimeStale(output_path, [library_path]): 19 ['-o', output_path, library_path])
|
/external/chromium_org/tools/telemetry/telemetry/core/platform/profiler/ |
D | tcpdump_profiler.py | 27 def __init__(self, adb, output_path): argument 29 self._output_path = output_path 60 def __init__(self, output_path): argument 61 if not os.path.exists(output_path): 62 os.makedirs(output_path) 63 self._dump_file = os.path.join(output_path, self._DUMP_FILE) 98 def __init__(self, browser_backend, platform_backend, output_path, state): argument 100 browser_backend, platform_backend, output_path, state) 105 browser_backend.adb, output_path) 107 self._platform_profiler = _TCPDumpProfilerLinux(output_path)
|
D | trace_profiler.py | 12 def __init__(self, browser_backend, platform_backend, output_path, state, argument 15 browser_backend, platform_backend, output_path, state) 49 def __init__(self, browser_backend, platform_backend, output_path, state): argument 51 browser_backend, platform_backend, output_path, state, 61 def __init__(self, browser_backend, platform_backend, output_path, state): argument 63 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 | 25 def __init__(self, browser_backend, platform_backend, output_path, state): argument 27 browser_backend, platform_backend, output_path, state) 29 self._output_path = output_path + '-trace.zip' 30 self._systrace_output_path = output_path + '.systrace'
|
D | iprofiler_profiler.py | 23 def __init__(self, pid, output_path): argument 24 self._output_path = output_path 69 def __init__(self, browser_backend, platform_backend, output_path, state): argument 71 browser_backend, platform_backend, output_path, state)
|
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 | android_screen_recorder_profiler.py | 15 def __init__(self, browser_backend, platform_backend, output_path, state): argument 17 browser_backend, platform_backend, output_path, state) 18 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 97 def __init__(self, browser_backend, platform_backend, output_path, state): argument 99 browser_backend, platform_backend, output_path, state) 102 browser_backend, output_path)
|
D | __init__.py | 20 def __init__(self, browser_backend, platform_backend, output_path, state): argument 23 self._output_path = output_path
|
/external/llvm/utils/llvm-build/llvmbuild/ |
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")
|
D | main.py | 202 def write_components(self, output_path): argument 256 directory_path = os.path.join(output_path, subpath[1:]) 318 def write_library_table(self, output_path, enabled_optional_components): argument 384 make_install_dir(os.path.dirname(output_path)) 385 f = open(output_path, 'w') 495 def write_cmake_fragment(self, output_path): argument 508 make_install_dir(os.path.dirname(output_path)) 509 f = open(output_path, 'w') 514 header_name = os.path.basename(output_path) 576 def write_cmake_exports_fragment(self, output_path): argument [all …]
|
/external/chromium_org/components/breakpad/tools/ |
D | generate_breakpad_symbols.py | 153 output_path = os.path.join( 155 if os.path.isdir(output_path): 156 if os.path.getmtime(binary) < os.path.getmtime(output_path): 171 if os.path.isdir(output_path): 172 os.utime(output_path, None) 177 output_path = os.path.join(options.symbols_dir, module_line.group(2), 179 mkdir_p(output_path) 182 f = open(os.path.join(output_path, symbol_file), 'w')
|
/external/chromium_org/build/android/ |
D | dex_action.gypi | 28 'message': 'Creating dex file: <(output_path)', 44 '<(output_path)', 45 '<(output_path).inputs', 49 '--dex-path=<(output_path)',
|
/external/chromium_org/net/tools/dump_cache/ |
D | dump_cache.cc | 124 base::FilePath output_path = command_line.GetSwitchValuePath(kOutputPath); in main() local 125 if ((dump_to_files || upgrade) && output_path.empty()) in main() 160 return UpgradeCache(output_path, server); in main() 176 net::SimpleCacheDumper dumper(input_path, output_path); in main()
|
/external/skia/gm/rebaseline_server/ |
D | compare_rendered_pictures_test.py | 73 output_path=os.path.join(out_path, skpname), red=redvalue) 88 def _run_skpmaker(self, output_path, red=0, green=0, blue=0, argument 108 '--writePath', str(output_path)])
|
/external/chromium_org/third_party/skia/gm/rebaseline_server/ |
D | compare_rendered_pictures_test.py | 73 output_path=os.path.join(out_path, skpname), red=redvalue) 88 def _run_skpmaker(self, output_path, red=0, green=0, blue=0, argument 108 '--writePath', str(output_path)])
|
/external/chromium_org/tools/gn/ |
D | ninja_action_target_writer.cc | 63 OutputFile output_path( in Run() local 66 output_files.push_back(output_path); in Run() 68 path_output_.WriteFile(out_, output_path); in Run() 211 OutputFile output_path(output_template_result[out_i]); in WriteOutputFilesForBuildLine() local 212 output_files->push_back(output_path); in WriteOutputFilesForBuildLine() 214 path_output_.WriteFile(out_, output_path); in WriteOutputFilesForBuildLine()
|
/external/chromium_org/content/browser/download/ |
D | download_file_unittest.cc | 347 base::FilePath output_path; in TEST_F() local 351 RenameAndUniquify(path_1, &output_path)); in TEST_F() 354 EXPECT_EQ(path_1, output_path); in TEST_F() 366 RenameAndUniquify(path_2, &output_path)); in TEST_F() 369 EXPECT_EQ(path_2, output_path); in TEST_F() 380 RenameAndUniquify(path_3, &output_path)); in TEST_F() 383 EXPECT_EQ(path_3, output_path); in TEST_F() 397 RenameAndUniquify(path_4, &output_path)); in TEST_F() 400 EXPECT_EQ(path_4, output_path); in TEST_F() 421 RenameAndAnnotate(path_5, &output_path)); in TEST_F() [all …]
|
/external/chromium_org/tools/flakiness/ |
D | find_flakiness.py | 91 def FindUnaryFlakiness(test_path, output_path, num_procs, num_repeats, timeout): argument 154 data_file = open(output_path, 'w') 167 output_path = os.path.basename(args[0]) + FF_OUTPUT_SUFFIX 175 args[0], output_path, FF_NUM_PROCS, FF_NUM_REPEATS, FF_TIMEOUT)
|
/external/chromium_org/base/test/ |
D | test_suite.cc | 185 FilePath output_path(CommandLine::ForCurrentProcess()->GetSwitchValuePath( in AddTestLauncherResultPrinter() local 191 if (PathExists(output_path)) { in AddTestLauncherResultPrinter() 192 LOG(WARNING) << "Test launcher output path " << output_path.AsUTF8Unsafe() in AddTestLauncherResultPrinter() 198 CHECK(printer->Initialize(output_path)); in AddTestLauncherResultPrinter()
|
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/ |
D | generate_protocol_externs.py | 84 def generate_protocol_externs(output_path, input_path): argument 91 output_file = open(output_path, "w") 216 output_path = sys.argv[2] variable 218 generate_protocol_externs(output_path, input_path)
|
/external/chromium_org/third_party/webrtc/voice_engine/test/auto_test/standard/ |
D | rtp_rtcp_test.cc | 160 std::string output_path = webrtc::test::OutputPath(); in TEST_F() local 161 std::string incoming_filename = output_path + "dump_in_3sec.rtp"; in TEST_F() 162 std::string outgoing_filename = output_path + "dump_out_3sec.rtp"; in TEST_F()
|