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

1 2 3 4 5

  /external/chromium_org/chrome/common/extensions/docs/server2/
empty_dir_file_system.py 7 from path_util import IsDirectory
17 if not IsDirectory(path):
27 if not IsDirectory(path):
path_util.py 12 def IsDirectory(path):
61 IsDirectory(result) is True (and does not fail assertions). If |path| is
64 return path if IsDirectory(path) else (path + '/')
68 assert IsDirectory(path), '"%s" is not a directory' % path
72 assert not IsDirectory(path), '"%s" is not a file' % path
gcs_file_system_provider.py 12 from path_util import IsDirectory, ToDirectory
63 if IsDirectory(bucket_local_path):
gcs_file_system.py 13 AssertIsDirectory, AssertIsFile, AssertIsValid, IsDirectory, Join)
57 if IsDirectory(full_path):
90 if IsDirectory(path):
gitiles_file_system.py 23 from path_util import AssertIsValid, IsDirectory, ToDirectory
141 return path + (_JSON_FORMAT if IsDirectory(path) else _TEXT_FORMAT)
154 value[path] = (list_dir if IsDirectory(path) else b64decode)(content)
216 if IsDirectory(path):
  /external/chromium_org/chrome/browser/media_galleries/win/
mtp_device_object_enumerator.h 27 bool IsDirectory();
mtp_device_object_enumerator_unittest.cc 45 EXPECT_FALSE(enumerator->IsDirectory());
81 EXPECT_EQ(kTestCases[i].is_directory, enumerator.IsDirectory());
mtp_device_object_enumerator.cc 43 bool MTPDeviceObjectEnumerator::IsDirectory() {
  /external/chromium_org/storage/browser/fileapi/
file_system_file_util.cc 21 bool FileSystemFileUtil::EmptyFileEnumerator::IsDirectory() {
file_system_file_util.h 47 virtual bool IsDirectory() = 0;
55 virtual bool IsDirectory() OVERRIDE;
  /external/chromium_org/chrome/browser/media_galleries/linux/
mtp_device_object_enumerator.h 23 bool IsDirectory();
mtp_device_object_enumerator.cc 36 bool MTPDeviceObjectEnumerator::IsDirectory() {
mtp_device_object_enumerator_unittest.cc 25 EXPECT_FALSE(enumerator->IsDirectory());
62 EXPECT_EQ(kTestCases[i].is_directory, enumerator.IsDirectory());
  /external/chromium_org/chrome/browser/sync_file_system/
file_change.h 31 bool IsDirectory() const { return file_type_ == SYNC_FILE_TYPE_DIRECTORY; }
32 bool IsTypeUnknown() const { return !IsFile() && !IsDirectory(); }
  /external/clang/lib/Basic/
FileSystemStatCache.cpp 39 Data.IsDirectory = Status.isDirectory();
110 if (Data.IsDirectory != isForDir) {
134 if (!Data.IsDirectory || llvm::sys::path::is_absolute(Path))
  /external/lldb/source/Plugins/Platform/MacOSX/
PlatformDarwinKernel.cpp 341 if (ios_sdk.Exists() && ios_sdk.IsDirectory())
358 if (mac_sdk.Exists() && mac_sdk.IsDirectory())
368 if (generic_sdk.Exists() && generic_sdk.IsDirectory())
383 if (sle.Exists() && sle.IsDirectory())
389 if (le.Exists() && le.IsDirectory())
395 if (kdk.Exists() && kdk.IsDirectory())
412 if (symbols_dir.Exists() && symbols_dir.IsDirectory())
429 if (dir.Exists() && dir.IsDirectory())
438 if (dir_sle.Exists() && dir_sle.IsDirectory())
491 if (kext_directory.Exists() && kext_directory.IsDirectory())
    [all...]
  /external/clang/include/clang/Basic/
FileSystemStatCache.h 36 bool IsDirectory;
41 : Size(0), ModTime(0), IsDirectory(false), IsNamedPipe(false),
  /external/chromium_org/chrome/browser/chromeos/drive/
file_change.h 40 bool IsDirectory() const { return file_type_ == FILE_TYPE_DIRECTORY; }
41 bool IsTypeUnknown() const { return !IsFile() && !IsDirectory(); }
  /external/chromium_org/base/files/
file_enumerator.h 45 bool IsDirectory() const;
  /external/chromium_org/net/base/
directory_lister.cc 39 bool a_is_directory = a.info.IsDirectory();
40 bool b_is_directory = b.info.IsDirectory();
57 bool a_is_directory = a.info.IsDirectory();
58 bool b_is_directory = b.info.IsDirectory();
directory_lister_unittest.cc 66 if (file_list_[previous].IsDirectory() &&
67 !file_list_[current].IsDirectory()) {
72 EXPECT_EQ(file_list_[previous].IsDirectory(),
73 file_list_[current].IsDirectory());
  /external/chromium_org/testing/gtest/include/gtest/internal/
gtest-filepath.h 163 bool IsDirectory() const;
  /external/chromium_org/third_party/mesa/src/src/gtest/include/gtest/internal/
gtest-filepath.h 167 bool IsDirectory() const;
  /external/gtest/include/gtest/internal/
gtest-filepath.h 163 bool IsDirectory() const;
  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-filepath.h 167 bool IsDirectory() const;

Completed in 1989 milliseconds

1 2 3 4 5