/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
compileall.py | 51 if not os.path.isdir(fullname): 56 os.path.isdir(fullname) and \ 200 if len(args) != 1 and not os.path.isdir(args[0]): 213 if os.path.isdir(arg):
|
/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/darwin-x86/2.7.5/lib/python2.7/test/ |
test_genericpath.py | 23 'getmtime', 'exists', 'isdir', 'isfile'] 124 self.assertIs(self.pathmodule.isdir(test_support.TESTFN), False) 129 self.assertIs(self.pathmodule.isdir(test_support.TESTFN), False) 132 self.assertIs(self.pathmodule.isdir(test_support.TESTFN), True)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
compileall.py | 51 if not os.path.isdir(fullname): 56 os.path.isdir(fullname) and \ 200 if len(args) != 1 and not os.path.isdir(args[0]): 213 if os.path.isdir(arg):
|
/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)):
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_genericpath.py | 23 'getmtime', 'exists', 'isdir', 'isfile'] 124 self.assertIs(self.pathmodule.isdir(test_support.TESTFN), False) 129 self.assertIs(self.pathmodule.isdir(test_support.TESTFN), False) 132 self.assertIs(self.pathmodule.isdir(test_support.TESTFN), True)
|
/bionic/libc/kernel/tools/ |
find_headers.py | 65 if not os.path.isdir(kernel_root): 69 if not os.path.isdir(kernel_root+"/include/linux"): 96 if os.path.isdir(kernel_root+"/asm"):
|
/external/chromium_org/net/base/ |
dir_header.html | 9 function addRow(name, url, isdir, size, date_modified) { 22 link.className = isdir ? "icon dir" : "icon file"; 31 if (isdir) {
|
/external/chromium_org/third_party/mesa/src/scons/ |
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/mesa3d/scons/ |
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):
|
/libcore/luni/src/main/java/libcore/net/url/ |
FileURLConnection.java | 47 private boolean isDir; 78 isDir = true; 123 if (isDir) {
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/ |
test_sysconfig.py | 27 elif os.path.isdir(path): 33 #self.assertTrue(os.path.isdir(lib_dir), lib_dir) 51 self.assertTrue(os.path.isdir(inc_dir), inc_dir)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/ |
test_sysconfig.py | 27 elif os.path.isdir(path): 33 #self.assertTrue(os.path.isdir(lib_dir), lib_dir) 51 self.assertTrue(os.path.isdir(inc_dir), inc_dir)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/ |
FileDialog.py | 114 if os.path.isdir(dir_or_file): 174 if os.path.isdir(fullname): 191 if filter[-1:] == os.sep or os.path.isdir(filter): 243 if os.path.isdir(file): 256 if not os.path.isdir(head):
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/ |
FileDialog.py | 114 if os.path.isdir(dir_or_file): 174 if os.path.isdir(fullname): 191 if filter[-1:] == os.sep or os.path.isdir(filter): 243 if os.path.isdir(file): 256 if not os.path.isdir(head):
|
/external/lzma/C/Util/7z/ |
7zMain.c | 268 static void GetAttribString(UInt32 wa, Bool isDir, char *s)
270 s[0] = (char)(((wa & FILE_ATTRIBUTE_DIRECTORY) != 0 || isDir) ? 'D' : kEmptyAttribChar);
367 if (listCommand == 0 && f->IsDir && !fullPaths)
388 GetAttribString(f->AttribDefined ? f->Attrib : 0, f->IsDir, attr);
405 if (f->IsDir)
417 if (f->IsDir)
448 if (f->IsDir)
|
/external/chromium_org/native_client_sdk/src/tools/ |
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): 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) [all...] |
/external/lzma/CPP/7zip/Archive/7z/ |
7zUpdate.cpp | 166 if (u1.IsDir != u2.IsDir)
167 return (u1.IsDir) ? 1 : -1;
168 if (u1.IsDir)
297 if (u1.IsDir != u2.IsDir)
298 return (u1.IsDir) ? 1 : -1;
299 if (u1.IsDir)
441 file.IsDir = ui.IsDir;
[all...] |
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/ |
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))
|
/external/lzma/CPP/7zip/UI/Client7z/ |
Client7z.cpp | 192 bool isDir;
272 RINOK(IsArchiveItemFolder(_archiveHandler, index, _processedFileInfo.isDir));
314 if (_processedFileInfo.isDir)
429 bool isDir() const { return (Attrib & FILE_ATTRIBUTE_DIRECTORY) != 0 ; }
531 case kpidIsDir: prop = dirItem.isDir(); break;
568 if (dirItem.isDir())
|
/external/antlr/antlr-3.4/runtime/Python/ |
setup.py | 37 if os.path.isdir(path): 84 if not os.path.isdir(testDir): 185 if not os.path.isdir(testDir):
|
/external/chromium_org/tools/git/ |
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/llvm/utils/lit/lit/ |
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):
|
/frameworks/compile/slang/tests/ |
test.py | 203 if os.path.isdir(arg): 214 if os.path.isdir(f) and (f[0:2] == 'F_' or f[0:2] == 'P_'): 218 if os.path.isdir(f):
|
/external/chromium_org/build/android/gyp/util/ |
md5_check.py | 45 if os.path.isdir(path):
|