Home
last modified time | relevance | path

Searched refs:IsFile (Results 1 – 25 of 28) sorted by relevance

12

/external/chromium_org/chrome/browser/sync_file_system/drive_backend_v1/
Dlocal_sync_operation_resolver.cc77 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/
Dfile_change.cc54 if (last.IsFile() != new_change.IsFile()) { in Update()
63 if (!last.IsFile() && last.IsAddOrUpdate() && new_change.IsDelete()) { in Update()
Dfile_change.h30 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/
Dfileutils_unittest.cc57 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()
Dfileutils.h190 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()
Dwin32filesystem.cc200 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
Dunixfilesystem.cc170 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
Dwin32filesystem.h78 virtual bool IsFile(const Pathname &path);
Dunixfilesystem.h99 virtual bool IsFile(const Pathname& pathname);
Dfileutils_mock.h210 bool IsFile(const Pathname &pathname) { in IsFile() function
Dfileutils.cc284 if (!Filesystem::IsFile(pathname)) { in DirectoryIterator()
/external/chromium_org/third_party/webrtc/base/
Dfileutils_unittest.cc40 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()
Dfileutils.h173 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()
Dwin32filesystem.cc183 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
Dunixfilesystem.cc153 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
Dwin32filesystem.h61 virtual bool IsFile(const Pathname &path);
Dunixfilesystem.h82 virtual bool IsFile(const Pathname& pathname);
Dfileutils_mock.h193 bool IsFile(const Pathname &pathname) { in IsFile() function
Dfileutils.cc267 if (!Filesystem::IsFile(pathname)) { in DirectoryIterator()
/external/chromium_org/third_party/libjingle/source/talk/session/media/
Dmediarecorder_unittest.cc100 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/
Dbootstrap.py66 def IsFile(self, path): member in DAVClientWrapper
81 if self.IsFile(src_path):
/external/chromium_org/chrome/browser/sync_file_system/local/
Dlocal_file_sync_context_unittest.cc254 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/
DFileManagerTest.cpp30 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/
Dlocal_to_remote_syncer.cc256 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/
Ddevicemanager.cc190 if (talk_base::Filesystem::IsFile(name)) { in GetFakeVideoCaptureDevice()

12