Home
last modified time | relevance | path

Searched refs:scriptUrl (Results 1 – 3 of 3) sorted by relevance

/AOO41X/main/stoc/test/uriproc/
H A Dtest_uriproc.cxx800 scriptUrl(uriRef, css::uno::UNO_QUERY_THROW); in testVndSunStarScript() local
804 scriptUrl->getUriReference()); in testVndSunStarScript()
808 scriptUrl->getName()); in testVndSunStarScript()
818 scriptUrl->hasParameter( in testVndSunStarScript()
828 scriptUrl->getParameter( in testVndSunStarScript()
835 if ( scriptUrl->hasParameter(rtl::OUString::createFromAscii( in testVndSunStarScript()
837 scriptUrl->setParameter( in testVndSunStarScript()
840 scriptUrl->getParameter( in testVndSunStarScript()
855 scriptUrl->setName(scriptUrl->getName()); in testVndSunStarScript()
873 scriptUrl(uriRef, css::uno::UNO_QUERY_THROW); in testVndSunStarScript() local
[all …]
/AOO41X/main/rhino/
H A Drhino1_7R3.patch72 + public Object runScriptWindow(URL scriptUrl) throws Exception
74 + return debugGui.runScriptWindow(scriptUrl);
77 + public void openFile(URL scriptUrl, Scriptable scope, Runnable closeCallback) {
78 + debugGui.openFile(scriptUrl, scope, closeCallback);
285 + public void openFile(URL scriptUrl, Scriptable scope, Runnable closeCallback) {
291 + if (scriptUrl != null) {
294 + InputStreamReader reader = new InputStreamReader(scriptUrl.openStream());
295 + String fileName = getFileName(scriptUrl);
296 + officeScripts.addScript( fileName, scriptUrl, scope, closeCallback );
341 + public Object runScriptWindow(URL scriptUrl) throws Exception
[all …]
/AOO41X/main/scripting/source/pyprov/
H A Dpythonscript.py935 scriptUrl = self.rootUrl + "/" + params[0] + ".py"
937 self.provCtx.sfa.writeFile( scriptUrl, EmptyInputStream() )