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

  /development/tools/idegen/
index-gen.sh 42 dest_file=${root_dir}/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_org/third_party/zlib/google/
zip.h 15 // Zip the contents of src_dir into dest_file. src_path must be a directory.
22 const base::FilePath& dest_file,
28 bool Zip(const base::FilePath& src_dir, const base::FilePath& dest_file,
zip.cc 125 const base::FilePath& dest_file,
129 zipFile zip_file = internal::OpenForZipping(dest_file.AsUTF8Unsafe(),
133 DLOG(WARNING) << "couldn't create file " << dest_file.value();
153 DLOG(ERROR) << "Error closing zip file " << dest_file.value();
160 bool Zip(const base::FilePath& src_dir, const base::FilePath& dest_file,
164 src_dir, dest_file, base::Bind(&ExcludeNoFilesFilter));
167 src_dir, dest_file, base::Bind(&ExcludeHiddenFilesFilter));
  /external/chromium_org/chrome/browser/chromeos/file_manager/
zip_file_creator.h 31 const base::FilePath& dest_file);
47 void StartProcessOnIOThread(base::File dest_file);
zip_file_creator.cc 33 const base::FilePath& dest_file)
37 dest_file_(dest_file) {
86 void ZipFileCreator::StartProcessOnIOThread(base::File dest_file) {
89 base::FileDescriptor dest_fd(dest_file.Pass());
  /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 280 def GenerateManifestDynamicLink(env, dest_file, lib_list_file,
294 return env.Command(dest_file,
299 def GenerateSimpleManifestStaticLink(env, dest_file, exe_name):
307 node = env.Command(dest_file, [], Func)[0]
308 # Scons does not track the dependency of dest_file on exe_name or on
309 # the Python code above, so we should always recreate dest_file when
315 def GenerateSimpleManifest(env, dest_file, exe_name):
317 return GenerateSimpleManifestStaticLink(env, dest_file, exe_name)
320 env, '%s.static' % dest_file, exe_name)
322 env, dest_file, '%s.tmp_lib_list' % dest_file, static_manifest
    [all...]
  /external/chromium_org/content/browser/fileapi/
file_system_operation_impl_unittest.cc 508 FileSystemURL dest_file(CreateFile("dest/file"));
511 Move(src_dir, dest_file, FileSystemOperation::OPTION_NONE));
520 FileSystemURL dest_file(CreateFile("dest/file"));
550 FileSystemURL dest_file(CreateFile("dest"));
553 Move(src_file, dest_file, FileSystemOperation::OPTION_NONE));
664 FileSystemURL dest_file(CreateFile("dest/file"));
667 Copy(src_dir, dest_file, FileSystemOperation::OPTION_NONE));
676 FileSystemURL dest_file(CreateFile("dest/file"));
711 FileSystemURL dest_file(URLForPath("dest/file"));
712 int64 dest_path_cost = ComputePathCost(dest_file);
    [all...]
  /external/chromium_org/tools/
update_reference_build.py 212 with file(dest, 'wb') as dest_file:
213 dest_file.write(unzipped_content.read())
  /external/chromium_org/native_client_sdk/src/build_tools/
build_sdk.py 285 src_file = dest_file = file_spec
287 src_file, dest_file = file_spec
296 if len(sources) > 1 and not dest_file.endswith('/'):
301 if dest_file.endswith('/'):
302 dest = os.path.join(dest_file, os.path.basename(source))
304 dest = dest_file
    [all...]
  /external/chromium_org/chrome/browser/chromeos/extensions/file_manager/
private_api_misc.cc 197 base::FilePath dest_file = src_dir.Append(params->dest_name);
213 dest_file))->Start();
  /external/chromium_org/content/common/gpu/media/
video_encode_accelerator_unittest.cc 224 base::File dest_file(test_stream->aligned_in_file, flags);
226 dest_file.SetLength(test_stream->aligned_buffer_size *
237 CHECK(WriteFile(&dest_file, dest_offset, src, visible_bpl[i]));
244 CHECK(test_stream->mapped_aligned_in_file.Initialize(dest_file.Pass()));
    [all...]
  /external/chromium_org/base/files/
file_path_watcher_browsertest.cc 594 FilePath dest_file(dest_subdir.AppendASCII("file"));
601 ASSERT_TRUE(SetupWatch(dest_file, &file_watcher, file_delegate.get(), false));
file_util_unittest.cc 1450 FilePath dest_file = dir_name_from.Append(FILE_PATH_LITERAL("DestFile.txt")); local
    [all...]

Completed in 710 milliseconds