/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
symlink_support.py | 88 target_is_directory = target_is_directory or os.path.isdir(target)
|
test_dircache.py | 30 if os.path.isdir(fname):
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/ |
PathBrowser.py | 66 if not os.path.isdir(file):
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
symlink_support.py | 88 target_is_directory = target_is_directory or os.path.isdir(target)
|
test_dircache.py | 30 if os.path.isdir(fname):
|
/system/extras/simpleperf/ |
utils.h | 117 bool IsDir(const std::string& dirpath);
|
/prebuilts/go/darwin-x86/src/go/build/ |
build.go | 75 // IsDir reports whether the path names a directory. 76 // If IsDir is nil, Import calls os.Stat and uses the result's IsDir method. 77 IsDir func(path string) bool 121 // isDir calls ctxt.IsDir (if not nil) or else uses os.Stat. 122 func (ctxt *Context) isDir(path string) bool { 123 if f := ctxt.IsDir; f != nil { 127 return err == nil && fi.IsDir() 241 if ctxt.isDir(dir) [all...] |
/prebuilts/go/linux-x86/src/go/build/ |
build.go | 75 // IsDir reports whether the path names a directory. 76 // If IsDir is nil, Import calls os.Stat and uses the result's IsDir method. 77 IsDir func(path string) bool 121 // isDir calls ctxt.IsDir (if not nil) or else uses os.Stat. 122 func (ctxt *Context) isDir(path string) bool { 123 if f := ctxt.IsDir; f != nil { 127 return err == nil && fi.IsDir() 241 if ctxt.isDir(dir) [all...] |
/external/autotest/client/bin/ |
local_host.py | 108 if os.path.isdir(dest): 117 elif os.path.isdir(source):
|
kernel_unittest.py | 111 self.god.stub_function(os.path, "isdir") 168 os.path.isdir.expect_call(self.src_dir).and_return(True) 170 os.path.isdir.expect_call(self.build_dir).and_return(True) 401 os.path.isdir.expect_call(self.base_tree).and_return(True) 413 os.path.isdir.expect_call(self.base_tree).and_return(False) 542 os.path.isdir.expect_call(prefix).and_return(False) 545 os.path.isdir.expect_call(boot_dir).and_return(False)
|
/external/autotest/client/profilers/ftrace/ |
ftrace.py | 78 if not os.path.isdir(self.builddir): 93 if not os.path.isdir(output_dir):
|
/external/autotest/client/tests/kvm/tests/ |
trans_hugepage.py | 41 if not os.path.isdir(debugfs_path): 119 if os.path.isdir(debugfs_path):
|
/external/boringssl/src/util/bot/ |
extract.py | 58 if info.isdir(): 114 if not os.path.isdir(os.path.dirname(fixed_path)):
|
/external/chromium-trace/catapult/devil/devil/android/ |
md5sum.py | 63 if os.path.isdir(md5sum_dist_path): 102 if os.path.isdir(md5sum_dist_path):
|
/external/chromium-trace/catapult/telemetry/telemetry/internal/backends/chrome/ |
crx_id.py | 97 if os.path.isdir(filename): 109 if os.path.isdir(filename):
|
/external/chromium-trace/catapult/third_party/WebOb/webob/ |
static.py | 125 if not os.path.isdir(self.path): 139 if os.path.isdir(path) and self.index_page:
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/roboto/ |
param.py | 49 if os.path.exists(value) and not os.path.isdir(value): 55 if os.path.isdir(value):
|
/external/lzma/CPP/7zip/UI/FileManager/ |
ProgressDialog2.h | 83 HRESULT ScanProgress(UInt64 numFiles, UInt64 totalSize, const UString &fileName, bool isDir = false);
94 void Set_FilePath(const UString &path, bool isDir = false);
|
BrowseDialog.cpp | 482 bool isDir1 = f1.IsDir();
483 bool isDir2 = f2.IsDir();
555 if (!fi.IsDir())
651 if (!fi.IsDir())
709 if (file.IsDir())
764 if (!file.IsDir())
968 if (!fi.IsDir())
|
/external/opencv3/platforms/osx/ |
build_framework.py | 34 if not os.path.isdir(builddir): 81 if os.path.isdir(framework_dir):
|
/external/v8/tools/testrunner/local/ |
utils.py | 31 from os.path import isdir 40 return [ f for f in os.listdir(test_root) if isdir(join(test_root, f)) ]
|
/frameworks/base/tests/CoreTests/android/core/ |
TestWebData.java | 109 TestWebData(int length, int lastModified, String name, String type, boolean isDir) { 114 testDir = isDir;
|
/libcore/support/src/test/java/tests/support/ |
Support_TestWebData.java | 96 Support_TestWebData(long length, int lastModified, String name, String type, boolean isDir, long expDate) { 101 testDir = isDir;
|
/prebuilts/go/darwin-x86/src/cmd/gofmt/ |
gofmt.go | 72 return !f.IsDir() && !strings.HasPrefix(name, ".") && strings.HasSuffix(name, ".go") 201 case dir.IsDir():
|
/prebuilts/go/linux-x86/src/cmd/gofmt/ |
gofmt.go | 72 return !f.IsDir() && !strings.HasPrefix(name, ".") && strings.HasSuffix(name, ".go") 201 case dir.IsDir():
|