/external/e2fsprogs/tests/progs/ |
random_exercise.c | 27 int isdir; member in struct:state 75 int isdir = 0; local 79 isdir = random() & 1; 80 if (isdir) { 93 state_array[fd].isdir = isdir; 96 state_array[fd].isdir = isdir; 107 if (state_array[fd].isdir) 123 if (state_array[fd].isdir) [all...] |
/external/chromium/build/ |
dir_exists.py | 9 sys.stdout.write(str(os.path.isdir(sys.argv[1])))
|
/external/lzma/CPP/7zip/Archive/7z/ |
7zUpdate.h | 33 bool IsDir;
40 bool HasStream() const { return !IsDir && !IsAnti && Size != 0; }
44 IsDir(false),
50 void SetDirStatusFromAttrib() { IsDir = ((Attrib & FILE_ATTRIBUTE_DIRECTORY) != 0); };
|
/external/chromium_org/build/ |
dir_exists.py | 11 sys.stdout.write(str(os.path.isdir(sys.argv[1])))
|
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):
|
/external/lzma/CPP/7zip/UI/Common/ |
DirItem.h | 22 bool IsDir() const { return (Attrib & FILE_ATTRIBUTE_DIRECTORY) != 0 ; }
59 bool IsDir;
66 CArcItem(): IsDir(false), SizeDefined(false), MTimeDefined(false), Censored(false), TimeType(-1) {}
|
EnumDirItems.cpp | 99 if (fi.IsDir())
134 if (fi.IsDir())
221 bool isDir = fi.IsDir();
222 if (isDir && !item.ForDir || !isDir && !item.ForFile)
231 if (curNode.CheckPathToRoot(false, pathParts, !isDir))
235 if (!isDir)
273 if (!fi.IsDir())
310 if (curNode.CheckPathToRoot(false, addArchivePrefixNewTemp, !fi.IsDir()))
[all...] |
/external/chromium_org/third_party/icu/source/tools/toolutil/ |
filetools.h | 27 isFileModTimeLater(const char *filePath, const char *checkAgainst, UBool isDir=FALSE);
|
filetools.cpp | 32 * Also can be given just one file to check against. Default value for isDir is FALSE. 35 isFileModTimeLater(const char *filePath, const char *checkAgainst, UBool isDir) { 42 if (isDir == TRUE) { 59 isLatest = isFileModTimeLater(filePath, newpath, isDir);
|
/external/icu4c/tools/toolutil/ |
filetools.h | 27 isFileModTimeLater(const char *filePath, const char *checkAgainst, UBool isDir=FALSE);
|
filetools.cpp | 33 * Also can be given just one file to check against. Default value for isDir is FALSE. 36 isFileModTimeLater(const char *filePath, const char *checkAgainst, UBool isDir) { 43 if (isDir == TRUE) { 60 isLatest = isFileModTimeLater(filePath, newpath, isDir);
|
/pdk/build/ |
pdk_utils.py | 28 if not os.path.isdir(dest_full_path): 38 if not os.path.isdir(dest_full_path): 56 if not os.path.isdir(dest_full_path): 71 if not os.path.isdir(dest_dir): 85 if not os.path.isdir(dest_dir): 103 elif os.path.isdir(item_full_path): 113 if os.path.isfile(dest) or os.path.isdir(dest):
|
/external/chromium_org/third_party/mesa/ |
redirectoutput.py | 19 if not os.path.isdir(abs_outputdir):
|
/external/chromium_org/tools/gyp/test/mac/ |
gyptest-clang-cxx-library.py | 21 if not os.path.isdir('/usr/lib/c++'):
|
/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/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/ |
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/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...] |
/external/chromium/net/base/ |
dir_header.html | 8 function addRow(name, url, isdir, size, date_modified) { 21 link.className = isdir ? "icon dir" : "icon file"; 30 if (isdir) {
|
/external/chromium_org/chrome/test/pyautolib/ |
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/lzma/CPP/Windows/ |
FileFind.cpp | 37 if (!IsDir() || Name.IsEmpty())
47 if (!IsDir() || Name.IsEmpty())
247 return fi.Find(name) && !fi.IsDir();
253 return fi.Find(name) && fi.IsDir();
266 return fi.Find(name) && !fi.IsDir();
272 return fi.Find(name) && fi.IsDir();
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/ |
dir_util.py | 44 if os.path.isdir(name) or name == '': 52 while head and tail and not os.path.isdir(head): 74 if not (exc.errno == errno.EEXIST and os.path.isdir(head)): 126 if not dry_run and not os.path.isdir(src): 159 elif os.path.isdir(src_name): 176 if os.path.isdir(real_f) and not os.path.islink(real_f):
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/ |
dir_util.py | 44 if os.path.isdir(name) or name == '': 52 while head and tail and not os.path.isdir(head): 74 if not (exc.errno == errno.EEXIST and os.path.isdir(head)): 126 if not dry_run and not os.path.isdir(src): 159 elif os.path.isdir(src_name): 176 if os.path.isdir(real_f) and not os.path.islink(real_f):
|
/bionic/libc/kernel/tools/ |
update_all.py | 36 if not os.path.isdir(original_dir): 40 if not os.path.isdir(original_dir):
|
/external/e2fsprogs/lib/ext2fs/ |
alloc_stats.c | 18 int inuse, int isdir) 34 if (isdir)
|