/prebuilts/go/darwin-x86/src/os/exec/ |
lp_plan9.go | 21 if m := d.Mode(); !m.IsDir() && m&0111 != 0 {
|
/prebuilts/go/linux-x86/src/os/exec/ |
lp_plan9.go | 21 if m := d.Mode(); !m.IsDir() && m&0111 != 0 {
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
dircache.py | 40 if os.path.isdir(os.path.join(head, list[i])):
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
dircache.py | 40 if os.path.isdir(os.path.join(head, list[i])):
|
/sdk/eclipse/scripts/ |
collect_sources_for_sdk.py | 94 if not os.path.isdir(p.SRC): 96 elif not os.path.isdir(p.DST): 122 elif os.path.isdir(fp): 155 if not os.path.isdir(dir):
|
/external/autotest/server/cros/ap_configurators/ |
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):
|
/external/chromium-trace/catapult/telemetry/third_party/modulegraph/modulegraph_tests/ |
test_zipio.py | 107 self.assertTrue(zipio.isdir(TESTDATA)) 108 self.assertFalse(zipio.isdir(os.path.join(TESTDATA, 'test.txt'))) 109 self.assertTrue(zipio.isdir(os.path.join(TESTDATA, 'zipped.egg'))) 110 self.assertTrue(zipio.isdir(os.path.join(TESTDATA, 'zipped.egg', 'subdir'))) 111 self.assertTrue(zipio.isdir(os.path.join(TESTDATA, 'zipped.egg', 'subdir2/subdir'))) 112 self.assertTrue(zipio.isdir(os.path.join(TESTDATA, 'zipped.egg', 'subdir4'))) 113 self.assertFalse(zipio.isdir(os.path.join(TESTDATA, 'zipped.egg', 'subdir4', 'file.txt'))) 114 self.assertRaises(IOError, zipio.isdir, os.path.join(TESTDATA, 'no-such-file')) 115 self.assertRaises(IOError, zipio.isdir, os.path.join(TESTDATA, 'zipped.egg', 'no-such-file')) 116 self.assertRaises(IOError, zipio.isdir, os.path.join(TESTDATA, 'zipped.egg', 'subdir', 'no-such-file') [all...] |
/external/lzma/CPP/7zip/UI/Common/ |
EnumDirItems.cpp | 191 if (fi.IsDir())
239 if (fi.IsDir())
355 if (curNode.CheckPathToRoot(false, addArchivePrefixNewTemp, !fi.IsDir()))
360 if (curNode.CheckPathToRoot(true, addArchivePrefixNew, !fi.IsDir()))
371 if (fi.IsDir())
391 if (!fi.IsDir())
487 bool isDir = fi.IsDir();
488 if (isDir && !item.ForDir || !isDir && !item.ForFile) [all...] |
/external/autotest/client/site_tests/firmware_TouchMTB/ |
cros_gs.py | 28 if not os.path.isdir(GSUTIL_PATH): 77 cp_flag = '-R' if os.path.isdir(data) else ''
|
/external/autotest/site_utils/ |
restart_latest.py | 76 boards = [board for board in os.listdir('.') if os.path.isdir(board)] 96 if not os.path.isdir(test_path) or not test.startswith('netbook_'):
|
/external/autotest/tko/parsers/test/ |
new_scenario.py | 49 if not path.exists(results_dirpath) or not path.isdir(results_dirpath): 55 if not path.exists(scenarios_dirpath) or not path.isdir(scenarios_dirpath):
|
/external/chromium-trace/catapult/catapult_base/catapult_base/refactor_util/ |
move.py | 47 if os.path.isdir(self._target_path): 103 if not os.path.isdir(module_path):
|
/external/chromium-trace/catapult/dependency_manager/dependency_manager/ |
dependency_manager_util.py | 23 if os.path.isdir(dir_path): 93 if unzip_path and os.path.isdir(unzip_path):
|
/external/chromium-trace/catapult/telemetry/third_party/modulegraph/doc/ |
zipio.rst | 38 .. function:: isdir(path) 44 Based on :func:`os.path.isdir`
|
/external/chromium-trace/catapult/telemetry/third_party/pyfakefs/pyfakefs/ |
example.py | 52 >>> os.path.isdir('/test') 55 >>> os.path.isdir('/test')
|
/external/gmock/test/ |
gmock_test_utils.py | 43 # isdir resolves symbolic links. 45 if os.path.isdir(gtest_tests_util_dir):
|
/external/google-breakpad/src/testing/test/ |
gmock_test_utils.py | 43 # isdir resolves symbolic links. 45 if os.path.isdir(gtest_tests_util_dir):
|
/external/lzma/C/Util/7z/ |
7zMain.c | 290 static void GetAttribString(UInt32 wa, Bool isDir, char *s)
292 s[0] = (char)(((wa & FILE_ATTRIBUTE_DIRECTORY) != 0 || isDir) ? 'D' : '.');
400 int isDir = SzArEx_IsDir(&db, i);
401 if (listCommand == 0 && isDir && !fullPaths)
432 GetAttribString(SzBitWithVals_Check(&db.Attribs, i) ? db.Attribs.Vals[i] : 0, isDir, attr);
450 if (isDir)
462 if (isDir)
493 if (isDir)
|
/external/lzma/CPP/7zip/Archive/7z/ |
7zFolderOutStream.cpp | 52 !_db->IsItemAnti(index) && !fi.IsDir)
69 (fi.IsDir || !fi.CrcDefined || !_checkCrc || fi.Crc == _crcStreamSpec->GetCRC()) ?
|
/external/lzma/CPP/Windows/ |
FileFind.h | 18 inline bool IsDir(DWORD attrib) { return (attrib & FILE_ATTRIBUTE_DIRECTORY) != 0; }
51 bool IsDir() const { return MatchesMask(FILE_ATTRIBUTE_DIRECTORY); }
|
/prebuilts/gdb/darwin-x86/lib/python2.7/lib-tk/ |
FixTk.py | 61 if os.path.isdir(tcldir): 77 if os.path.isdir(tixdir):
|
/prebuilts/gdb/linux-x86/lib/python2.7/lib-tk/ |
FixTk.py | 61 if os.path.isdir(tcldir): 77 if os.path.isdir(tixdir):
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/ |
FixTk.py | 61 if os.path.isdir(tcldir): 77 if os.path.isdir(tixdir):
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/ |
FixTk.py | 61 if os.path.isdir(tcldir): 77 if os.path.isdir(tixdir):
|
/external/autotest/client/bin/ |
harness.py | 35 if os.path.isdir(configd):
|