HomeSort by relevance Sort by last modified time
    Searched full:isdir (Results 1 - 25 of 999) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/autotest/frontend/client/
gwt_dir 12 if os.path.isdir(site_gwt):
16 if not os.path.isdir(DEFAULT_GWT):
  /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/lzma/CPP/7zip/Archive/7z/
7zUpdate.h 58 bool IsDir;
67 bool HasStream() const { return !IsDir && !IsAnti && Size != 0; }
73 IsDir(false),
80 void SetDirStatusFromAttrib() { IsDir = ((Attrib & FILE_ATTRIBUTE_DIRECTORY) != 0); };
  /external/lzma/CPP/7zip/UI/Common/
HashCalc.cpp 37 HRESULT ScanProgress(UInt64 numFolders, UInt64 numFiles, UInt64 totalSize, const wchar_t *path, bool isDir)
39 return Callback->ScanProgress(numFolders, numFiles, totalSize, path, isDir);
152 void CHashBundle::Final(bool isDir, bool isAltStream, const UString &path)
154 if (isDir)
169 if (isDir)
175 if (!isDir)
276 bool isDir = false;
287 isDir = dirItem.IsDir();
290 if (!isDir)
    [all...]
UpdateCallback.h 112 bool IsDir(const CUpdatePair2 &up) const
115 return DirItems->Items[up.DirIndex].IsDir();
117 return (*ArcItems)[up.ArcIndex].IsDir;
EnumDirItems.h 17 virtual HRESULT ScanProgress(UInt64 numFolders, UInt64 numFiles, UInt64 totalSize, const wchar_t *path, bool isDir) = 0;
ArchiveName.cpp 15 if (!fileInfo.IsDir() && !keepName)
53 if (!fileInfo.IsDir() && !keepName)
DirItem.h 38 bool IsDir() const { return (Attrib & FILE_ATTRIBUTE_DIRECTORY) != 0 ; }
115 bool IsDir;
123 CArcItem(): IsDir(false), IsAltStream(false), SizeDefined(false), MTimeDefined(false), Censored(false), TimeType(-1) {}
HashCalc.h 38 virtual void Final(bool isDir, bool isAltStream, const UString &path) = 0;
64 void Final(bool isDir, bool isAltStream, const UString &path);
69 virtual HRESULT ScanProgress(UInt64 numFolders, UInt64 numFiles, UInt64 totalSize, const wchar_t *path, bool isDir) x; \
  /prebuilts/go/darwin-x86/src/os/
types.go 21 IsDir() bool // abbreviation for Mode().IsDir()
85 // IsDir reports whether m describes a directory.
87 func (m FileMode) IsDir() bool {
103 func (fs *fileStat) IsDir() bool { return fs.Mode().IsDir() }
  /prebuilts/go/linux-x86/src/os/
types.go 21 IsDir() bool // abbreviation for Mode().IsDir()
85 // IsDir reports whether m describes a directory.
87 func (m FileMode) IsDir() bool {
103 func (fs *fileStat) IsDir() bool { return fs.Mode().IsDir() }
  /external/chromium-trace/catapult/devil/devil/utils/
host_utils.py 11 if os.path.isdir(path):
  /external/icu/icu4c/source/tools/toolutil/
filetools.h 27 isFileModTimeLater(const char *filePath, const char *checkAgainst, UBool isDir=FALSE);
filetools.cpp 40 * Also can be given just one file to check against. Default value for isDir is FALSE.
43 isFileModTimeLater(const char *filePath, const char *checkAgainst, UBool isDir) {
50 if (isDir == TRUE) {
67 isLatest = isFileModTimeLater(filePath, newpath, isDir);
  /external/icu/tools/
i18nutil.py 8 if not os.path.isdir(dir):
  /external/chromium-trace/catapult/telemetry/third_party/pyfakefs/pyfakefs/
example_test.py 64 self.assertFalse(os.path.isdir('/test'))
66 self.assertTrue(os.path.isdir('/test'))
108 self.assertFalse(os.path.isdir('/test'))
110 self.assertTrue(os.path.isdir('/test/dir1/dir2a'))
113 self.assertTrue(os.path.isdir('/test/dir1/dir2b'))
130 self.assertTrue(os.path.isdir('/test/dir1/dir2b'))
131 self.assertTrue(os.path.isdir('/test/dir1/dir2a'))
  /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/autotest/client/site_tests/platform_ChromeCgroups/
platform_ChromeCgroups.py 40 if not os.path.isdir(CGROUP_DIR):
42 if not os.path.isdir(FG_CGROUP_DIR):
44 if not os.path.isdir(BG_CGROUP_DIR):
  /bionic/libc/kernel/tools/
update_all.py 40 if not os.path.isdir(original_dir):
45 if not os.path.isdir(modified_dir):
49 if not os.path.isdir(original_dir):
52 if not os.path.isdir(modified_dir):
  /external/autotest/frontend/
frontend.wsgi 11 if os.path.isdir(p):
  /external/autotest/tko/parsers/test/
execute_parser.py 23 if not path.exists(scenario_dirpath) or not path.isdir(scenario_dirpath):
  /prebuilts/gdb/darwin-x86/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/gdb/darwin-x86/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/gdb/linux-x86/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/gdb/linux-x86/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...]

Completed in 751 milliseconds

1 2 3 4 5 6 7 8 91011>>