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

1 2

  /external/chromium_org/chrome/browser/sync_file_system/local/
local_file_sync_status.cc 76 if (upper != writing_.end() && url.IsParent(upper->first))
79 (rupper->first == url || rupper->first.IsParent(url)))
89 if (upper != syncing_.end() && url.IsParent(*upper))
92 (*rupper == url || rupper->IsParent(url)))
  /external/chromium_org/webkit/browser/fileapi/
file_system_url_unittest.cc 124 TEST(FileSystemURLTest, IsParent) {
137 EXPECT_TRUE(CreateFileSystemURL(root1 + parent).IsParent(
139 EXPECT_TRUE(CreateFileSystemURL(root2 + parent).IsParent(
143 EXPECT_FALSE(CreateFileSystemURL(root1 + parent).IsParent(
145 EXPECT_FALSE(CreateFileSystemURL(root1 + parent).IsParent(
147 EXPECT_FALSE(CreateFileSystemURL(root1 + child).IsParent(
151 EXPECT_FALSE(CreateFileSystemURL(root1 + parent).IsParent(
155 EXPECT_FALSE(CreateFileSystemURL(root1 + parent).IsParent(
file_system_url.cc 157 bool FileSystemURL::IsParent(const FileSystemURL& child) const {
159 path().IsParent(child.path());
file_system_url.h 124 bool IsParent(const FileSystemURL& child) const;
isolated_file_util.cc 102 if (file_util::IsLink(url.path()) && !base::FilePath().IsParent(url.path())) {
external_mount_points.cc 304 potential_parent->first.IsParent(path)) {
314 !path.IsParent(potential_child->first);
copy_or_move_operation_delegate.cc 46 if (same_file_system_ && src_root_.path().IsParent(dest_root_.path())) {
  /external/chromium_org/chrome/browser/sync_file_system/
syncable_file_system_util_unittest.cc 163 EXPECT_TRUE(CreateFileSystemURL(root1 + parent).IsParent(
165 EXPECT_TRUE(CreateFileSystemURL(root2 + parent).IsParent(
169 EXPECT_FALSE(CreateFileSystemURL(root1 + parent).IsParent(
171 EXPECT_FALSE(CreateFileSystemURL(root2 + parent).IsParent(
  /external/chromium/chrome/common/extensions/
extension_resource.cc 43 // path on its own because IsParent doesn't like parent references.
59 clean_extension_root.IsParent(full_path)) {
  /external/chromium_org/chrome/browser/chromeos/drive/
download_handler_unittest.cc 129 EXPECT_TRUE(temp_dir_.path().IsParent(substituted_path));
171 EXPECT_TRUE(temp_dir_.path().IsParent(substituted_path));
213 EXPECT_TRUE(temp_dir_.path().IsParent(substituted_path));
download_handler.cc 92 return drive_tmp_download_path.IsParent(download->GetTargetFilePath()) &&
234 if (!drive_tmp_download_path_.IsParent(download->GetTargetFilePath()) ||
file_system_util.cc 216 GetDriveMountPointPath().IsParent(path);
230 GetDriveMyDriveMountPointPath().IsParent(path));
  /external/chromium_org/extensions/common/
extension_resource.cc 54 // path on its own because IsParent doesn't like parent references.
93 clean_extension_root.IsParent(full_path))) {
  /external/chromium_org/content/browser/
storage_partition_impl_map.cc 226 } else if (to_delete.IsParent(*to_keep)) {
273 CHECK(browser_context_root.IsParent(root) && browser_context_root != root);
280 if (root.IsParent(*it) && base::PathExists(*it))
  /external/chromium/base/
file_path.h 191 bool IsParent(const FilePath& child) const;
193 // If IsParent(child) holds, appends to path (if non-NULL) the
  /external/chromium/base/memory/
scoped_temp_dir_unittest.cc 72 EXPECT_TRUE(base_path.IsParent(test_path));
  /external/chromium_org/base/files/
file_path.h 199 bool IsParent(const FilePath& child) const;
201 // If IsParent(child) holds, appends to path (if non-NULL) the
scoped_temp_dir_unittest.cc 76 EXPECT_TRUE(base_path.IsParent(test_path));
  /external/chromium_org/chrome/browser/chromeos/extensions/
external_cache.cc 93 if (base::FilePath(cache_dir_).IsParent(path)) {
307 if (dir.IsParent(prev_crx_file)) {
  /external/chromium/net/url_request/
url_request_file_job.cc 145 white_listed_path.IsParent(file_path)) {
  /external/chromium_org/cloud_print/common/win/
install_utils.cc 192 return program_files.IsParent(path);
  /external/chromium_org/content/browser/android/
media_resource_getter_impl.cc 197 if (data_storage_path.IsParent(platform_path))
  /external/chromium_org/chrome/browser/plugins/
plugin_prefs.cc 46 component_updated_pepper_flash_dir.IsParent(plugin)) {
403 while (last_internal_dir.IsParent(plugin_path)) {
  /external/chromium_org/chrome/installer/setup/
uninstall.cc 569 if (target_path.IsParent(setup_exe))
587 installer_directory.IsParent(to_delete) ||
588 to_delete.IsParent(installer_directory))) {
    [all...]
  /external/chromium_org/chrome/test/mini_installer_test/
installer_test_util.cc 95 return parent.IsParent(*path);

Completed in 575 milliseconds

1 2