HomeSort by relevance Sort by last modified time
    Searched defs:isdir (Results 1 - 18 of 18) sorted by null

  /external/chromium_org/v8/tools/testrunner/local/
utils.py 31 from os.path import isdir namespace
39 return isdir(path) and exists(join(path, 'testcfg.py'))
  /external/e2fsprogs/e2fsck/
pass4.c 124 int isdir = ext2fs_test_inode_bitmap(ctx->inode_dir_map, i); local
158 if (isdir && (link_counted > EXT2_LINK_MAX))
164 if ((link_count != inode->i_links_count) && !isdir &&
173 if ((isdir && link_counted > 1 &&
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
genericpath.py 10 'getsize', 'isdir', 'isfile']
24 # This follows symbolic links, so both islink() and isdir() can be true
36 # This follows symbolic links, so both islink() and isdir()
38 def isdir(s): function
ntpath.py 18 "getatime","getctime", "islink","exists","lexists","isdir","isfile",
262 if isdir(name):
526 # The genericpath.isdir implementation uses os.stat and checks the mode
530 from nt import _isdir as isdir namespace
532 # Use genericpath.isdir as imported above.
tarfile.py 1457 def isdir(self): member in class:TarInfo
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
genericpath.py 10 'getsize', 'isdir', 'isfile']
24 # This follows symbolic links, so both islink() and isdir() can be true
36 # This follows symbolic links, so both islink() and isdir()
38 def isdir(s): function
ntpath.py 18 "getatime","getctime", "islink","exists","lexists","isdir","isfile",
262 if isdir(name):
526 # The genericpath.isdir implementation uses os.stat and checks the mode
530 from nt import _isdir as isdir namespace
532 # Use genericpath.isdir as imported above.
tarfile.py 1457 def isdir(self): member in class:TarInfo
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
file_util.py 111 if os.path.isdir(dst):
172 from os.path import exists, isfile, isdir, basename, dirname namespace
184 if isdir(dst):
191 if not isdir(dirname(dst)):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
file_util.py 111 if os.path.isdir(dst):
172 from os.path import exists, isfile, isdir, basename, dirname namespace
184 if isdir(dst):
191 if not isdir(dirname(dst)):
  /external/e2fsprogs/tests/progs/
random_exercise.c 27 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/v8/test/message/
testcfg.py 30 from os.path import join, dirname, exists, basename, isdir namespace
101 if isdir(path):
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
filesystem.py 125 def isdir(self, path): member in class:FileSystem
126 return os.path.isdir(path)
filesystem_mock.py 103 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
205 if not self.isdir(path):
262 while norm_path and not self.isdir(norm_path):
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/unittest/test/
test_discovery.py 34 original_isdir = os.path.isdir
36 os.path.isdir = original_isdir
44 def isdir(path): function in function:TestDiscovery.test_find_tests
46 os.path.isdir = isdir
77 original_isdir = os.path.isdir
79 os.path.isdir = original_isdir
86 os.path.isdir = lambda path: True
137 original_isdir = os.path.isdir
157 os.path.isdir = lambda path: Tru
339 def isdir(_): function in function:TestDiscovery.test_detect_module_clash
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/unittest/test/
test_discovery.py 34 original_isdir = os.path.isdir
36 os.path.isdir = original_isdir
44 def isdir(path): function in function:TestDiscovery.test_find_tests
46 os.path.isdir = isdir
77 original_isdir = os.path.isdir
79 os.path.isdir = original_isdir
86 os.path.isdir = lambda path: True
137 original_isdir = os.path.isdir
157 os.path.isdir = lambda path: Tru
339 def isdir(_): function in function:TestDiscovery.test_detect_module_clash
    [all...]
  /frameworks/base/libs/androidfw/
BackupHelpers.cpp 535 const int isdir = S_ISDIR(s.st_mode); local
536 if (isdir) s.st_size = 0; // directories get no actual data in the tar stream
579 snprintf(buf + 124, 12, "%011llo", (isdir) ? 0LL : s.st_size);
586 if (isdir) {
681 if (!isdir) {
    [all...]
  /external/v8/tools/
test.py 34 from os.path import join, dirname, abspath, basename, isdir, exists namespace
    [all...]

Completed in 1061 milliseconds