Home
last modified time | relevance | path

Searched refs:out_path (Results 1 – 18 of 18) sorted by relevance

/external/v8/build/toolchain/mac/
Dsetup_toolchain.py22 out_path = 'gyp-mac-tool'
24 with open(out_path, 'rb') as read_tool_file:
31 with open(out_path, 'wb') as write_tool_file:
33 st = os.stat(out_path)
36 os.chmod(out_path, st.st_mode | stat.S_IEXEC)
/external/chromium-trace/catapult/third_party/html5lib-python/html5lib/tests/
Dtokenizertotree.py17 def main(out_path): argument
18 if not os.path.exists(out_path):
19 sys.stderr.write("Path %s does not exist" % out_path)
23 run_file(filename, out_path)
26 def run_file(filename, out_path): argument
33 output_file = open(os.path.join(out_path, "tokenizer_%s.dat" % name), "w")
/external/v8/tools/gyp/test/copies/
Dgyptest-attribs.py19 out_path = test.built_file_path(path, chdir='src')
22 out_stat = os.stat(out_path)
34 out_path = test.built_file_path('executable-file.sh', chdir='src') variable
35 test.must_contain(out_path,
/external/chromium-trace/catapult/telemetry/telemetry/internal/platform/profiler/
Dandroid_profiling_helper.py57 def FindMatchingStrippedLibrary(out_path): argument
62 host_lib_path = os.path.join(out_path, lib_base)
63 host_lib_pattern = os.path.join(out_path, '*_apk', 'libs', '*', lib_base)
72 out_path = None
74 for out_path in util.GetBuildDirectories():
75 stripped_host_lib = FindMatchingStrippedLibrary(out_path)
85 os.path.join(out_path, 'lib.unstripped', lib_base),
86 os.path.join(out_path, 'lib', lib_base)
/external/lldb/scripts/
Dsed-sources144 my $out_path;
155 ($out_fh, $out_path) = tempfile();
156 $opt_g and print "temporary for '$in_path' is '$out_path'\n";
186 my $copy_command = "cp '$out_path' '$in_path'";
/external/webrtc/webrtc/tools/frame_editing/
Dframe_editing_lib.cc27 int last_frame_to_process, const string& out_path) { in EditFrames() argument
44 FILE* out_fid = fopen(out_path.c_str(), "wb"); in EditFrames()
47 fprintf(stderr, "Could not open output file: %s.\n", out_path.c_str()); in EditFrames()
Dframe_editing.cc91 const char* out_path = parser.GetFlag("out_path").c_str(); in main() local
108 interval, last_frame_to_cut, out_path); in main()
Dframe_editing_lib.h36 int last_frame_to_process, const std::string& out_path);
/external/chromium-trace/catapult/tracing/tracing_build/
Dstrip_memory_infra_trace.py95 out_path = in_path.split('.json')[0] + '-filtered.json'
96 print '\nWriting filtered trace to ' + out_path,
97 with open(out_path, 'w') as fout:
/external/lldb/tools/lldb-perf/lib/
DResults.cpp158 Results::Write (const char *out_path) in Write() argument
170 if (out_path == NULL) in Write()
171 out_path = "/dev/stdout"; in Write()
173 …e = CFURLCreateFromFileSystemRepresentation(NULL, (const UInt8*)out_path, strlen(out_path), FALSE); in Write()
/external/v8/tools/gyp/test/mac/
Dgyptest-bundle-resources.py23 out_path = test.built_file_path(
27 out_stat = os.stat(out_path)
/external/chromium-trace/catapult/telemetry/telemetry/internal/platform/power_monitor/
Dpowermetrics_power_monitor.py97 def ConstructMetric(out_path, src_path): argument
100 return RunningAverage(out_path, src_path, [])
231 for k in metric.out_path[:-1]:
235 out[metric.out_path[-1]] = avg
/external/v8/build/toolchain/win/
Dsetup_toolchain.py160 out_path = 'gyp-win-tool'
162 with open(out_path, 'rb') as read_tool_file:
169 with open(out_path, 'wb') as write_tool_file:
/external/v8/build/android/play_services/
Dpreprocess.py269 def _ExtractAll(zip_path, out_path): argument
271 zip_file.extractall(out_path)
/external/webrtc/webrtc/voice_engine/test/cmd_test/
Dvoe_cmd_test.cc70 void RunTest(std::string out_path);
225 void RunTest(std::string out_path) { in RunTest() argument
256 const std::string play_filename = out_path + "recorded_playout.pcm"; in RunTest()
257 const std::string mic_filename = out_path + "recorded_mic.pcm"; in RunTest()
/external/v8/tools/gyp/pylib/gyp/
Dcommon.py436 def CopyTool(flavor, out_path, generator_flags={}): argument
464 tool_path = os.path.join(out_path, 'gyp-%s-tool' % prefix)
/external/webrtc/webrtc/modules/audio_processing/test/
Dprocess_test.cc457 const std::string out_path = webrtc::test::OutputPath(); in void_main() local
463 const std::string vad_file_default = out_path + "vad_out.dat"; in void_main()
464 const std::string ns_prob_file_default = out_path + "ns_prob.dat"; in void_main()
472 out_filename = out_path + "out"; in void_main()
/external/lldb/source/Target/
DProcess.cpp448 FileSpec out_path; in FinalizeFileActions() local
453 out_path = target->GetStandardOutputPath(); in FinalizeFileActions()
457 if (in_path || out_path || err_path) in FinalizeFileActions()
463 if (out_path && out_path.GetPath(path, sizeof(path))) in FinalizeFileActions()