Home
last modified time | relevance | path

Searched refs:output_path (Results 1 – 25 of 114) sorted by relevance

12345

/external/chromium_org/build/android/gyp/
Dpack_arm_relocations.py36 output_path): argument
37 if not build_utils.IsTimeStale(output_path, [library_path]):
46 library_path, output_path]
50 pack_command = [android_pack_relocations, output_path]
54 def CopyArmLibraryUnchanged(library_path, output_path): argument
55 if not build_utils.IsTimeStale(output_path, [library_path]):
58 shutil.copy(library_path, output_path)
98 output_path = os.path.join(options.packed_libraries_dir, library)
104 output_path)
106 CopyArmLibraryUnchanged(library_path, output_path)
Demma_instr.py81 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 …]
Dproguard.py15 outjars = options.output_path
23 if os.path.exists(options.output_path):
24 os.remove(options.output_path)
Dstrip_library_for_device.py14 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])
Djava_cpp_enum.py152 output_path = os.path.join(options.output_dir, package_path, file_name)
153 output_paths.append(output_path)
155 build_utils.MakeDirectory(os.path.dirname(output_path))
156 DoWriteOutput(source_path, output_path, enum_definition)
203 def DoWriteOutput(source_path, output_path, enum_definition): argument
204 with open(output_path, 'w') as out_file:
/external/chromium_org/tools/telemetry/telemetry/core/platform/profiler/
Dtcpdump_profiler.py26 def __init__(self, adb, output_path): argument
28 self._output_path = output_path
59 def __init__(self, output_path): argument
60 if not os.path.exists(output_path):
61 os.makedirs(output_path)
62 self._dump_file = os.path.join(output_path, self._DUMP_FILE)
97 def __init__(self, browser_backend, platform_backend, output_path, state): argument
99 browser_backend, platform_backend, output_path, state)
104 browser_backend.adb, output_path)
106 self._platform_profiler = _TCPDumpProfilerLinux(output_path)
Dtrace_profiler.py13 def __init__(self, browser_backend, platform_backend, output_path, state, argument
16 browser_backend, platform_backend, output_path, state)
53 def __init__(self, browser_backend, platform_backend, output_path, state): argument
55 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,
Dmonsoon_profiler.py21 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))
Dandroid_systrace_profiler.py26 def __init__(self, browser_backend, platform_backend, output_path, state): argument
28 browser_backend, platform_backend, output_path, state)
30 self._output_path = output_path + '-trace.zip'
31 self._systrace_output_path = output_path + '.systrace'
Diprofiler_profiler.py23 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)
Dsample_profiler.py17 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)
Dandroid_screen_recorder_profiler.py16 def __init__(self, browser_backend, platform_backend, output_path, state): argument
18 browser_backend, platform_backend, output_path, state)
19 self._output_path = output_path + '.mp4'
Dtcmalloc_heap_profiler.py25 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)
/external/chromium_org/tools/relocation_packer/test_data/
Dgenerate_elf_file_unittest_relocs.py24 output_path): argument
31 input_path, output_path]
35 pack_command = [android_pack_relocations, output_path]
41 output_path): argument
42 shutil.copy(input_path, output_path)
46 unpack_command = [android_pack_relocations, '-u', output_path]
/external/llvm/utils/llvm-build/llvmbuild/
Dconfigutil.py8 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")
Dmain.py202 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/chrome/browser/resources/chromeos/chromevox/tools/
Dupload_chromevox_to_webstore.py59 def RunInteractivePrompt(client_secret, output_path): argument
74 chromevox_webstore_util.PostUpload(output_path, client_secret))
94 output_path = args[1]
97 with ZipFile(output_path, 'w') as zip:
115 print 'Created ChromeVox zip file in %s' % output_path
117 RunInteractivePrompt(client_secret, output_path)
/external/chromium_org/components/crash/tools/
Dgenerate_breakpad_symbols.py153 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/media/cast/test/
Dsimulator.cc168 const base::FilePath& output_path) { in AppendLogToFile() argument
189 if (AppendToFile(output_path, serialized_log.get(), output_bytes) == -1) { in AppendLogToFile()
199 const base::FilePath& output_path, in RunSimulation() argument
412 LOG(INFO) << "Writing log: " << output_path.value(); in RunSimulation()
416 base::ScopedFILE file(base::OpenFile(output_path, "wb")); in RunSimulation()
423 output_path); in RunSimulation()
425 output_path); in RunSimulation()
525 base::FilePath output_path = cmd->GetSwitchValuePath( in main() local
527 if (output_path.empty()) { in main()
528 base::GetTempDir(&output_path); in main()
[all …]
/external/chromium_org/net/tools/dump_cache/
Ddump_cache.cc67 base::FilePath output_path = command_line.GetSwitchValuePath(kOutputPath); in main() local
68 if (dump_to_files && output_path.empty()) in main()
76 net::SimpleCacheDumper dumper(input_path, output_path); in main()
/external/chromium_org/build/android/
Ddex_action.gypi28 'message': 'Creating dex file: <(output_path)',
44 '<(output_path)',
45 '<(output_path).inputs',
49 '--dex-path=<(output_path)',
/external/skia/gm/rebaseline_server/
Dcompare_rendered_pictures_test.py73 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/flakiness/
Dfind_flakiness.py91 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/third_party/WebKit/Source/devtools/
DBUILD.gn222 output_path = "$root_out_dir/resources/inspector/"
224 output_path + "devtools.js",
225 output_path + "toolbox.js",
226 output_path + "heap_snapshot_worker_module.js",
227 output_path + "temp_storage_shared_worker_module.js",
228 output_path + "script_formatter_worker_module.js",
244 "--output_path", rebase_path(output_path, root_build_dir),
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/
Dbuild_applications.py27 output_path = argv[output_path_flag_index + 1]
37 concatenate_application_code.build_application(app, loader, input_path, output_path, minify)

12345