Searched refs:isDir (Results 1 - 25 of 29) sorted by relevance

12

/macosx-10.9.5/ICU-511.35/icuSources/tools/toolutil/
H A Dfiletools.h27 isFileModTimeLater(const char *filePath, const char *checkAgainst, UBool isDir=FALSE);
H A Dfiletools.cpp33 * 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) { argument
43 if (isDir == TRUE) {
60 isLatest = isFileModTimeLater(filePath, newpath, isDir);
/macosx-10.9.5/CF-855.17/
H A DCFURL.inc.h238 Boolean isDir; variable
268 isDir = true;
271 isDir = true;
275 isDir = true;
277 isDir = false;
279 isDir = true;
281 isDir = (characterArray[pathRg.location + pathRg.length - 3] == '/');
285 isDir = false;
288 isDir = (baseURL != NULL) ? CFURLHasDirectoryPath(baseURL) : false;
290 if (isDir) {
[all...]
H A DCFBundle_Internal.h147 extern Boolean _CFIsResourceAtURL(CFURLRef url, Boolean *isDir);
148 extern Boolean _CFIsResourceAtPath(CFStringRef path, Boolean *isDir);
H A DCFFileUtilities.c454 Boolean isDir = (dp->d_type == DT_DIR); local
455 if (!isDir) {
463 isDir = ((statBuf.st_mode & S_IFMT) == S_IFDIR);
467 fileURL = CFURLCreateFromFileSystemRepresentationRelativeToBase(alloc, (uint8_t *)dp->d_name, namelen, isDir, dirURL);
469 fileURL = CFURLCreateFromFileSystemRepresentationRelativeToBase(alloc, (uint8_t *)dp->d_name, dp->d_namlen, isDir, dirURL);
H A DCFBundle_Resources.c85 static inline Boolean _CFIsResourceCommon(char *path, Boolean *isDir) { argument
89 if (isDir) *isDir = ((exists && ((mode & S_IFMT) == S_IFDIR)) ? true : false);
95 CF_PRIVATE Boolean _CFIsResourceAtURL(CFURLRef url, Boolean *isDir) { argument
99 return _CFIsResourceCommon(path, isDir);
102 CF_PRIVATE Boolean _CFIsResourceAtPath(CFStringRef path, Boolean *isDir) { argument
106 return _CFIsResourceCommon(pathBuf, isDir);
1158 Boolean isDir = false, result = false; local
1161 if (_CFIsResourceAtURL(dirURL, &isDir) && isDir) resul
1262 Boolean isDir; local
[all...]
H A DCFBundle_InfoPlist.c573 Boolean isDir = false; local
574 if (_CFIsResourceAtURL(url, &isDir)) {
575 if (isDir) {
H A DCFURL.c62 static CFArrayRef HFSPathToURLComponents(CFStringRef path, CFAllocatorRef alloc, Boolean isDir);
63 static CFStringRef HFSPathToURLPath(CFStringRef path, CFAllocatorRef alloc, Boolean isDir, Boolean isAbsolute);
65 static CFArrayRef WindowsPathToURLComponents(CFStringRef path, CFAllocatorRef alloc, Boolean isDir, Boolean isAbsolute);
66 static CFStringRef WindowsPathToURLPath(CFStringRef path, CFAllocatorRef alloc, Boolean isDir, Boolean isAbsolute);
3791 static CFArrayRef WindowsPathToURLComponents(CFStringRef path, CFAllocatorRef alloc, Boolean isDir, Boolean isAbsolute) { argument
3819 if (isDir) {
3834 static CFStringRef WindowsPathToURLPath(CFStringRef path, CFAllocatorRef alloc, Boolean isDir, Boolean isAbsolute) { argument
3839 urlComponents = WindowsPathToURLComponents(path, alloc, isDir, isAbsolute);
4722 static CFArrayRef HFSPathToURLComponents(CFStringRef path, CFAllocatorRef alloc, Boolean isDir) { argument
4775 if (isDir
4815 HFSPathToURLPath(CFStringRef path, CFAllocatorRef alloc, Boolean isDir, Boolean isAbsolute) argument
[all...]
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/qt/
H A Dqquickurlschemedelegate.cpp69 if (fileInfo.isDir() || !file.open(QIODevice::ReadOnly | QIODevice::Unbuffered))
/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/Support/
H A DPathV1.h49 bool isDir : 1; ///< True if this is a directory.
53 group(999), uniqueID(0), isDir(false), isFile(false) { }
/macosx-10.9.5/msdosfs-198/msdosfs.kextproj/msdosfs.kmodproj/
H A Dmsdosfs_denode.c544 int isDir = 0; local
559 isDir = dep->de_Attributes & ATTR_DIRECTORY;
584 if (isDir)
613 if (!isDir && bcmp(dirp->deName, dep->de_Name, SHORT_NAME_LEN))
635 if (isDir && !isRoot)
H A Dmsdosfs_vnops.c523 int isDir = dep->de_Attributes & ATTR_DIRECTORY; local
526 if (isDir)
564 else if (!isDir)
569 if (!isDir)
/macosx-10.9.5/IOKitUser-907.100.13/
H A DIOCFURLAccess.c430 Boolean isDir = (dent->d_type == DT_DIR); local
431 if (!isDir) {
440 isDir = ((statBuf.st_mode & S_IFMT) == S_IFDIR);
443 fileURL = CFURLCreateFromFileSystemRepresentationRelativeToBase(alloc, dent->d_name, nameLen, isDir, base);
/macosx-10.9.5/libarchive-29/libarchive/contrib/shar/
H A Dtree.c90 #define isDir 1 /* This entry is a regular directory. */ macro
374 t->stack->flags |= isDir;
/macosx-10.9.5/libarchive-29/libarchive/examples/minitar/
H A Dtree.c65 #define isDir 1 /* This entry is a regular directory. */ macro
298 t->stack->flags |= isDir;
/macosx-10.9.5/llvmCore-3425.0.33/tools/llvm-ar/
H A Dllvm-ar.cpp287 if (Status->isDir) {
317 if (si->isDir) {
638 if (!si->isDir) {
/macosx-10.9.5/modemccl-25.1/
H A Dcclparser.m338 BOOL isDir = NO, exists;
341 if (![fileMan fileExistsAtPath:filePath isDirectory:&isDir]) {
347 if (isDir) {
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-framework-Cocoa/PyObjCTest/
H A Dtest_cfurl.py166 path, isDir = CFURLCopyStrictPath(ref, None)
168 self.assertEquals(isDir, True)
/macosx-10.9.5/WebCore-7537.78.1/platform/qt/
H A DFileSystemQt.cpp88 result.type = info.isDir() ? FileMetadata::TypeDirectory : FileMetadata::TypeFile;
/macosx-10.9.5/libarchive-29/libarchive/tar/
H A Dtree.c105 #define isDir 1 /* This entry is a regular directory. */ macro
593 t->stack->flags |= isDir;
/macosx-10.9.5/llvmCore-3425.0.33/lib/Support/Windows/
H A DPath.inc461 status.isDir = fi.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY;
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-framework-Cocoa/PyObjCTest/
H A Dtest_cfurl.py164 path, isDir = CFURLCopyStrictPath(ref, None)
166 self.assertEqual(isDir, True)
/macosx-10.9.5/tcl-102/tcl_ext/tclresource/tclresource/
H A DtclResource.c1192 Boolean permSpecified = false, isDir = false, gotParentRef = false; local
1252 err = FSPathMakeRef(native, &fileFSRef, &isDir);
1258 if (isDir) {
1271 err = FSPathMakeRef(native, &parentFSRef, &isDir);
/macosx-10.9.5/WebKit-7537.78.2/qt/Api/
H A Dqwebsettings.cpp712 if (info.isDir() && info.isWritable())
1246 if (info.isDir() && info.isWritable()) {
/macosx-10.9.5/tcl-102/tk/tk/library/
H A Dtkfbox.tcl1785 set isDir 0
1789 set isDir [file isdirectory $file]
1791 if {!$isDir} {

Completed in 266 milliseconds

12