/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/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/chrome/test/chromedriver/chrome/ |
chrome_finder.h | 25 base::FilePath* out_path);
|
chrome_finder.cc | 65 base::FilePath* out_path) { 70 *out_path = 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/googleurl/src/ |
url_canon_fileurl.cc | 83 url_parse::Component* out_path) { 85 out_path->begin = output->length(); 109 out_path->len = output->length() - out_path->begin; 175 url_parse::Component* out_path) { 177 output, out_path); 183 url_parse::Component* out_path) { 185 output, out_path);
|
url_canon_path.cc | 326 url_parse::Component* out_path) { 329 out_path->begin = output->length(); 338 success = DoPartialPath<CHAR, UCHAR>(spec, path, out_path->begin, output); 339 out_path->len = output->length() - out_path->begin; 343 *out_path = url_parse::Component(); 353 url_parse::Component* out_path) { 354 return DoPath<char, unsigned char>(spec, path, output, out_path); 360 url_parse::Component* out_path) { 361 return DoPath<char16, char16>(spec, path, output, out_path); [all...] |
url_canon.h | 444 url_parse::Component* out_path); 448 url_parse::Component* out_path); 453 // The string will be appended to |*output| and |*out_path| will be updated. 459 url_parse::Component* out_path); 463 url_parse::Component* out_path); 497 url_parse::Component* out_path); 501 url_parse::Component* out_path); [all...] |
/external/chromium_org/url/ |
url_canon_fileurl.cc | 58 url_parse::Component* out_path) { 60 out_path->begin = output->length(); 84 out_path->len = output->length() - out_path->begin; 150 url_parse::Component* out_path) { 152 output, out_path); 158 url_parse::Component* out_path) { 160 output, out_path);
|
url_canon_path.cc | 300 url_parse::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 url_parse::Component* out_path) { 326 return DoPath<char, unsigned char>(spec, path, output, out_path); 332 url_parse::Component* out_path) { 333 return DoPath<base::char16, base::char16>(spec, path, output, out_path);
|
url_canon.h | 435 url_parse::Component* out_path); 439 url_parse::Component* out_path); 444 // The string will be appended to |*output| and |*out_path| will be updated. 450 url_parse::Component* out_path); 454 url_parse::Component* out_path); 488 url_parse::Component* out_path); 492 url_parse::Component* out_path); [all...] |
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/ |
path.cc | 152 std::string out_path; local 160 out_path += "/"; 165 out_path += paths[index]; 167 out_path += "/"; 170 return out_path;
|
/external/chromium_org/tools/telemetry/telemetry/page/ |
profile_generator.py | 59 out_path = os.path.join(generated_profiles_dir, profile_creator_name) 60 if os.path.exists(out_path): 61 shutil.rmtree(out_path) 75 shutil.copytree(temp_output_directory, out_path, ignore=IsPseudoFile) 77 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/native_client_sdk/src/build_tools/ |
generate_make.py | 248 def GenerateMasterMakefile(pepperdir, out_path, targets): 253 out_path: Root for output such that out_path+NAME = full path 257 out_path = os.path.join(out_path, 'Makefile') 258 rel_path = os.path.relpath(pepperdir, os.path.dirname(out_path)) 263 RunTemplateFileIfChanged(in_path, out_path, template_dict) 264 outdir = os.path.dirname(os.path.abspath(out_path))
|
/packages/apps/Browser/tools/ |
get_search_engines.py | 242 def generateXmlFromTemplate(self, template_path, out_path, text): 252 dir_path = os.path.dirname(out_path) 256 file = open(out_path, 'w') 259 print 'Wrote ' + out_path
|
/frameworks/native/cmds/installd/ |
commands.c | 657 char out_path[PKG_PATH_MAX]; local 677 sprintf(out_path, "%s%s", apk_path, ".odex"); 678 if (stat(out_path, &dex_stat) == 0) { 682 if (create_cache_path(out_path, apk_path)) { 695 unlink(out_path); 696 out_fd = open(out_path, O_RDWR | O_CREAT | O_EXCL, 0644); 698 ALOGE("installd cannot open '%s' for output during dexopt\n", out_path); 704 ALOGE("installd cannot chmod '%s' during dexopt\n", out_path); 708 ALOGE("installd cannot chown '%s' during dexopt\n", out_path); 737 ALOGE("flock(%s) failed: %s\n", out_path, strerror(errno)) [all...] |
/cts/tools/dasm/src/java_cup/ |
Main.java | 131 private static String out_path = null; field in class:Main 320 out_path = argv[i] + File.separator; 321 File f = new File(out_path); 323 out_path = null; 325 if (out_path == null) 381 if (out_path == null) 382 out_path = ""; 385 out_name = out_path + emit.parser_class_name + ".java"; 396 out_name = out_path + emit.symbol_const_class_name + ".java";
|
/external/chromium_org/chrome/browser/chromeos/imageburner/ |
burn_device_handler_unittest.cc | 132 std::string* out_path, const disks::DiskMountManager::Disk& disk) { 133 *out_path = disk.device_path();
|
/external/oprofile/ |
oprofile_android | 393 out_path = os.path.join(samples_dir, os.path.relpath(in_path, raw_samples_dir)) 394 out_dir = os.path.dirname(out_path) 402 rc, output = execute([opimport_bin, '-a', abi_file, '-o', out_path, in_path], echo=False)
|
/external/chromium_org/chrome/test/base/ |
ui_test_utils.cc | 468 base::FilePath out_path(GetSnapshotFileName(directory)); 483 out_path, reinterpret_cast<char*>(&png_data[0]), bytes); 489 *screenshot_path = out_path;
|
/external/chromium_org/third_party/zlib/google/ |
zip_reader_unittest.cc | 258 base::FilePath out_path = test_dir_.AppendASCII("quux.txt"); local 259 PlatformFileWrapper out_fd_w(out_path, PlatformFileWrapper::READ_WRITE);
|
/external/chromium_org/tools/gyp/pylib/gyp/ |
common.py | 426 def CopyTool(flavor, out_path): 428 to |out_path|.""" 447 tool_path = os.path.join(out_path, 'gyp-%s-tool' % prefix)
|