Searched defs:isdir (Results 1 - 7 of 7) sorted by relevance

/external/chromium_org/v8/tools/testrunner/local/
H A Dutils.py31 from os.path import isdir namespace
39 return [ f for f in os.listdir(test_root) if isdir(join(test_root, f)) ]
/external/e2fsprogs/e2fsck/
H A Dpass4.c125 int isdir; local
159 isdir = ext2fs_test_inode_bitmap2(ctx->inode_dir_map, i);
160 if (isdir && (link_counted > EXT2_LINK_MAX))
166 if ((link_count != inode->i_links_count) && !isdir &&
175 if ((isdir && link_counted > 1 &&
/external/e2fsprogs/lib/ext2fs/
H A Dalloc_stats.c18 int inuse, int isdir)
34 if (isdir)
17 ext2fs_inode_alloc_stats2(ext2_filsys fs, ext2_ino_t ino, int inuse, int isdir) argument
/external/e2fsprogs/tests/progs/
H A Drandom_exercise.c27 int isdir; member in struct:state
75 int isdir = 0; local
79 isdir = random() & 1;
80 if (isdir) {
93 state_array[fd].isdir = isdir;
96 state_array[fd].isdir = isdir;
107 if (state_array[fd].isdir)
123 if (state_array[fd].isdir)
[all...]
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
H A Dfilesystem.py125 def isdir(self, path): member in class:FileSystem
126 return os.path.isdir(path)
H A Dfilesystem_mock.py103 if not self.isdir(path):
110 if self.isdir(source):
112 if self.isdir(destination):
124 return self.isfile(path) or self.isdir(path)
178 def isdir(self, path): member in class:MockFileSystem
209 if not self.isdir(top):
266 while norm_path and not self.isdir(norm_path):
/external/lldb/test/unittest2/test/
H A Dtest_discovery.py35 original_isdir = os.path.isdir
37 os.path.isdir = original_isdir
45 def isdir(path): function in function:TestDiscovery.test_find_tests
47 os.path.isdir = isdir
78 original_isdir = os.path.isdir
80 os.path.isdir = original_isdir
87 os.path.isdir = lambda path: True
138 original_isdir = os.path.isdir
159 os.path.isdir
334 def isdir(_): function in function:TestDiscovery.test_detect_module_clash
[all...]

Completed in 139 milliseconds