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

1 2

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
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
  /external/python/cpython2/RISCOS/
unixstuff.c 45 int isdir(char *fn) function
  /prebuilts/gdb/darwin-x86/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
  /prebuilts/gdb/linux-x86/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
  /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
  /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
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
genericpath.py 10 'getsize', 'isdir', 'isfile']
32 # This follows symbolic links, so both islink() and isdir() can be true
44 # This follows symbolic links, so both islink() and isdir()
46 def isdir(s): function
  /external/e2fsprogs/e2fsck/
pass4.c 133 int isdir; local
168 isdir = ext2fs_test_inode_bitmap2(ctx->inode_dir_map, i);
169 if (isdir && (link_counted > EXT2_LINK_MAX))
176 if ((link_count != inode->i_links_count) && !isdir &&
185 if ((isdir && link_counted > 1 &&
  /external/python/cpython2/Lib/
genericpath.py 10 'getsize', 'isdir', 'isfile']
32 # This follows symbolic links, so both islink() and isdir() can be true
44 # This follows symbolic links, so both islink() and isdir()
46 def isdir(s): function
  /external/python/cpython3/Lib/
genericpath.py 10 'getsize', 'isdir', 'isfile', 'samefile', 'sameopenfile',
25 # This follows symbolic links, so both islink() and isdir() can be true
37 # This follows symbolic links, so both islink() and isdir()
39 def isdir(s): function
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/pdist/
RCSProxy.py 60 files = filter(os.path.isdir, files)
63 def isdir(self, name): member in class:DirSupport
64 return os.path.isdir(name)
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/
LongFilePathOsPath.py 20 def isdir(path): function
21 return os.path.isdir(LongFilePath(path))
  /external/e2fsprogs/tests/progs/
random_exercise.c 28 int isdir; member in struct:state
76 int isdir = 0; local
80 isdir = random() & 1;
81 if (isdir) {
94 state_array[fd].isdir = isdir;
97 state_array[fd].isdir = isdir;
108 if (state_array[fd].isdir)
124 if (state_array[fd].isdir)
    [all...]
  /external/python/cpython2/Demo/pdist/
RCSProxy.py 60 files = filter(os.path.isdir, files)
63 def isdir(self, name): member in class:DirSupport
64 return os.path.isdir(name)
  /prebuilts/go/darwin-x86/src/os/
file_windows.go 92 func (f *file) isdir() bool { return f != nil && f.dirinfo != nil } func
184 if file.isdir() && file.dirinfo.isempty {
368 isdir := err == nil && fi.IsDir()
380 if isdir {
  /prebuilts/go/linux-x86/src/os/
file_windows.go 92 func (f *file) isdir() bool { return f != nil && f.dirinfo != nil } func
184 if file.isdir() && file.dirinfo.isempty {
368 isdir := err == nil && fi.IsDir()
380 if isdir {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/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: True
325 def isdir(_): function in function:TestDiscovery.test_detect_module_clash
    [all...]
  /external/python/cpython2/Lib/plat-riscos/
riscospath.py 217 def isdir(p): function
377 if isdir(name) and not islink(name):
  /external/python/cpython2/Lib/unittest/test/
test_discovery.py 35 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
158 os.path.isdir = lambda path: Tru
340 def isdir(_): function in function:TestDiscovery.setup_module_clash
    [all...]
  /external/python/cpython3/Lib/test/
test_venv.py 75 def isdir(self, *args): member in class:BasicTest
77 self.assertTrue(os.path.isdir(fn))
85 self.isdir(self.bindir)
86 self.isdir(self.include)
87 self.isdir(*self.lib)
198 elif os.path.isdir(fn):
220 self.isdir(self.bindir)
221 self.isdir(self.include)
222 self.isdir(*self.lib)
  /prebuilts/gdb/darwin-x86/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/gdb/linux-x86/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/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...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Efi/
getpath.c 177 isdir(char *filename) function

Completed in 490 milliseconds

1 2