HomeSort by relevance Sort by last modified time
    Searched refs:dest_file (Results 1 - 24 of 24) sorted by null

  /development/tools/idegen/
index-gen.sh 42 dest_file=module-index.txt
44 echo "Generating index file $dest_file..."
50 sed -e 's/LOCAL_PACKAGE_NAME *:= *//g' -e 's/LOCAL_MODULE *:= *//g' -e 's/\^M*$//g' < $tmp_file > $dest_file
52 mv $dest_file $tmp_file
55 grep -v "^$root_dir/vendor/google" $tmp_file > $dest_file
  /external/chromium/chrome/common/
zip.h 11 // Zip the contents of src_dir into dest_file. src_path must be a directory.
16 bool Zip(const FilePath& src_dir, const FilePath& dest_file,
zip.cc 54 FilePath dest_file(dest_dir);
57 dest_file = dest_file.Append(*iter);
61 if (!file_util::CreateDirectory(dest_file))
68 FilePath dir = dest_file.DirName();
74 if (stream.Open(dest_file, flags) != 0)
265 bool Zip(const FilePath& src_dir, const FilePath& dest_file,
276 std::string dest_file_str = dest_file.value();
280 std::string dest_file_str = WideToUTF8(dest_file.value());
  /external/chromium_org/chrome/browser/chromeos/extensions/file_manager/
zip_file_creator.cc 32 const base::FilePath& dest_file)
37 dest_file_(dest_file),
76 base::PlatformFile dest_file = local
90 base::Bind(&ZipFileCreator::StartProcessOnIOThread, this, dest_file));
93 void ZipFileCreator::StartProcessOnIOThread(base::PlatformFile dest_file) {
95 dest_fd.fd = dest_file;
zip_file_creator.h 45 const base::FilePath& dest_file);
59 void StartProcessOnIOThread(base::PlatformFile dest_file);
private_api_misc.cc 149 base::FilePath dest_file = src_dir.Append(dest_name);
164 dest_file);
  /external/chromium_org/chrome/test/chromedriver/chrome/
zip.h 13 // Zip the contents of src_dir into dest_file. src_path must be a directory.
20 const base::FilePath& dest_file,
26 bool Zip(const base::FilePath& src_dir, const base::FilePath& dest_file,
zip.cc 128 const base::FilePath& dest_file,
132 zipFile zip_file = internal::OpenForZipping(dest_file.AsUTF8Unsafe(),
136 DLOG(WARNING) << "couldn't create file " << dest_file.value();
156 DLOG(ERROR) << "Error closing zip file " << dest_file.value();
163 bool Zip(const base::FilePath& src_dir, const base::FilePath& dest_file,
167 src_dir, dest_file, base::Bind(&ExcludeNoFilesFilter));
170 src_dir, dest_file, base::Bind(&ExcludeHiddenFilesFilter));
  /external/chromium_org/third_party/zlib/google/
zip.h 13 // Zip the contents of src_dir into dest_file. src_path must be a directory.
20 const base::FilePath& dest_file,
26 bool Zip(const base::FilePath& src_dir, const base::FilePath& dest_file,
zip.cc 128 const base::FilePath& dest_file,
132 zipFile zip_file = internal::OpenForZipping(dest_file.AsUTF8Unsafe(),
136 DLOG(WARNING) << "couldn't create file " << dest_file.value();
156 DLOG(ERROR) << "Error closing zip file " << dest_file.value();
163 bool Zip(const base::FilePath& src_dir, const base::FilePath& dest_file,
167 src_dir, dest_file, base::Bind(&ExcludeNoFilesFilter));
170 src_dir, dest_file, base::Bind(&ExcludeHiddenFilesFilter));
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
annotate.py 56 dest_file = os.path.join(self.directory, cu.flat_rootname())
57 dest_file += ".py,cover"
59 dest_file = filename + ",cover"
60 dest = open(dest_file, 'w')
  /external/chromium_org/chrome/installer/util/
duplicate_tree_detector_unittest.cc 145 base::FilePath dest_file(temp_dest_dir_.path());
146 dest_file = dest_file.AppendASCII("F1");
147 ASSERT_TRUE(installer::test::CopyFileHierarchy(source_file, dest_file));
154 EXPECT_TRUE(installer::IsIdenticalFileHierarchy(source_file, dest_file));
  /external/chromium_org/chrome/tools/build/win/
resedit.py 154 dest_file = os.path.join(dest_dir, res_name_str)
157 res_type_str, res_lang, res_name_str, dest_file)
161 self.ExtractResource(res_type, res_lang, res_name, dest_file)
163 def ExtractResource(self, res_type, res_lang, res_name, dest_file):
171 dest_file: path to the file where the resource data will be written.
174 'to file "%s".', res_type, res_lang, res_name, dest_file)
177 with open(dest_file, 'wb') as f:
306 for res_type, res_lang, res_name, dest_file in options.extract:
307 editor.ExtractResource(res_type, int(res_lang), res_name, dest_file)
  /pdk/build/
pdk_utils.py 69 dest_file = dest_top + "/" + file_name
70 dest_dir = os.path.dirname(dest_file)
73 print "copy file ", src_full_name, " to ", dest_file
74 os.system("cp -a " + src_full_name + " " + dest_file)
78 def copy_file_new_name_if_exists(src_full_name, dest_dir, dest_file):
79 """copy src_full_name (including dir + file name) to dest_dir/dest_file
84 dest_full_name = dest_dir + "/" + dest_file
  /external/chromium_org/ppapi/native_client/
chrome_main.scons 293 def GenerateManifestDynamicLink(env, dest_file, lib_list_file,
307 return env.Command(dest_file,
312 def GenerateSimpleManifestStaticLink(env, dest_file, exe_name):
320 node = env.Command(dest_file, [], Func)[0]
321 # Scons does not track the dependency of dest_file on exe_name or on
322 # the Python code above, so we should always recreate dest_file when
328 def GenerateSimpleManifest(env, dest_file, exe_name):
330 return GenerateSimpleManifestStaticLink(env, dest_file, exe_name)
333 env, '%s.static' % dest_file, exe_name)
335 env, dest_file, '%s.tmp_lib_list' % dest_file, static_manifest
    [all...]
  /external/chromium_org/webkit/browser/fileapi/
file_system_operation_impl_unittest.cc 319 FileSystemURL dest_file(CreateFile("dest/file"));
321 operation_runner()->Move(src_dir, dest_file, RecordStatusCallback());
332 FileSystemURL dest_file(CreateFile("dest/file"));
364 FileSystemURL dest_file(CreateFile("dest"));
366 operation_runner()->Move(src_file, dest_file, RecordStatusCallback());
467 FileSystemURL dest_file(CreateFile("dest/file"));
469 operation_runner()->Copy(src_dir, dest_file, RecordStatusCallback());
480 FileSystemURL dest_file(CreateFile("dest/file"));
519 FileSystemURL dest_file(URLForPath("dest/file"));
520 int64 dest_path_cost = ComputePathCost(dest_file);
    [all...]
  /external/chromium_org/chrome/tools/process_dumps/
process_dumps_linux.py 38 dest_file = os.path.join(dest, '%s.sym' % signature_line[4])
39 shutil.copyfile(symbol_file, dest_file)
  /external/chromium_org/tools/
update_reference_build.py 150 with file(dest, 'wb') as dest_file:
151 dest_file.write(unzipped_content.read())
  /external/chromium_org/tools/gn/
ninja_target_writer.cc 153 OutputFile dest_file(relative_dest_dir);
154 AppendStringPiece(&dest_file.value(), name_part);
156 dest_files.push_back(dest_file);
159 path_output_.WriteFile(out_, dest_file);
  /external/chromium_org/native_client_sdk/src/build_tools/
build_sdk.py 320 src_file = dest_file = file_spec
322 src_file, dest_file = file_spec
331 if len(sources) > 1 and not dest_file.endswith('/'):
336 if dest_file.endswith('/'):
337 dest = os.path.join(dest_file, os.path.basename(source))
339 dest = dest_file
  /external/chromium/base/files/
file_path_watcher_browsertest.cc 457 FilePath dest_file(dest_subdir.AppendASCII("file"));
464 ASSERT_TRUE(SetupWatch(dest_file, &file_watcher, file_delegate.get()));
  /external/chromium_org/base/files/
file_path_watcher_browsertest.cc 572 FilePath dest_file(dest_subdir.AppendASCII("file"));
579 ASSERT_TRUE(SetupWatch(dest_file, &file_watcher, file_delegate.get(), false));
  /external/chromium/base/
file_util_unittest.cc 1183 FilePath dest_file = dir_name_from.Append(FILE_PATH_LITERAL("DestFile.txt")); local
    [all...]
  /external/chromium_org/base/
file_util_unittest.cc 1505 FilePath dest_file = dir_name_from.Append(FILE_PATH_LITERAL("DestFile.txt")); local
    [all...]

Completed in 470 milliseconds