Searched refs:output_path (Results 1 - 25 of 145) sorted by relevance

123456

/external/llvm/utils/llvm-build/llvmbuild/
H A Dconfigutil.py8 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")
H A Dmain.py202 def write_components(self, output_path):
256 directory_path = os.path.join(output_path, subpath[1:])
317 def write_library_table(self, output_path, enabled_optional_components):
383 make_install_dir(os.path.dirname(output_path))
384 f = open(output_path, 'w')
493 def write_cmake_fragment(self, output_path):
495 write_cmake_fragment(output_path) -> None
506 make_install_dir(os.path.dirname(output_path))
507 f = open(output_path, 'w')
512 header_name = os.path.basename(output_path)
[all...]
/external/chromium_org/net/tools/dump_cache/
H A Dupgrade_win.h16 int UpgradeCache(const base::FilePath& output_path, HANDLE pipe);
H A Ddump_cache.cc123 base::FilePath output_path = command_line.GetSwitchValuePath(kOutputPath); local
124 if ((dump_to_files || upgrade) && output_path.empty())
159 return UpgradeCache(output_path, server);
175 net::SimpleCacheDumper dumper(input_path, output_path);
/external/chromium_org/tools/telemetry/telemetry/core/platform/profiler/
H A Dtcpdump_profiler.py27 def __init__(self, adb, output_path):
29 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...]
H A Dandroid_memreport_profiler.py15 def __init__(self, browser_backend, platform_backend, output_path, state):
17 browser_backend, platform_backend, output_path, state)
18 self._html_file = output_path + '.html'
H A Dandroid_screen_recorder_profiler.py15 def __init__(self, browser_backend, platform_backend, output_path, state):
17 browser_backend, platform_backend, output_path, state)
18 self._output_path = output_path + '.mp4'
H A Dmonsoon_profiler.py21 def _CollectData(output_path, is_collecting):
48 with open(output_path, 'w') as output_file:
55 'gnuplot --persist' % output_path)
64 def __init__(self, browser_backend, platform_backend, output_path, state):
66 browser_backend, platform_backend, output_path, state)
71 target=_CollectData, args=(output_path, self._is_collecting))
H A Dtrace_profiler.py12 def __init__(self, browser_backend, platform_backend, output_path, state):
14 browser_backend, platform_backend, output_path, state)
H A Dandroid_systrace_profiler.py25 def __init__(self, browser_backend, platform_backend, output_path, state):
27 browser_backend, platform_backend, output_path, state)
29 self._output_path = output_path + '-trace.zip'
30 self._systrace_output_path = output_path + '.systrace'
H A Diprofiler_profiler.py23 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)
H A Dsample_profiler.py17 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)
H A D__init__.py18 def __init__(self, browser_backend, platform_backend, output_path, state):
21 self._output_path = output_path
H A Doomkiller_profiler.py27 def __init__(self, browser_backend, platform_backend, output_path, state):
29 browser_backend, platform_backend, output_path, state)
H A Dtcmalloc_heap_profiler.py25 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)
/external/chromium_org/build/android/gyp/
H A 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),
169 options.output_path)
[all...]
H A Dproguard.py16 outjars = options.output_path
22 if os.path.exists(options.output_path):
23 os.remove(options.output_path)
H A Dstrip_library_for_device.py15 def StripLibrary(android_strip, android_strip_args, library_path, output_path):
16 if build_utils.IsTimeStale(output_path, [library_path]):
19 ['-o', output_path, library_path])
/external/chromium/net/tools/dump_cache/
H A Ddump_cache.cc32 int CopyCache(const std::wstring& output_path, HANDLE pipe, bool copy_to_text);
126 std::wstring output_path = command_line.GetSwitchValueNative(kOutputPath); local
128 if (output_path.size() >= 1 && output_path[output_path.size() - 1] != '\\')
129 output_path.push_back('\\');
137 if (output_path.empty())
172 return CopyCache(output_path, server, copy_to_text);
/external/chromium_org/tools/checkdeps/
H A Dresults.py107 def __init__(self, output_path, wrapped_formatter=None):
108 self.output_path = output_path
126 with open(self.output_path, 'w') as f:
/external/chromium_org/media/webm/chromeos/
H A Dwebm_encoder.h37 // Create new instance for writing to |output_path|. If |realtime| is |true|,
39 WebmEncoder(const base::FilePath& output_path, int bitrate, bool realtime);
/external/chromium_org/tools/flakiness/
H A Dfind_flakiness.py91 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)
/external/v8/test/message/
H A Dtestcfg.py119 output_path = file_prefix + ".out"
120 if not exists(output_path):
121 print "Could not find %s" % output_path
123 result.append(MessageTestCase(test, file_path, output_path, mode,
/external/chromium_org/tools/gn/
H A Dninja_script_target_writer.cc47 OutputFile output_path(
50 output_files.push_back(output_path);
52 path_output_.WriteFile(out_, output_path);
193 OutputFile output_path(output_template_result[out_i]);
194 output_files->push_back(output_path);
196 path_output_.WriteFile(out_, output_path);
/external/chromium_org/chrome/tools/build/mac/
H A Dgenerate_localizer112 output_path = argv[1];
136 file_fd = open(output_path, 'w')

Completed in 364 milliseconds

123456