/external/e2fsprogs/tests/progs/ |
D | random_exercise.c | 27 int isdir; member 75 int isdir = 0; in create_random_file() local 79 isdir = random() & 1; in create_random_file() 80 if (isdir) { in create_random_file() 93 state_array[fd].isdir = isdir; in create_random_file() 96 state_array[fd].isdir = isdir; in create_random_file() 107 if (state_array[fd].isdir) in truncate_file() 123 if (state_array[fd].isdir) in unlink_file() 157 if ((state_array[fd].isdir == 0) && in main()
|
/external/chromium_org/chrome/test/pyautolib/ |
D | pyauto_utils.py | 47 assert os.path.isdir(self._path), '%s is not a directory' % self._path 79 if os.path.isdir(self._path): 85 if self._backup_dir and os.path.isdir(self._backup_dir): 91 if os.path.isdir(path): 107 if not os.path.isdir(dir): 114 if not os.path.isdir(name): 118 if not os.path.isdir(dir):
|
D | pyauto_utils_test.py | 61 self.assertFalse(os.path.isdir(mydir)) 63 self.assertTrue(os.path.isdir(mydir)) 66 self.assertFalse(os.path.isdir(mydir))
|
/external/chromium_org/native_client_sdk/src/tools/ |
D | oshelpers.py | 83 if os.path.isdir(src): 90 if not os.path.isdir(dst): 144 if os.path.isdir(dst): 172 if os.path.isdir(dst): 189 if os.path.isdir(dst): 290 if os.path.isdir(dst): 305 def MakeZipPath(os_path, isdir, iswindows): argument 333 if isdir: 339 return MakeZipPath(os_path, os.path.isdir(os_path), sys.platform == 'win32') 372 if options.recursive and os.path.isdir(src_file):
|
/external/e2fsprogs/e2fsck/ |
D | pass4.c | 124 int isdir = ext2fs_test_inode_bitmap(ctx->inode_dir_map, i); in e2fsck_pass4() local 158 if (isdir && (link_counted > EXT2_LINK_MAX)) in e2fsck_pass4() 164 if ((link_count != inode->i_links_count) && !isdir && in e2fsck_pass4() 173 if ((isdir && link_counted > 1 && in e2fsck_pass4()
|
/external/chromium_org/build/ |
D | copy_test_data_ios.py | 29 if not os.path.isdir(path): 58 if os.path.exists(output_dir) and not os.path.isdir(output_dir): 60 if os.path.exists(output_filename) and os.path.isdir(output_filename):
|
D | dir_exists.py | 11 sys.stdout.write(str(os.path.isdir(sys.argv[1])))
|
/external/mesa3d/scons/ |
D | llvm.py | 49 if not os.path.isdir(llvm_dir): 58 if not os.path.isdir(llvm_bin_dir): 60 if not os.path.isdir(llvm_bin_dir):
|
/external/chromium_org/third_party/mesa/src/scons/ |
D | llvm.py | 49 if not os.path.isdir(llvm_dir): 58 if not os.path.isdir(llvm_bin_dir): 60 if not os.path.isdir(llvm_bin_dir):
|
/external/chromium_org/chrome/test/functional/perf/ |
D | endure_setup.py | 112 if not os.path.isdir(endure_dir): 314 if not os.path.isdir(directory): 321 if not os.path.isdir(name): 325 if directory and not os.path.isdir(directory):
|
/external/chromium_org/tools/git/ |
D | move_source_file.py | 53 if os.path.isdir(to_path): 153 if not os.path.isdir('.git'): 176 if len(from_paths) > 1 and not os.path.isdir(orig_to_path):
|
/external/chromium_org/v8/tools/testrunner/local/ |
D | utils.py | 31 from os.path import isdir 39 return isdir(path) and exists(join(path, 'testcfg.py'))
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/ |
D | filesystem_unittest.py | 166 self.assertTrue(fs.isdir(self._this_dir)) 170 self.assertFalse(fs.isdir(self._this_file)) 201 self.assertFalse(fs.isdir(sub_path)) 205 self.assertTrue(fs.isdir(sub_path)) 210 self.assertTrue(fs.isdir(sub_path)) 216 self.assertFalse(fs.isdir(base_path))
|
D | 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 MockFileSystem 209 if not self.isdir(top): 266 while norm_path and not self.isdir(norm_path):
|
/external/chromium_org/build/linux/ |
D | install-chromeos-fonts.py | 34 if not os.path.isdir(FONTS_DIR): 49 if os.path.isdir(dest_dir):
|
/external/skia/tools/ |
D | test_rendering.py | 97 if (os.path.isdir(render_dir)): 100 if (os.path.isdir(diff_dir)):
|
/external/e2fsprogs/lib/ext2fs/ |
D | alloc_stats.c | 18 int inuse, int isdir) in ext2fs_inode_alloc_stats2() argument 34 if (isdir) in ext2fs_inode_alloc_stats2()
|
/external/chromium_org/chrome/common/extensions/docs/server2/ |
D | local_file_system.py | 35 if os.path.isdir(os.path.join(dir_name, os_path)): 44 if os.path.isdir(path):
|
/external/chromium_org/tools/gyp/buildbot/ |
D | buildbot_run.py | 47 if os.path.isdir(CMAKE_DIR): 84 if os.path.isdir(ANDROID_DIR):
|
/external/chromium_org/tools/perf/measurements/ |
D | blink_perf.py | 34 if os.path.isdir(candidate_path): 39 if os.path.isdir(path):
|
/external/chromium_org/build/android/pylib/gtest/ |
D | setup.py | 100 if os.path.isdir(constants.ISOLATE_DEPS_DIR): 147 if os.path.isdir(p): 165 if os.path.isdir(deps_product_dir):
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/webgl/ |
D | update_webgl_conformance_tests.py | 103 if os.path.isdir(out_dir): 151 elif os.path.isdir(in_name):
|
/external/antlr/antlr-3.4/runtime/Python/ |
D | setup.py | 37 if os.path.isdir(path): 84 if not os.path.isdir(testDir): 185 if not os.path.isdir(testDir):
|
/external/llvm/utils/lit/lit/ |
D | discovery.py | 62 while not os.path.isdir(item): 122 if not os.path.isdir(source_path): 145 if not os.path.isdir(file_sourcepath):
|
/external/chromium/build/ |
D | dir_exists.py | 9 sys.stdout.write(str(os.path.isdir(sys.argv[1])))
|