Home
last modified time | relevance | path

Searched refs:ScriptPath (Results 1 – 4 of 4) sorted by relevance

/external/clang/utils/analyzer/
DSATestBuild.py207 ScriptPath = os.path.join(Dir, CleanupScript)
208 runScript(ScriptPath, PBuildLogFile, Cwd)
212 ScriptPath = os.path.join(Dir, DownloadScript)
213 runScript(ScriptPath, PBuildLogFile, Dir)
216 def runScript(ScriptPath, PBuildLogFile, Cwd): argument
217 if os.path.exists(ScriptPath):
220 print " Executing: %s" % (ScriptPath,)
221 check_call("chmod +x '%s'" % ScriptPath, cwd = Cwd,
225 check_call("'%s'" % ScriptPath, cwd = Cwd, stderr=PBuildLogFile,
229 print "Error: Running %s failed. See %s for details." % (ScriptPath,
/external/pdfium/testing/tools/
Dcommon.py118 def ScriptPath(self, name): member in DirectoryFinder
Dtest_runner.py338 self.fixup_path = finder.ScriptPath('fixup_pdf_template.py')
339 self.text_diff_path = finder.ScriptPath('text_diff.py')
/external/llvm-project/clang-tools-extra/clang-doc/
DHTMLGenerator.cpp292 SmallString<128> ScriptPath = computeRelativePath("", InfoPath); in genJsScriptsHTML() local
293 llvm::sys::path::append(ScriptPath, llvm::sys::path::filename(FilePath)); in genJsScriptsHTML()
295 llvm::sys::path::native(ScriptPath, llvm::sys::path::Style::posix); in genJsScriptsHTML()
296 ScriptNode->Attributes.emplace_back("src", std::string(ScriptPath.str())); in genJsScriptsHTML()