Lines Matching refs:path
9 import os.path
48 def findItem(root,path): argument
62 q = deque(path)
307 theDir=os.path.normpath(os.path.dirname(destPath))
308 if not os.path.exists(theDir):
311 def correctPath(path): argument
312 while (path[0]=="/") or (path[0] == "\\"):
313 path = path[1:]
314 return(path)
335 path = str(m.group(1))
337 destPath = os.path.join(outputDir,correctPath(path))
369 path = []
410 path.append(theId)
413 elem = findItem(root,path)
417 benchPath = os.path.join(benchmark,elem.fullPath(),"fullBenchmark.csv")
434 with open(os.path.join(resultPath,'currentConfig.csv'), 'r') as f:
456 path.pop()
495 newPath=path.copy()
507 path.pop()
547 resultPath=os.path.dirname(args.r)