/external/chromium_org/chrome/browser/sync_file_system/drive_backend_v1/ |
D | local_sync_operation_resolver.cc | 77 if (remote_file_change->IsFile()) in ResolveForAddOrUpdateFile() 96 if (remote_file_change->IsFile()) in ResolveForAddOrUpdateFileInConflict() 127 if (remote_file_change->IsFile()) in ResolveForAddDirectory() 131 if (remote_file_change->IsFile()) in ResolveForAddDirectory()
|
/external/chromium_org/chrome/browser/sync_file_system/ |
D | file_change.cc | 54 if (last.IsFile() != new_change.IsFile()) { in Update() 63 if (!last.IsFile() && last.IsAddOrUpdate() && new_change.IsDelete()) { in Update()
|
D | file_change.h | 30 bool IsFile() const { return file_type_ == SYNC_FILE_TYPE_FILE; } in IsFile() function 32 bool IsTypeUnknown() const { return !IsFile() && !IsDirectory(); } in IsTypeUnknown()
|
/external/chromium_org/third_party/libjingle/source/talk/base/ |
D | fileutils_unittest.cc | 57 EXPECT_TRUE(Filesystem::IsFile(path)); in TEST() 66 EXPECT_FALSE(Filesystem::IsFile(path)); in TEST() 75 EXPECT_FALSE(Filesystem::IsFile(path)); in TEST() 112 EXPECT_FALSE(Filesystem::IsFile(path)); in TEST()
|
D | fileutils.h | 190 if (IsFile(old_path)) { in MoveFileOrFolder() 206 if (IsFile(old_path)) in CopyFileOrFolder() 216 virtual bool IsFile(const Pathname& pathname) = 0; 357 static bool IsFile(const Pathname &pathname) { in IsFile() function 358 return EnsureDefaultFilesystem()->IsFile(pathname); in IsFile()
|
D | win32filesystem.cc | 200 if (!IsFile(filename)) { in DeleteFile() 201 ASSERT(IsFile(filename)); in DeleteFile() 249 if (!IsFile(old_path)) { in MoveFile() 250 ASSERT(IsFile(old_path)); in MoveFile() 290 bool Win32Filesystem::IsFile(const Pathname &path) { in IsFile() function in talk_base::Win32Filesystem
|
D | unixfilesystem.cc | 170 if (!IsFile(filename)) { in DeleteFile() 171 ASSERT(IsFile(filename)); in DeleteFile() 240 if (!IsFile(old_path)) { in MoveFile() 241 ASSERT(IsFile(old_path)); in MoveFile() 331 bool UnixFilesystem::IsFile(const Pathname& pathname) { in IsFile() function in talk_base::UnixFilesystem
|
D | win32filesystem.h | 78 virtual bool IsFile(const Pathname &path);
|
D | unixfilesystem.h | 99 virtual bool IsFile(const Pathname& pathname);
|
D | fileutils_mock.h | 210 bool IsFile(const Pathname &pathname) { in IsFile() function
|
D | fileutils.cc | 284 if (!Filesystem::IsFile(pathname)) { in DirectoryIterator()
|
/external/chromium_org/third_party/webrtc/base/ |
D | fileutils_unittest.cc | 40 EXPECT_TRUE(Filesystem::IsFile(path)); in TEST() 49 EXPECT_FALSE(Filesystem::IsFile(path)); in TEST() 58 EXPECT_FALSE(Filesystem::IsFile(path)); in TEST() 95 EXPECT_FALSE(Filesystem::IsFile(path)); in TEST()
|
D | fileutils.h | 173 if (IsFile(old_path)) { in MoveFileOrFolder() 189 if (IsFile(old_path)) in CopyFileOrFolder() 199 virtual bool IsFile(const Pathname& pathname) = 0; 340 static bool IsFile(const Pathname &pathname) { in IsFile() function 341 return EnsureDefaultFilesystem()->IsFile(pathname); in IsFile()
|
D | win32filesystem.cc | 183 if (!IsFile(filename)) { in DeleteFile() 184 ASSERT(IsFile(filename)); in DeleteFile() 232 if (!IsFile(old_path)) { in MoveFile() 233 ASSERT(IsFile(old_path)); in MoveFile() 273 bool Win32Filesystem::IsFile(const Pathname &path) { in IsFile() function in rtc::Win32Filesystem
|
D | unixfilesystem.cc | 153 if (!IsFile(filename)) { in DeleteFile() 154 ASSERT(IsFile(filename)); in DeleteFile() 223 if (!IsFile(old_path)) { in MoveFile() 224 ASSERT(IsFile(old_path)); in MoveFile() 314 bool UnixFilesystem::IsFile(const Pathname& pathname) { in IsFile() function in rtc::UnixFilesystem
|
D | win32filesystem.h | 61 virtual bool IsFile(const Pathname &path);
|
D | unixfilesystem.h | 82 virtual bool IsFile(const Pathname& pathname);
|
D | fileutils_mock.h | 193 bool IsFile(const Pathname &pathname) { in IsFile() function
|
D | fileutils.cc | 267 if (!Filesystem::IsFile(pathname)) { in DirectoryIterator()
|
/external/chromium_org/third_party/libjingle/source/talk/session/media/ |
D | mediarecorder_unittest.cc | 100 EXPECT_TRUE(talk_base::Filesystem::IsFile(path_.pathname())); in TEST_F() 290 EXPECT_TRUE(talk_base::Filesystem::IsFile(send_header_file)); in TestRecordHeaderAndMedia() 291 EXPECT_TRUE(talk_base::Filesystem::IsFile(recv_header_file)); in TestRecordHeaderAndMedia() 321 EXPECT_TRUE(talk_base::Filesystem::IsFile(send_file)); in TestRecordHeaderAndMedia() 322 EXPECT_TRUE(talk_base::Filesystem::IsFile(recv_file)); in TestRecordHeaderAndMedia()
|
/external/chromium_org/tools/telemetry/telemetry/util/ |
D | bootstrap.py | 66 def IsFile(self, path): member in DAVClientWrapper 81 if self.IsFile(src_path):
|
/external/chromium_org/chrome/browser/sync_file_system/local/ |
D | local_file_sync_context_unittest.cc | 254 EXPECT_TRUE(changes.list().back().IsFile()); in PrepareForSync_Basic() 260 EXPECT_TRUE(changes.list().back().IsFile()); in PrepareForSync_Basic() 272 EXPECT_TRUE(changes.list().back().IsFile()); in PrepareForSync_Basic() 307 EXPECT_TRUE(changes.list().back().IsFile()); in PrepareForSync_WriteDuringSync() 316 EXPECT_TRUE(changes.list().back().IsFile()); in PrepareForSync_WriteDuringSync() 338 EXPECT_TRUE(changes.list().back().IsFile()); in PrepareForSync_WriteDuringSync() 482 EXPECT_TRUE(changes.list().back().IsFile()); in TEST_F() 493 EXPECT_FALSE(changes.list().back().IsFile()); in TEST_F() 590 EXPECT_TRUE(changes.list().back().IsFile()); in TEST_F()
|
/external/clang/unittests/Basic/ |
D | FileManagerTest.cpp | 30 void InjectFileOrDirectory(const char *Path, ino_t INode, bool IsFile) { in InjectFileOrDirectory() argument 36 Data.IsDirectory = !IsFile; in InjectFileOrDirectory()
|
/external/chromium_org/chrome/browser/sync_file_system/drive_backend/ |
D | local_to_remote_syncer.cc | 256 if (local_change_.IsFile()) { in HandleConflict() 305 DCHECK(local_change_.IsFile() || local_change_.IsDirectory()); in HandleExistingRemoteFile() 310 if (local_change_.IsFile()) { in HandleExistingRemoteFile()
|
/external/chromium_org/third_party/libjingle/source/talk/media/devices/ |
D | devicemanager.cc | 190 if (talk_base::Filesystem::IsFile(name)) { in GetFakeVideoCaptureDevice()
|