HomeSort by relevance Sort by last modified time
    Searched refs:output_path (Results 1 - 25 of 275) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/chromium_org/build/android/gyp/
pack_arm_relocations.py 36 output_path):
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):
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)
    [all...]
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...]
proguard.py 15 outjars = options.output_path
23 if os.path.exists(options.output_path):
24 os.remove(options.output_path)
strip_library_for_device.py 14 def StripLibrary(android_strip, android_strip_args, library_path, output_path):
15 if build_utils.IsTimeStale(output_path, [library_path]):
18 ['-o', output_path, library_path])
  /external/chromium_org/tools/relocation_packer/test_data/
generate_elf_file_unittest_relocs.py 24 output_path):
31 input_path, output_path]
35 pack_command = [android_pack_relocations, output_path]
41 output_path):
42 shutil.copy(input_path, output_path)
46 unpack_command = [android_pack_relocations, '-u', output_path]
  /external/llvm/utils/llvm-build/llvmbuild/
configutil.py 8 def configure_file(input_path, output_path, substitutions):
9 """configure_file(input_path, output_path, substitutions) -> bool
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/chromium_org/chrome/browser/resources/chromeos/chromevox/tools/
upload_chromevox_to_webstore.py 38 parser.usage = '%prog <extension_path> <output_path> <client_secret'
59 def RunInteractivePrompt(client_secret, output_path):
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/tools/telemetry/telemetry/core/platform/profiler/
trace_profiler.py 13 def __init__(self, browser_backend, platform_backend, output_path, state,
16 browser_backend, platform_backend, output_path, state)
53 def __init__(self, browser_backend, platform_backend, output_path, state):
55 browser_backend, platform_backend, output_path, state,
65 def __init__(self, browser_backend, platform_backend, output_path, state):
67 browser_backend, platform_backend, output_path, state,
tcpdump_profiler.py 26 def __init__(self, adb, output_path):
28 self._output_path = output_path
59 def __init__(self, output_path):
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):
99 browser_backend, platform_backend, output_path, state)
104 browser_backend.adb, output_path)
106 self._platform_profiler = _TCPDumpProfilerLinux(output_path)
    [all...]
monsoon_profiler.py 21 def _CollectData(output_path, is_collecting):
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):
70 browser_backend, platform_backend, output_path, state)
75 target=_CollectData, args=(output_path, self._is_collecting))
android_systrace_profiler.py 26 def __init__(self, browser_backend, platform_backend, output_path, state):
28 browser_backend, platform_backend, output_path, state)
30 self._output_path = output_path + '-trace.zip'
31 self._systrace_output_path = output_path + '.systrace'
android_screen_recorder_profiler.py 16 def __init__(self, browser_backend, platform_backend, output_path, state):
18 browser_backend, platform_backend, output_path, state)
19 self._output_path = output_path + '.mp4'
iprofiler_profiler.py 23 def __init__(self, pid, output_path):
24 self._output_path = output_path
69 def __init__(self, browser_backend, platform_backend, output_path, state):
71 browser_backend, platform_backend, output_path, state)
sample_profiler.py 17 def __init__(self, pid, output_path):
18 self._output_path = output_path
60 def __init__(self, browser_backend, platform_backend, output_path, state):
62 browser_backend, platform_backend, output_path, state)
__init__.py 20 def __init__(self, browser_backend, platform_backend, output_path, state):
23 self._output_path = output_path
win_pgo_profiler.py 20 def __init__(self, browser_backend, platform_backend, output_path, state):
22 browser_backend, platform_backend, output_path, state)
tcmalloc_heap_profiler.py 25 def __init__(self, browser_backend, output_path):
27 self._output_path = output_path
97 def __init__(self, browser_backend, platform_backend, output_path, state):
99 browser_backend, platform_backend, output_path, state)
102 browser_backend, output_path)
oomkiller_profiler.py 30 def __init__(self, browser_backend, platform_backend, output_path, state):
32 browser_backend, platform_backend, output_path, state)
  /external/chromium_org/third_party/WebKit/Source/devtools/scripts/
build_applications.py 26 output_path_flag_index = argv.index('--output_path')
27 output_path = argv[output_path_flag_index + 1]
32 print('Usage: %s app_1 app_2 ... app_N --input_path <input_path> --output_path <output_path> --debug <0_or_1>' % argv[0])
37 concatenate_application_code.build_application(app, loader, input_path, output_path, minify)
  /external/chromium_org/net/tools/dump_cache/
dump_cache.cc 67 base::FilePath output_path = command_line.GetSwitchValuePath(kOutputPath); local
68 if (dump_to_files && output_path.empty())
76 net::SimpleCacheDumper dumper(input_path, output_path);
  /development/testrunner/coverage/
coverage.py 72 output_path=None,
81 output_path: path to place output files in. If None will use
84 If not None, this will be used to customize output_path as shown above.
89 if output_path is None:
93 output_path = os.path.join(self._out_path,
100 coverage_local_path = os.path.join(output_path,
104 report_path = os.path.join(output_path,
213 output_path = os.path.join(self._output_root_path, target_name)
215 if os.path.isdir(output_path) and target is not None:
216 coverage_files = self._FindCoverageFiles(output_path)
    [all...]
  /external/chromium_org/components/crash/tools/
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/ppapi/tests/
create_nonsfi_test_nmf.py 73 def OutputNmf(nmf_map, output_path):
75 with open(output_path, 'w') as output:
  /external/chromium_org/media/cast/test/
simulator.cc 164 // located at |output_path|.
168 const base::FilePath& output_path) {
189 if (AppendToFile(output_path, serialized_log.get(), output_bytes) == -1) {
196 // |output_path| is the path to write serialized log.
199 const base::FilePath& output_path,
412 LOG(INFO) << "Writing log: " << output_path.value();
416 base::ScopedFILE file(base::OpenFile(output_path, "wb"));
423 output_path);
425 output_path);
525 base::FilePath output_path = cmd->GetSwitchValuePath local
    [all...]
  /external/chromium_org/tools/flakiness/
find_flakiness.py 91 def FindUnaryFlakiness(test_path, output_path, num_procs, num_repeats, timeout):
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)

Completed in 171 milliseconds

1 2 3 4 5 6 7 8 91011