/external/webkit/Tools/Scripts/webkitpy/layout_tests/ |
D | rebaseline_chromium_webkit_tests_unittest.py | 74 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): argument 92 return urlfetcher_mock.make_fetcher_cls(urls)(filesystem) 194 host_port_obj, filesystem = test_host_port_and_filesystem(options, expectations) 198 filesystem=filesystem) 202 url_fetcher = test_url_fetcher(filesystem) 204 mock_scm = mocktool.MockSCM(filesystem) [all …]
|
D | run_webkit_tests_unittest.py | 89 tests_included=False, filesystem=None): argument 94 user=mocktool.MockUser(), filesystem=filesystem) 99 …g_run(extra_args=None, port_obj=None, record_results=False, tests_included=False, filesystem=None): argument 107 user=user, filesystem=filesystem) 129 filesystem=None, include_reference_html=False): argument 170 recording_port = RecordingTestPort(options=options, user=user, filesystem=filesystem) 259 …, regular_output, user = logging_run(['--clobber-old-results'], record_results=True, filesystem=fs) 261 ['--print-last-failures'], filesystem=fs) 349 self.assertTrue(passing_run(filesystem=fs)) 357 …_tests_run(['--test-list=%s' % filename], tests_included=True, flatten_batches=True, filesystem=fs) [all …]
|
/external/webkit/Tools/Scripts/webkitpy/layout_tests/port/ |
D | test_files.py | 62 filesystem = port._filesystem 63 return normalized_find(filesystem, normalize(filesystem, port.layout_tests_dir(), paths)) 66 def normalize(filesystem, base_dir, paths): argument 67 return [filesystem.normpath(filesystem.join(base_dir, path)) for path in paths] 70 def normalized_find(filesystem, paths): argument 83 filenames = filesystem.glob(path) 92 files = filesystem.files_under(path, _skipped_directories, _is_test_file) 101 def _has_supported_extension(filesystem, filename): argument 104 extension = filesystem.splitext(filename)[1] 116 def _is_test_file(filesystem, dirname, filename): argument [all …]
|
D | chromium_linux_unittest.py | 46 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=filesystem, 96 filesystem = filesystem_mock.MockFileSystem() 97 filesystem.exists = lambda x: True [all …]
|
D | mock_drt_unittest.py | 124 def make_drt(self, options, args, filesystem, stdin, stdout, stderr): argument 125 return mock_drt.MockDRT(options, args, filesystem, stdin, stdout, stderr) 158 drt_output=None, filesystem=None): argument 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, stdin, stdout, stderr) 191 self.assertEqual(filesystem.written_files, {}) 224 def make_drt(self, options, args, filesystem, stdin, stdout, stderr): argument [all …]
|
D | config_unittest.py | 35 from webkitpy.common.system import filesystem 149 fs = filesystem.FileSystem() 180 c = config.Config(executive.Executive(), filesystem.FileSystem()) 186 c = config.Config(executive.Executive(), filesystem.FileSystem()) 196 c = config.Config(executive.Executive(), filesystem.FileSystem())
|
/external/libsepol/tests/policies/test-cond/ |
D | refpolicy-base.conf | 5 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 associate; [all …]
|
/external/webkit/Tools/Scripts/webkitpy/tool/commands/ |
D | rebaselineserver.py | 221 …def __init__(self, test_port, layout_tests_directory, results_directory, platforms, filesystem, sc… argument 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.maybe_make_directory(target_expectations_directory) 298 source_path = filesystem.join(test_results_directory, source_file) 300 destination_path = filesystem.join( [all …]
|
/external/e2fsprogs/ext2ed/ |
D | ext2ed.conf.in | 7 # Ext2Descriptors is the location of the ext2 filesystem structure 22 # LogFile is the location of the log file. Actual changes to the filesystem 30 # filesystem. When on, each change will be logged - Both the previous data 38 # filesystem - The "enablewrite" command will not work. When on, enablewrite 46 # a mounted filesystem. Read-Write mode is never allowed on a mounted 47 # filesystem. 53 # When ForceExt2 is set to on, the filesystem is assumed to be ext2 54 # filesystem, despite the possibly corrupt superblock magic number reading. 61 # Normally, the various filesystem parameters such as the block size and the 62 # total number of blocks are gathered from the ext2 filesystem itself. [all …]
|
D | README | 1 ext2ed - The extended-2 filesystem editor, version e2fsprogs 43 ext2ed - The extended-2 filesystem editor, version 0.2 46 This is version 0.2 of ext2ed - The extended-2 filesystem editor. 70 2. Technical overview of the ext2 filesystem. 129 1. Don't use ext2ed to change a mounted filesystem ! 131 Using ext2ed in read-only mode on a mounted filesystem can be allowed 143 4. Use the 'setdevice' command to open an ext2 filesystem. 146 5. If the filesystem is an ext2 filesystem and ext2ed fails to 149 6. The filesystem will always be opened in read-only mode. Feel free to
|
/external/chromium/chrome/browser/resources/file_manager/js/ |
D | main.js | 32 function onFileSystemFound(filesystem) { argument 33 console.log('Found filesystem: ' + filesystem.name, filesystem); 49 if (filesystem.name.match(/^chrome-extension_\S+:external/i)) { 52 util.getDirectories(filesystem.root, {create: false}, rootPaths, 55 util.forEachDirEntry(filesystem.root, onEntryFound);
|
D | harness.js | 18 function onFilesystem(filesystem) { argument 20 self.filesystem = filesystem; 59 utils.forEachDirEntry(this.filesystem.root, function(dirEntry) { 161 return onDirFound(this.filesystem.root); 186 getOrCreateNextName(this.filesystem.root);
|
/external/e2fsprogs/tests/m_mkfs_overhead/ |
D | expect.1 | 1 ./test.img: Cannot create filesystem with requested number of inodes while setting up superblock 2 ./test.img: Attempt to read block from filesystem resulted in short read while opening filesystem 5 ../e2fsck/e2fsck: Attempt to read block from filesystem resulted in short read while trying to open… 9 ../misc/dumpe2fs: Attempt to read block from filesystem resulted in short read while trying to open… 10 Couldn't find valid filesystem superblock.
|
/external/webkit/Source/WebCore/fileapi/ |
D | Entry.cpp | 58 …filesystem()->scheduleCallback(errorCallback.release(), FileError::create(FileError::INVALID_MODIF… in getMetadata() 65 …filesystem()->scheduleCallback(errorCallback.release(), FileError::create(FileError::INVALID_MODIF… in moveTo() 72 …filesystem()->scheduleCallback(errorCallback.release(), FileError::create(FileError::INVALID_MODIF… in copyTo() 79 …filesystem()->scheduleCallback(errorCallback.release(), FileError::create(FileError::INVALID_MODIF… in remove() 86 …filesystem()->scheduleCallback(errorCallback.release(), FileError::create(FileError::INVALID_MODIF… in getParent()
|
D | DOMFileSystem.cpp | 119 …static PassOwnPtr<GetPathCallback> create(PassRefPtr<DOMFileSystem> filesystem, const String& path… in create() argument 121 return adoptPtr(new GetPathCallback(filesystem, path, successCallback, errorCallback)); in create() 133 …GetPathCallback(PassRefPtr<DOMFileSystem> filesystem, const String& path, PassRefPtr<FileCallback>… in GetPathCallback() argument 135 , m_filesystem(filesystem) in GetPathCallback()
|
D | DirectoryEntry.cpp | 58 …filesystem()->scheduleCallback(errorCallback.release(), FileError::create(FileError::INVALID_MODIF… in getFile() 65 …filesystem()->scheduleCallback(errorCallback.release(), FileError::create(FileError::INVALID_MODIF… in getDirectory() 72 …filesystem()->scheduleCallback(errorCallback.release(), FileError::create(FileError::INVALID_MODIF… in removeRecursively()
|
/external/e2fsprogs/doc/ |
D | libext2fs.texinfo | 30 ext2 filesystem. 123 manipulate an ext2 filesystem. 146 The following functions operate on a filesystem handle. Most EXT2FS 147 Library functions require a filesystem handle as their first argument. 148 There are two functions which create a filesystem handle, 151 The filesystem can also be closed using @code{ext2fs_close}, and any 156 * Opening an ext2 filesystem:: 158 * Initializing a filesystem:: 164 @node Opening an ext2 filesystem, Closing and flushing out changes, Filesystem-level functions, Fil… 166 @subsection Opening an ext2 filesystem [all …]
|
/external/e2fsprogs/tests/ |
D | README | 1 These images contain various forms of corrupted filesystem which 5 filesystem images. It will run them two times, and display the exit 9 0 No filesystem errors were detected 14 or filesystem error that the e2fsck was not 21 filesystem corruption, which e2fsck should fix on the first pass. 23 filesystem with no detectable errors found in the second pass. The 24 exception is the okgroup.img filesystem, which contains no errors, and 28 not exit with an exit status code of 1 after correcting filesystem
|
/external/webkit/Tools/Scripts/webkitpy/common/ |
D | host.py | 35 from webkitpy.common.system import executive, filesystem, platforminfo, user, workspace 45 self.filesystem = filesystem.FileSystem() 46 self.workspace = workspace.Workspace(self.filesystem, self.executive)
|
/external/e2fsprogs/debugfs/ |
D | debug_cmds.ct | 10 request do_open_filesys, "Open a filesystem", 13 request do_close_filesys, "Close the filesystem", 19 request do_dirty_filesys, "Mark the filesystem as dirty", 22 request do_init_filesys, "Initialize a filesystem (DESTROYS DATA)", 112 request do_write, "Copy a file from your native filesystem", 121 request do_lcd, "Change the current directory on your native filesystem", 124 request do_rdump, "Recursively dump a directory to the native filesystem",
|
/external/e2fsprogs/ |
D | e2fsprogs.spec | 21 filesystem inconsistencies after an unclean shutdown), mke2fs (used to 22 initialize a partition to contain an empty ext2 filesystem), debugfs 23 (used to examine the internal structure of a filesystem, to manually 24 repair a corrupted filesystem or to create test cases for e2fsck), 25 tune2fs (used to modify filesystem parameters), resize2fs to grow and 27 filesystem utilities. 36 Summary: Ext2 filesystem-specific static libraries and headers. 43 develop ext2, ext3, or ext4 filesystem-specific programs. 46 ext2. ext3. or ext4 filesystem-specific programs. If you install
|
D | e2fsprogs.lsm | 5 Description: The filesystem utilities for the EXT2 filesystem, including 7 Keywords: utilities, fsck, filesystem, Ext2fs
|
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/ |
D | ANTLRFileStream.as | 2 import flash.filesystem.File; 3 import flash.filesystem.FileMode; 4 import flash.filesystem.FileStream;
|
/external/e2fsprogs/tests/f_badjour_indblks/ |
D | expect.1 | 4 *** ext3 journal has been deleted - filesystem is now ext2 only *** 6 Adding dirhash hint to filesystem. 28 *** journal has been re-created - filesystem is now ext3 again ***
|
/external/webkit/Tools/Scripts/webkitpy/common/system/ |
D | fileset.py | 26 from webkitpy.common.system.filesystem import FileSystem 31 def __init__(self, fileset, filename, filesystem=None): argument 35 self._filesystem = filesystem or FileSystem()
|