Searched refs:filesystem (Results 1 - 25 of 84) sorted by relevance

1234

/external/webkit/Tools/Scripts/webkitpy/layout_tests/port/
H A Dtest_files.py62 filesystem = port._filesystem
63 return normalized_find(filesystem, normalize(filesystem, port.layout_tests_dir(), paths))
66 def normalize(filesystem, base_dir, paths):
67 return [filesystem.normpath(filesystem.join(base_dir, path)) for path in paths]
70 def normalized_find(filesystem, paths):
83 filenames = filesystem.glob(path)
92 files = filesystem.files_under(path, _skipped_directories, _is_test_file)
101 def _has_supported_extension(filesystem, filenam
[all...]
H A Dchromium_linux_unittest.py46 filesystem = filesystem_mock.MockFileSystem()
47 filesystem.exists = lambda x: 'DumpRenderTree' in x
53 executive=executive, filesystem=filesystem)
83 filesystem = filesystem_mock.MockFileSystem()
84 port = chromium_linux.ChromiumLinuxPort(filesystem=filesystem)
88 filesystem = filesystem_mock.MockFileSystem()
89 filesystem.exists = lambda x: True
91 port = chromium_linux.ChromiumLinuxPort(filesystem
[all...]
H A Dmock_drt_unittest.py124 def make_drt(self, options, args, filesystem, stdin, stdout, stderr):
125 return mock_drt.MockDRT(options, args, filesystem, stdin, stdout, stderr)
158 drt_output=None, filesystem=None):
160 filesystem = filesystem or test.unit_test_filesystem()
161 port = factory.get(platform, filesystem=filesystem)
171 drt = self.make_drt(options, args, filesystem, stdin, stdout, stderr)
182 filesystem = test.unit_test_filesystem()
187 filesystem, stdi
[all...]
H A Dconfig_standalone.py49 from webkitpy.common.system import filesystem namespace
64 fs = filesystem.FileSystem()
/external/webkit/Source/WebCore/fileapi/
H A DDirectoryReader.cpp51 filesystem()->scheduleCallback(entriesCallback, EntryArray::create());
54 filesystem()->readDirectory(this, m_fullPath, entriesCallback, errorCallback);
H A DFileEntrySync.cpp48 return filesystem()->createFile(this, ec);
53 return filesystem()->createWriter(this, ec);
H A DFileEntry.cpp51 filesystem()->createWriter(this, successCallback, errorCallback);
56 filesystem()->createFile(this, successCallback, errorCallback);
H A DEntry.cpp58 filesystem()->scheduleCallback(errorCallback.release(), FileError::create(FileError::INVALID_MODIFICATION_ERR));
65 filesystem()->scheduleCallback(errorCallback.release(), FileError::create(FileError::INVALID_MODIFICATION_ERR));
72 filesystem()->scheduleCallback(errorCallback.release(), FileError::create(FileError::INVALID_MODIFICATION_ERR));
79 filesystem()->scheduleCallback(errorCallback.release(), FileError::create(FileError::INVALID_MODIFICATION_ERR));
86 filesystem()->scheduleCallback(errorCallback.release(), FileError::create(FileError::INVALID_MODIFICATION_ERR));
H A DDirectoryEntry.cpp58 filesystem()->scheduleCallback(errorCallback.release(), FileError::create(FileError::INVALID_MODIFICATION_ERR));
65 filesystem()->scheduleCallback(errorCallback.release(), FileError::create(FileError::INVALID_MODIFICATION_ERR));
72 filesystem()->scheduleCallback(errorCallback.release(), FileError::create(FileError::INVALID_MODIFICATION_ERR));
/external/webkit/Tools/Scripts/webkitpy/common/system/
H A Durlfetcher_mock.py34 def __init__(self, filesystem):
35 self._filesystem = filesystem
H A Durlfetcher.py36 def __init__(self, filesystem):
37 self._filesystem = filesystem
H A Dworkspace.py35 def __init__(self, filesystem, executive):
36 self._filesystem = filesystem
H A Dworkspace_unittest.py40 filesystem = MockFileSystem({
45 workspace = Workspace(filesystem, None)
H A Dzip_mock.py30 def __init__(self, filesystem=None):
31 self._filesystem = filesystem or MockFileSystem()
H A Dfileset.py26 from webkitpy.common.system.filesystem import FileSystem
31 def __init__(self, fileset, filename, filesystem=None):
35 self._filesystem = filesystem or FileSystem()
H A Dzipfileset.py29 from webkitpy.common.system.filesystem import FileSystem
34 def __init__(self, zip_url, filesystem=None, zip_factory=None):
38 self._filesystem = filesystem or FileSystem()
/external/webkit/Tools/Scripts/webkitpy/layout_tests/
H A Drebaseline_chromium_webkit_tests_unittest.py74 filesystem = port.unit_test_filesystem()
75 host_port_obj = port.get('test', options, filesystem=filesystem,
79 filesystem.write_text_file(expectations_path, expectations)
80 return (host_port_obj, filesystem)
83 def test_url_fetcher(filesystem):
92 return urlfetcher_mock.make_fetcher_cls(urls)(filesystem)
194 host_port_obj, filesystem = test_host_port_and_filesystem(options, expectations)
198 filesystem=filesystem)
[all...]
/external/chromium/chrome/browser/resources/file_manager/js/
H A Dmain.js32 function onFileSystemFound(filesystem) {
33 console.log('Found filesystem: ' + filesystem.name, filesystem);
49 if (filesystem.name.match(/^chrome-extension_\S+:external/i)) {
50 // We've been handed the local filesystem, whose root directory
52 util.getDirectories(filesystem.root, {create: false}, rootPaths,
55 util.forEachDirEntry(filesystem.root, onEntryFound);
61 console.log('Requesting filesystem.');
H A Dharness.js18 function onFilesystem(filesystem) {
20 self.filesystem = filesystem;
25 util.flog('Error initializing filesystem'));
59 utils.forEachDirEntry(this.filesystem.root, function(dirEntry) {
94 * Import a list of File objects into harness.filesystem.
161 return onDirFound(this.filesystem.root);
186 getOrCreateNextName(this.filesystem.root);
/external/libsepol/tests/policies/test-cond/
H A Drefpolicy-base.conf5 class filesystem
140 class filesystem
977 allow bin_t fs_t:filesystem associate;
978 allow bin_t noxattrfs:filesystem associate;
980 allow sbin_t fs_t:filesystem associate;
981 allow sbin_t noxattrfs:filesystem associate;
983 allow ls_exec_t fs_t:filesystem associate;
984 allow ls_exec_t noxattrfs:filesystem associate;
987 allow shell_exec_t fs_t:filesystem associate;
988 allow shell_exec_t noxattrfs:filesystem associat
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.core.filesystem_1.3.1.R36x_v20100727-0745.jar ... properties org/ org/eclipse/ org/eclipse/core/ org/eclipse/core/filesystem/ org/eclipse/core/filesystem/EFS.class EFS.java ...
/external/webkit/Tools/Scripts/webkitpy/tool/commands/
H A Drebaselineserver.py221 def __init__(self, test_port, layout_tests_directory, results_directory, platforms, filesystem, scm):
226 self.filesystem = filesystem
234 test_results_directory = test_config.filesystem.join(
238 for filename in test_config.filesystem.listdir(test_results_directory):
252 filesystem = test_config.filesystem
256 target_expectations_directory = filesystem.join(
258 test_results_directory = test_config.filesystem.join(
296 filesystem
[all...]
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DANTLRFileStream.as2 import flash.filesystem.File;
3 import flash.filesystem.FileMode;
4 import flash.filesystem.FileStream;
/external/clang/test/Analysis/
H A Dcxx11-crashes.cpp24 namespace filesystem namespace in namespace:boost
31 namespace fs = boost::filesystem;
/external/webkit/Tools/Scripts/webkitpy/common/
H A Dhost.py35 from webkitpy.common.system import executive, filesystem, platforminfo, user, workspace namespace
45 self.filesystem = filesystem.FileSystem()
46 self.workspace = workspace.Workspace(self.filesystem, self.executive)

Completed in 233 milliseconds

1234