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

1 2

  /external/chromium_org/components/nacl/browser/
nacl_file_host_unittest.cc 76 base::FilePath out_path; local
77 EXPECT_TRUE(PnaclCanOpenFile("pnacl_json", &out_path));
80 EXPECT_EQ(expected_path, out_path);
82 EXPECT_TRUE(PnaclCanOpenFile("x86_32_llc", &out_path));
85 EXPECT_EQ(expected_path, out_path);
88 EXPECT_FALSE(PnaclCanOpenFile(".xchars", &out_path));
89 EXPECT_FALSE(PnaclCanOpenFile("/xchars", &out_path));
90 EXPECT_FALSE(PnaclCanOpenFile("x/chars", &out_path));
91 EXPECT_FALSE(PnaclCanOpenFile("\\xchars", &out_path));
92 EXPECT_FALSE(PnaclCanOpenFile("x\\chars", &out_path));
    [all...]
  /external/chromium_org/chrome/browser/translate/
cld_data_harness.cc 26 void CldDataHarness::GetTestDataSourceDirectory(base::FilePath* out_path) {
27 ASSERT_TRUE(PathService::Get(chrome::DIR_TEST_DATA, out_path));
28 *out_path =
29 out_path->Append(FILE_PATH_LITERAL("cld2_component")).Append(kCrxVersion);
standalone_cld_data_harness.cc 40 base::FilePath* out_path) {
41 CldDataHarness::GetTestDataSourceDirectory(out_path);
42 *out_path = out_path->Append(FILE_PATH_LITERAL("_platform_specific"))
51 base::FilePath* out_path) {
52 ASSERT_TRUE(PathService::Get(chrome::DIR_USER_DATA, out_path));
53 *out_path = out_path->Append(kStandaloneDataFileName);
cld_data_harness.h 71 void GetTestDataSourceDirectory(base::FilePath* out_path);
component_cld_data_harness.cc 58 base::FilePath* out_path) {
59 ASSERT_TRUE(PathService::Get(chrome::DIR_COMPONENT_CLD2, out_path));
63 base::FilePath* out_path) {
64 GetExtractedComponentDestination(out_path);
65 *out_path = out_path->Append(CldDataHarness::GetTestDataSourceCrxVersion())
  /external/chromium_org/build/toolchain/mac/
setup_toolchain.py 17 out_path = 'gyp-mac-tool'
18 with open(out_path, 'w') as tool_file:
22 st = os.stat(out_path)
23 os.chmod(out_path, st.st_mode | stat.S_IEXEC)
  /external/chromium_org/tools/gyp/test/copies/
gyptest-attribs.py 19 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_org/third_party/webrtc/tools/frame_editing/
frame_editing_lib.h 36 int last_frame_to_process, const std::string& out_path);
frame_editing_lib.cc 26 int last_frame_to_process, const string& out_path) {
43 FILE* out_fid = fopen(out_path.c_str(), "wb");
46 fprintf(stderr, "Could not open output file: %s.\n", out_path.c_str());
frame_editing.cc 26 " --out_path=edited_clip.yuv\n"
60 "--out_path(string): The output file to which frames are written."
74 parser.SetFlag("out_path", "edited_output.yuv");
90 const char* out_path = parser.GetFlag("out_path").c_str(); local
107 interval, last_frame_to_cut, out_path);
  /external/skia/gm/rebaseline_server/
compare_rendered_pictures_test.py 69 out_path = os.path.join(self._temp_dir, subdir)
70 os.makedirs(out_path)
73 output_path=os.path.join(out_path, skpname), red=redvalue)
83 '-r', out_path,
85 '--writeJsonSummaryPath', os.path.join(out_path, 'summary.json'),
86 '--writePath', out_path])
  /external/chromium_org/chrome/test/chromedriver/chrome/
chrome_finder.h 25 base::FilePath* out_path);
  /external/chromium_org/tools/gyp/test/mac/
gyptest-bundle-resources.py 19 out_path = test.built_file_path(
23 out_stat = os.stat(out_path)
  /external/chromium_org/tools/site_compare/
site_compare.py 76 def Compare(base, compare, ops, root_path=None, out_path=None):
84 out_path: place to put any output from the operators
99 if out_path is None:
100 out_path = os.path.join(os.path.split(__file__)[0], "Compares")
117 out_path = os.path.join(out_path, base[0], base[1], compare[0], compare[1])
118 drivers.windowing.PreparePath(out_path)
124 out_file = open(os.path.join(out_path, "log.txt"), "w")
156 ret[1].save(os.path.join(out_path, filename))
  /external/chromium_org/url/
url_canon_fileurl.cc 58 Component* out_path) {
60 out_path->begin = output->length();
83 out_path->len = output->length() - out_path->begin;
149 Component* out_path) {
151 output, out_path);
157 Component* out_path) {
159 output, out_path);
url_canon_path.cc 300 Component* out_path) {
302 out_path->begin = output->length();
311 success = DoPartialPath<CHAR, UCHAR>(spec, path, out_path->begin, output);
316 out_path->len = output->length() - out_path->begin;
325 Component* out_path) {
326 return DoPath<char, unsigned char>(spec, path, output, out_path);
332 Component* out_path) {
333 return DoPath<base::char16, base::char16>(spec, path, output, out_path);
  /frameworks/base/tools/layoutlib/rename_font/
test.py 30 out_path = os.path.join(destdir, font_name)
31 ttx.main([out_path])
32 ttx_path = out_path[:-1] + "x"
  /external/chromium_org/third_party/skia/gm/rebaseline_server/
compare_rendered_pictures_test.py 174 out_path = os.path.join(self.temp_dir, subdir)
175 os.makedirs(out_path)
178 output_path=os.path.join(out_path, skpname), red=redvalue)
187 '-r', out_path,
189 '--writeJsonSummaryPath', os.path.join(out_path, 'summary.json'),
190 '--writePath', out_path]
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
path.cc 160 std::string out_path; local
169 out_path += "/";
174 out_path += paths[index];
176 out_path += "/";
179 return out_path;
  /external/chromium_org/tools/telemetry/telemetry/page/
profile_generator.py 91 out_path = os.path.join(generated_profiles_dir, profile_creator_name)
92 if os.path.exists(out_path):
93 shutil.rmtree(out_path)
95 shutil.copytree(temp_output_directory, out_path, ignore=_IsPseudoFile)
97 sys.stderr.write("SUCCESS: Generated profile copied to: '%s'.\n" % out_path)
  /external/chromium_org/chrome/tools/convert_dict/
convert_dict.cc 136 base::FilePath out_path = local
138 printf("Writing %" PRFilePath " ...\n", out_path.value().c_str());
139 FILE* out_file = base::OpenFile(out_path, "wb");
  /external/chromium_org/tools/telemetry/telemetry/core/platform/profiler/
android_profiling_helper.py 51 def FindMatchingStrippedLibrary(out_path):
55 host_lib_pattern = os.path.join(out_path, '*_apk', 'libs', '*', lib_base)
63 out_path = os.path.join(build_dir, build_type)
64 stripped_host_lib = FindMatchingStrippedLibrary(out_path)
71 unstripped_host_lib = os.path.join(out_path, 'lib', lib_base)
  /external/chromium_org/native_client_sdk/src/build_tools/
generate_make.py 263 def GenerateMasterMakefile(pepperdir, out_path, targets, deps):
268 out_path: Root for output such that out_path+NAME = full path
272 out_path = os.path.join(out_path, 'Makefile')
273 rel_path = os.path.relpath(pepperdir, os.path.dirname(out_path))
279 RunTemplateFileIfChanged(in_path, out_path, template_dict)
280 outdir = os.path.dirname(os.path.abspath(out_path))
  /external/chromium_org/tools/telemetry/telemetry/core/platform/power_monitor/
powermetrics_power_monitor.py 93 # out_path - list containing the key path in the output dictionary.
96 def ConstructMetric(out_path, src_path):
98 'out_path', 'src_path', 'samples'])
99 return RunningAverage(out_path, src_path, [])
209 metric.out_path.
221 for k in metric.out_path[:-1]:
225 out[metric.out_path[-1]] = avg
  /external/lldb/scripts/
sed-sources 144 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'";

Completed in 1336 milliseconds

1 2