Searched defs:script (Results 1 - 1 of 1) sorted by relevance

/sdk/monkeyrunner/src/com/android/monkeyrunner/
H A DScriptRunner.java67 * Runs the specified Jython script. First runs the initialization script to
73 * @return the error code from running the script.
78 // Add the current directory of the script to the python.path search path.
129 public static void runString(String executablePath, String script) { argument
132 python.exec(script);
136 String script, String... names) {
137 return runStringAndGet(executablePath, script, Arrays.asList(names));
141 String script, Collection<String> names) {
144 python.exec(script);
135 runStringAndGet(String executablePath, String script, String... names) argument
140 runStringAndGet(String executablePath, String script, Collection<String> names) argument
[all...]

Completed in 27 milliseconds