Home
last modified time | relevance | path

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

/external/chromium/third_party/libjingle/source/talk/base/
Dfileutils.h187 if (IsFile(old_path)) { in MoveFileOrFolder()
203 if (IsFile(old_path)) in CopyFileOrFolder()
213 virtual bool IsFile(const Pathname& pathname) = 0;
354 static bool IsFile(const Pathname &pathname) { in IsFile() function
355 return EnsureDefaultFilesystem()->IsFile(pathname); in IsFile()
Dunixfilesystem.cc153 if (!IsFile(filename)) { in DeleteFile()
154 ASSERT(IsFile(filename)); in DeleteFile()
222 if (!IsFile(old_path)) { in MoveFile()
223 ASSERT(IsFile(old_path)); in MoveFile()
309 bool UnixFilesystem::IsFile(const Pathname& pathname) { in IsFile() function in talk_base::UnixFilesystem
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
Dwin32filesystem.h78 virtual bool IsFile(const Pathname &path);
Dunixfilesystem.h78 virtual bool IsFile(const Pathname& pathname);
Dfileutils.cc268 if (!Filesystem::IsFile(pathname)) { in DirectoryIterator()
/external/clang/unittests/Basic/
DFileManagerTest.cpp30 void InjectFileOrDirectory(const char *Path, ino_t INode, bool IsFile) { in InjectFileOrDirectory() argument
37 statBuf.st_mode = IsFile ? (0777 | S_IFREG) // a regular file in InjectFileOrDirectory()