Searched refs:curPath (Results 1 – 4 of 4) sorted by relevance
275 FilePath curPath (path); in createDirectoryAndParents() local277 if (curPath.exists()) in createDirectoryAndParents()280 while (!curPath.exists()) in createDirectoryAndParents()282 createPaths.push_back(curPath.getPath()); in createDirectoryAndParents()284 std::string parent = curPath.getDirName(); in createDirectoryAndParents()285 DE_CHECK_RUNTIME_ERR(parent != curPath.getPath()); in createDirectoryAndParents()286 curPath = FilePath(parent); in createDirectoryAndParents()
306 const char* curPath = path; in findNode() local307 int curLen = getCurrentComponentLen(curPath); in findNode()311 curNode = curNode->getChild(std::string(curPath, curPath+curLen)); in findNode()316 curPath += curLen; in findNode()318 if (curPath[0] == 0) in findNode()322 DE_ASSERT(curPath[0] == '.'); in findNode()323 curPath += 1; in findNode()324 curLen = getCurrentComponentLen(curPath); in findNode()
323 NSString* curPath = self;324 while (![[NSFileManager defaultManager] fileExistsAtPath:curPath])326 NSString* parentDirPath = [curPath stringByDeletingLastPathComponent];327 if ([parentDirPath isEqualToString:curPath])329 curPath = parentDirPath;332 NSArray* displayComponents = [[NSFileManager defaultManager] componentsToDisplayForPath:curPath];
17 curPath = os.getcwd()21 os.chdir(curPath)