HomeSort by relevance Sort by last modified time
    Searched refs:FileSystem (Results 26 - 50 of 100) sorted by null

12 3 4

  /external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/fake/filesystem/
UnixFakeFileSystemTest.groovy 16 package org.mockftpserver.fake.filesystem
45 assert !fileSystem.exists(FILE)
46 fileSystem.add(new FileEntry(FILE))
47 def names = fileSystem.listNames(DIR)
52 assert fileSystem.path(null, null) == ""
53 assert fileSystem.path(null, "abc") == "abc"
54 assert fileSystem.path("abc", null) == "abc"
55 assert fileSystem.path("", "") == ""
56 assert fileSystem.path("", "abc") == "abc"
57 assert fileSystem.path("abc", "") == "abc
    [all...]
WindowsFakeFileSystemTest.groovy 16 package org.mockftpserver.fake.filesystem
46 assertFalse(X, fileSystem.exists(X))
47 assertFalse(Y, fileSystem.exists(Y))
49 fileSystem.add(new DirectoryEntry(X))
50 fileSystem.add(new DirectoryEntry(Y))
52 assertTrue(X, fileSystem.exists(X))
53 assertTrue(Y, fileSystem.exists(Y))
57 assert fileSystem.path(null, null) == ""
58 assert fileSystem.path(null, "abc") == "abc"
59 assert fileSystem.path("abc", null) == "abc
    [all...]
AbstractFakeFileSystemTestCase.groovy 16 package org.mockftpserver.fake.filesystem
34 assert fileSystem.directoryListingFormatter.class == expectedDirectoryListingFormatterClass
39 fileSystem.add(dirEntry)
41 fileSystem.add(fileEntry)
49 final NEW_SUBDIR = fileSystem.path(NEW_DIR, "sub")
50 assert !fileSystem.exists(NEW_DIR), "Before createDirectory"
51 assert !fileSystem.exists(NEW_SUBDIR), "Before createDirectory"
53 fileSystem.createParentDirectoriesAutomatically = true
54 fileSystem.add(new DirectoryEntry(NEW_SUBDIR))
55 assert fileSystem.exists(NEW_DIR), "After createDirectory
    [all...]
AbstractFileSystemTestCase.groovy 16 package org.mockftpserver.fake.filesystem
21 * Abstract superclass for tests of FileSystem implementation classes. Contains common
46 protected FileSystem fileSystem
53 assert !fileSystem.exists(NEW_FILE)
54 assert !fileSystem.exists(NEW_DIR)
55 assert !fileSystem.exists(ILLEGAL_FILE)
56 assert fileSystem.exists(EXISTING_FILE)
57 assert fileSystem.exists(EXISTING_DIR)
59 shouldFailWithMessageContaining("path") { fileSystem.exists(null)
    [all...]
  /external/clang/unittests/Basic/
VirtualFileSystemTest.cpp 35 class DummyFileSystem : public vfs::FileSystem {
308 IntrusiveRefCntPtr<vfs::FileSystem> FS = vfs::getRealFileSystem();
335 IntrusiveRefCntPtr<vfs::FileSystem> FS = vfs::getRealFileSystem();
675 IntrusiveRefCntPtr<vfs::FileSystem>
677 IntrusiveRefCntPtr<vfs::FileSystem> ExternalFS) {
683 IntrusiveRefCntPtr<vfs::FileSystem> getFromYAMLString(
685 IntrusiveRefCntPtr<vfs::FileSystem> ExternalFS = new DummyFileSystem()) {
693 IntrusiveRefCntPtr<vfs::FileSystem> FS;
706 IntrusiveRefCntPtr<vfs::FileSystem> FS =
766 IntrusiveRefCntPtr<vfs::FileSystem> FS
    [all...]
FileManagerTest.cpp 57 vfs::FileSystem &FS) override {
  /external/lzma/CPP/7zip/UI/Console/
makefile 35 $O\FileSystem.obj \
  /external/okhttp/okhttp-testing-support/src/main/java/com/squareup/okhttp/internal/io/
InMemoryFileSystem.java 29 public final class InMemoryFileSystem implements FileSystem {
  /external/clang/lib/Basic/
VirtualFileSystem.cpp 89 FileSystem::~FileSystem() {}
92 FileSystem::getBufferForFile(const llvm::Twine &Name, int64_t FileSize,
101 std::error_code FileSystem::makeAbsolute(SmallVectorImpl<char> &Path) const {
109 bool FileSystem::exists(const Twine &Path) {
180 class RealFileSystem : public FileSystem {
228 IntrusiveRefCntPtr<FileSystem> vfs::getRealFileSystem() {
229 static IntrusiveRefCntPtr<FileSystem> FS = new RealFileSystem();
273 OverlayFileSystem::OverlayFileSystem(IntrusiveRefCntPtr<FileSystem> BaseFS) {
277 void OverlayFileSystem::pushOverlay(IntrusiveRefCntPtr<FileSystem> FS)
    [all...]
FileManager.cpp 26 #include "llvm/Support/FileSystem.h"
50 IntrusiveRefCntPtr<vfs::FileSystem> FS)
  /external/clang/include/clang/Driver/
ToolChain.h 36 class FileSystem;
128 vfs::FileSystem &getVFS() const;
  /external/okhttp/okhttp-urlconnection/src/test/java/com/squareup/okhttp/
OkUrlFactoryTest.java 5 import com.squareup.okhttp.internal.io.FileSystem;
32 private FileSystem fileSystem = new InMemoryFileSystem();
37 client.setCache(new Cache(new File("/cache/"), 10 * 1024 * 1024, fileSystem));
  /external/clang/include/clang/Frontend/
CompilerInstance.h 85 IntrusiveRefCntPtr<vfs::FileSystem> VirtualFileSystem;
372 vfs::FileSystem &getVirtualFileSystem() const {
382 void setVirtualFileSystem(IntrusiveRefCntPtr<vfs::FileSystem> FS) {
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/command/
AbstractFakeCommandHandler.java 30 import org.mockftpserver.fake.filesystem.FileSystem;
31 import org.mockftpserver.fake.filesystem.FileSystemEntry;
32 import org.mockftpserver.fake.filesystem.FileSystemException;
33 import org.mockftpserver.fake.filesystem.InvalidFilenameException;
96 * Convenience method to return the FileSystem stored in the ServerConfiguration
98 * @return the FileSystem
100 protected FileSystem getFileSystem() {
278 verifyFileSystemCondition(userAccount.canExecute(entry), path, "filesystem.cannotExecute");
291 verifyFileSystemCondition(userAccount.canWrite(entry), path, "filesystem.cannotWrite");
    [all...]
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
Cache.java 27 import com.squareup.okhttp.internal.io.FileSystem;
50 * Caches HTTP and HTTPS responses to the filesystem so they may be reused, saving time and
168 this(directory, maxSize, FileSystem.SYSTEM);
171 Cache(File directory, long maxSize, FileSystem fileSystem) {
172 this.cache = DiskLruCache.create(fileSystem, directory, VERSION, ENTRY_COUNT, maxSize);
337 // We couldn't read the metadata for this snapshot; possibly because the host filesystem
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.filesystem_1.3.1.R36x_v20100727-0745.jar 
  /external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/fake/
FakeFtpServerIntegrationTest.groovy 24 import org.mockftpserver.fake.filesystem.DirectoryEntry
25 import org.mockftpserver.fake.filesystem.FileEntry
26 import org.mockftpserver.fake.filesystem.FileSystem
27 import org.mockftpserver.fake.filesystem.UnixFakeFileSystem
28 import org.mockftpserver.fake.filesystem.WindowsFakeFileSystem
60 private FileSystem fileSystem
86 fileSystem.add(new FileEntry(path: FILE1, contents: ORIGINAL_CONTENTS))
93 def contents = fileSystem.getEntry(FILE1).createInputStream().text
    [all...]
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/
DiskLruCache.java 19 import com.squareup.okhttp.internal.io.FileSystem;
45 * A cache that uses a bounded amount of space on a filesystem. Each cache
51 * <p>The cache stores its data in a directory on the filesystem. This
57 * filesystem. When the number of stored bytes exceeds the limit, the cache will
60 * deleted. The limit does not include filesystem overhead or the cache
83 * filesystem, the corresponding entries will be dropped from the cache. If
141 private final FileSystem fileSystem;
187 DiskLruCache(FileSystem fileSystem, File directory, int appVersion, int valueCount, long maxSize
    [all...]
  /frameworks/base/tools/aapt2/
Android.mk 34 io/FileSystem.cpp \
  /frameworks/compile/libbcc/tools/bcc_compat/
Main.cpp 26 #include <llvm/Support/FileSystem.h>
  /libcore/ojluni/src/main/java/java/io/
UnixFileSystem.java 34 class UnixFileSystem extends FileSystem {
342 /* -- Filesystem interface -- */
  /prebuilts/devtools/tools/lib/
fat32lib.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/fat32lib/unspecified/
fat32lib-unspecified.jar 
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/filesystem/
AbstractFakeFileSystem.java 16 package org.mockftpserver.fake.filesystem;
33 * Abstract superclass for implementation of the FileSystem interface that manage the files
43 * filesystem-specific manner. This property must be initialized by concrete subclasses.
48 public abstract class AbstractFakeFileSystem implements FileSystem {
89 * Add each of the entries in the specified List to this filesystem. Note that this does not affect
90 * entries already existing within this filesystem.
110 throw new FileSystemException(path, "filesystem.pathAlreadyExists");
118 throw new FileSystemException(parent, "filesystem.parentDirectoryDoesNotExist");
140 * @see org.mockftpserver.fake.filesystem.FileSystem#delete(java.lang.String)
    [all...]
  /frameworks/compile/libbcc/bcinfo/tools/
main.cpp 26 #include <llvm/Support/FileSystem.h>

Completed in 745 milliseconds

12 3 4