/external/chromium_org/chrome/installer/util/ |
duplicate_tree_detector.h | 18 // Returns true if |dest_path| contains all the files from |src_path| in the 20 // src_path_ and |dest_path| must either both be files or both be directories. 25 const base::FilePath& dest_path);
|
duplicate_tree_detector.cc | 15 const base::FilePath& dest_path) { 21 base::GetFileInfo(dest_path, &dest_info)) { 34 // Two directories are "identical" if dest_path contains entries that are 44 IsIdenticalFileHierarchy(path, dest_path.Append(path.BaseName()));
|
move_tree_work_item.h | 37 // specified by |dest_path|. To facilitate rollback, the caller needs to 39 // they exist under dest_path. 42 // dest_path and all files in source_path are present and of the same length 43 // in dest_path. If so, it will do nothing and return true, otherwise it will 44 // attempt to move source_path to dest_path as stated above. 46 const base::FilePath& dest_path,
|
work_item.cc | 43 const base::FilePath& dest_path, 47 return new CopyTreeWorkItem(source_path, dest_path, temp_dir, 82 const base::FilePath& dest_path, 86 dest_path,
|
copy_tree_work_item.h | 41 // dest_path. 43 const base::FilePath& dest_path,
|
move_tree_work_item.cc | 18 const base::FilePath& dest_path, 22 dest_path_(dest_path),
|
copy_tree_work_item.cc | 17 const base::FilePath& dest_path, 22 dest_path_(dest_path),
|
work_item.h | 85 const base::FilePath& dest_path, 121 const base::FilePath& dest_path,
|
work_item_list.h | 57 const std::wstring& dest_path, 95 const std::wstring& dest_path,
|
work_item_list.cc | 97 const std::wstring& dest_path, 103 base::FilePath(dest_path), 158 const std::wstring& dest_path, 162 base::FilePath(dest_path),
|
/external/chromium_org/chrome/browser/chromeos/drive/file_system/ |
move_operation_unittest.cc | 39 const base::FilePath dest_path( 45 GetLocalResourceEntry(dest_path, &dest_entry)); 49 dest_path, 55 EXPECT_EQ(FILE_ERROR_OK, GetLocalResourceEntry(dest_path, &dest_entry)); 69 base::FilePath dest_path( 75 GetLocalResourceEntry(dest_path, &dest_entry)); 79 dest_path, 85 EXPECT_EQ(FILE_ERROR_OK, GetLocalResourceEntry(dest_path, &dest_entry)); 92 EXPECT_TRUE(observer()->get_changed_paths().count(dest_path.DirName())); 101 base::FilePath dest_path(FILE_PATH_LITERAL [all...] |
copy_operation_unittest.cc | 154 base::FilePath dest_path(FILE_PATH_LITERAL("drive/root/Test.log")); 161 dest_path, 168 EXPECT_EQ(FILE_ERROR_NOT_FOUND, GetLocalResourceEntry(dest_path, &entry)); 174 base::FilePath dest_path(FILE_PATH_LITERAL("drive/root/Dummy/Test.log")); 179 GetLocalResourceEntry(dest_path.DirName(), &entry)); 183 dest_path, 190 EXPECT_EQ(FILE_ERROR_NOT_FOUND, GetLocalResourceEntry(dest_path, &entry)); 199 base::FilePath dest_path(FILE_PATH_LITERAL( 204 ASSERT_EQ(FILE_ERROR_OK, GetLocalResourceEntry(dest_path.DirName(), &entry)); 209 dest_path, [all...] |
move_operation.cc | 22 const base::FilePath& dest_path, 33 error = metadata->GetResourceEntryByPath(dest_path.DirName(), &parent_entry); 43 base::FilePath(dest_path.Extension()).AsUTF8Unsafe(); 50 dest_path.BaseName().RemoveExtension().AsUTF8Unsafe() : 51 dest_path.BaseName().AsUTF8Unsafe(); 67 changed_directories->insert(dest_path.DirName());
|
/external/chromium_org/chrome/installer/mini_installer/ |
decompress_test.cc | 26 base::FilePath dest_path( 31 dest_path.value().c_str())); 35 EXPECT_TRUE(GetBinaryType(dest_path.value().c_str(), &type));
|
/external/chromium_org/chrome/test/chromeos/autotest/files/client/deps/chrome_test/ |
setup_test_links.sh | 42 dest_path="${src_path/pyauto_dep/chrome_test}" 43 mkdir -p "$(dirname "$dest_path")" 44 [ -e "$dest_path" ] || ln -f -s $src_path $dest_path
|
/external/chromium_org/chrome/common/extensions/docs/server2/ |
build_server.py | 34 dest_path = os.path.join(LOCAL_THIRD_PARTY_DIR, dest) 36 shutil.copytree(src, dest_path) 38 MakeInit(dest_path) 41 os.makedirs(dest_path) 45 MakeInit(dest_path) 47 shutil.copy(os.path.join(src, filename), os.path.join(dest_path, filename))
|
/external/chromium/chrome/browser/profiles/ |
profile_manager_unittest.cc | 80 FilePath dest_path = temp_dir_.path(); local 81 dest_path = dest_path.Append(FILE_PATH_LITERAL("New Profile")); 86 profile = profile_manager_->GetProfile(dest_path); 90 EXPECT_EQ(profile, profile_manager_->GetProfile(dest_path)); 165 FilePath dest_path = local 171 profile_manager_->CreateProfileAsync(dest_path, &mock_observer); 183 FilePath dest_path = local 195 profile_manager_->CreateProfileAsync(dest_path, &mock_observer1); 196 profile_manager_->CreateProfileAsync(dest_path, &mock_observer2) [all...] |
/external/chromium_org/webkit/browser/fileapi/ |
native_file_util.cc | 257 const base::FilePath& dest_path, 268 error = NativeFileUtil::GetFileInfo(dest_path, &info); 275 error = NativeFileUtil::GetFileInfo(dest_path.DirName(), &info); 284 if (!base::CopyFile(src_path, dest_path)) 288 if (!CopyFileAndSync(src_path, dest_path)) 292 if (!base::Move(src_path, dest_path)) 300 base::TouchFile(dest_path, last_modified, last_modified);
|
native_file_util.h | 66 const base::FilePath& dest_path,
|
/external/skia/tools/ |
svndiff.py | 107 def _DownloadUrlToFile(source_url, dest_path): 108 """Download source_url, and save its contents to dest_path. 112 writer = open(dest_path, 'wb') 117 '%s: unable to download source_url %s to dest_path %s' % ( 118 e, source_url, dest_path)) 160 dest_path=os.path.join(old_flattened_dir, 171 dest_path=os.path.join(new_flattened_dir, 195 def _GitExportBaseVersionOfFile(file_within_repo, dest_path): 200 @param dest_path destination to which to write the base content 216 with open(dest_path, 'wb') as outfile [all...] |
/external/chromium_org/chrome/browser/chromeos/drive/ |
async_file_util.cc | 286 base::FilePath dest_path = util::ExtractDrivePathFromFileSystemUrl(dest_url); local 287 if (src_path.empty() || dest_path.empty()) { 296 src_path, dest_path, 311 base::FilePath dest_path = util::ExtractDrivePathFromFileSystemUrl(dest_url); local 312 if (src_path.empty() || dest_path.empty()) { 321 src_path, dest_path, 334 base::FilePath dest_path = util::ExtractDrivePathFromFileSystemUrl(dest_url); local 335 if (dest_path.empty()) { 343 src_file_path, dest_path,
|
/external/chromium_org/components/breakpad/browser/ |
crash_dump_manager_android.cc | 111 base::FilePath dest_path = instance_->crash_dump_dir_.Append(filename); local 112 r = base::Move(minidump_path, dest_path); 115 << " to " << dest_path.value();
|
/external/chromium_org/chrome/browser/chromeos/drive/sync/ |
entry_update_performer_unittest.cc | 35 base::FilePath dest_path( 40 EXPECT_EQ(FILE_ERROR_OK, GetLocalResourceEntry(dest_path, &dest_entry));
|
/external/chromium_org/chrome/browser/profiles/ |
profile_manager_unittest.cc | 144 base::FilePath dest_path = temp_dir_.path(); local 145 dest_path = dest_path.Append(FILE_PATH_LITERAL("New Profile")); 150 Profile* profile = profile_manager->GetProfile(dest_path); 154 EXPECT_EQ(profile, profile_manager->GetProfile(dest_path)); 358 base::FilePath dest_path = temp_dir_.path(); local 359 dest_path = dest_path.Append(FILE_PATH_LITERAL("New Profile")); 366 profile = profile_manager->GetProfile(dest_path); 384 base::FilePath dest_path = temp_dir_.path() local 629 base::FilePath dest_path = temp_dir_.path(); local [all...] |
/external/chromium_org/content/child/fileapi/ |
webfilesystem_impl.h | 65 const blink::WebURL& dest_path, 69 const blink::WebURL& dest_path,
|