Home | History | Annotate | Download | only in analyzer

Lines Matching refs:Path

32    The compiler for scan-build and scan-build are in the PATH.
33 export PATH=/Users/zaks/workspace/c2llvm/build/Release+Asserts/bin:$PATH
77 (or the PATH environment variable, if unspecified)."""
80 paths = os.environ.get('PATH','')
83 if os.path.exists(command):
98 for path in paths.split(os.pathsep):
100 p = os.path.join(path, command + ext)
101 if os.path.exists(p):
117 ProjectMapPath = os.path.join(os.path.abspath(os.curdir),
119 if not os.path.exists(ProjectMapPath):
126 return os.path.join(os.path.abspath(os.curdir), ID)
139 Clang = which("clang", os.environ['PATH'])
141 print "Error: cannot find 'clang' in PATH"
183 ScriptPath = os.path.join(Dir, CleanupScript)
184 if os.path.exists(ScriptPath):
203 BuildScriptPath = os.path.join(Dir, BuildScript)
204 if not os.path.exists(BuildScriptPath):
237 (Root, Ext) = os.path.splitext(FileName)
243 (Root, Ext) = os.path.splitext(FileName)
252 if os.path.exists(os.path.join(Dir, BuildScript)):
263 PlistPath = os.path.join(Dir, SBOutputDir, "date")
264 FailPath = os.path.join(PlistPath, "failures");
268 FileName = os.path.basename(FullFileName)
279 OutputOption = "-o " + os.path.join(PlistPath, FileName) + ".plist "
280 Command = CmdPrefix + OutputOption + os.path.join(Dir, FileName)
281 LogFile = open(os.path.join(FailPath, FileName + ".stderr.txt"), "w+b")
303 BuildLogPath = os.path.join(SBOutputDir, LogFolderName, BuildLogName)
308 if (os.path.exists(BuildLogPath)) :
315 if (os.path.exists(SBOutputDir)) :
320 assert(not os.path.exists(SBOutputDir))
321 os.makedirs(os.path.join(SBOutputDir, LogFolderName))
348 P = os.path.join(SBOutputDir, F)
371 SummaryPath = os.path.join(SBOutputDir, LogFolderName, FailuresSummaryFileName)
410 RefDir = os.path.join(Dir, SBOutputDirReferencePrefix + SBOutputDirName)
411 NewDir = os.path.join(Dir, SBOutputDirName)
418 RefLogDir = os.path.join(RefDir, LogFolderName)
421 NewList.remove(os.path.join(NewDir, LogFolderName))
445 DiffsPath = os.path.join(NewDir, DiffsSummaryFileName)
465 Path = os.path.join(ProjName, getSBOutputDirName(True))
468 Command = "svn delete %s" % (Path,)
470 Command = "svn add %s" % (Path,)
501 SBOutputDir = os.path.join(Dir, RelOutputDir)