Home
last modified time | relevance | path

Searched refs:InterpreterConstants (Results 1 – 14 of 14) sorted by relevance

/external/sl4a/Common/src/com/googlecode/android_scripting/interpreter/
DInterpreterConfiguration.java78 Intent intent = new Intent(InterpreterConstants.ACTION_DISCOVER_INTERPRETERS); in discoverForType()
95 Intent intent = new Intent(InterpreterConstants.ACTION_DISCOVER_INTERPRETERS); in discoverAll()
97 intent.setType(InterpreterConstants.MIME + "*"); in discoverAll()
158 getMap(provider, InterpreterConstants.PROVIDER_PROPERTIES); in buildInterpreter()
164 getMap(provider, InterpreterConstants.PROVIDER_ENVIRONMENT_VARIABLES); in buildInterpreter()
168 Map<String, String> argumentsMap = getMap(provider, InterpreterConstants.PROVIDER_ARGUMENTS); in buildInterpreter()
194 if (action.equals(InterpreterConstants.ACTION_INTERPRETER_ADDED)) { in onReceive()
202 } else if (action.equals(InterpreterConstants.ACTION_INTERPRETER_REMOVED) in onReceive()
218 filter.addAction(InterpreterConstants.ACTION_INTERPRETER_ADDED); in InterpreterConfiguration()
219 filter.addAction(InterpreterConstants.ACTION_INTERPRETER_REMOVED); in InterpreterConfiguration()
/external/sl4a/InterpreterForAndroid/src/com/googlecode/android_scripting/activity/
DMain.java40 import com.googlecode.android_scripting.interpreter.InterpreterConstants;
158 intent.setAction(InterpreterConstants.ACTION_INTERPRETER_ADDED); in broadcastInstallationStateChange()
160 intent.setAction(InterpreterConstants.ACTION_INTERPRETER_REMOVED); in broadcastInstallationStateChange()
199 editor.putBoolean(InterpreterConstants.INSTALLED_PREFERENCE_KEY, isInstalled); in setInstalled()
206 mPreferences.getBoolean(InterpreterConstants.INSTALLED_PREFERENCE_KEY, false); in checkInstalled()
/external/sl4a/InterpreterForAndroid/src/com/googlecode/android_scripting/interpreter/
DInterpreterProvider.java60 mUriMatcher.addURI(auth, InterpreterConstants.PROVIDER_PROPERTIES, PROPERTIES); in InterpreterProvider()
61 mUriMatcher.addURI(auth, InterpreterConstants.PROVIDER_ENVIRONMENT_VARIABLES, in InterpreterProvider()
63 mUriMatcher.addURI(auth, InterpreterConstants.PROVIDER_ARGUMENTS, ARGUMENTS); in InterpreterProvider()
123 return mPreferences.getBoolean(InterpreterConstants.INSTALLED_PREFERENCE_KEY, false); in isInterpreterInstalled()
DSl4aHostedInterpreter.java113 return new File(InterpreterConstants.SDCARD_ROOT + this.getClass().getPackage().getName() in getExtrasPath()
114 + InterpreterConstants.INTERPRETER_EXTRAS_ROOT, getName()); in getExtrasPath()
/external/sl4a/InterpreterForAndroid/src/com/googlecode/android_scripting/
DInterpreterUninstaller.java28 import com.googlecode.android_scripting.interpreter.InterpreterConstants;
64 mInterpreterRoot = InterpreterConstants.SDCARD_ROOT + packageName; in InterpreterUninstaller()
133 return preferences.getBoolean(InterpreterConstants.INSTALLED_PREFERENCE_KEY, false); in isInstalled()
DInterpreterInstaller.java27 import com.googlecode.android_scripting.interpreter.InterpreterConstants;
166 mInterpreterRoot = InterpreterConstants.SDCARD_ROOT + packageName; in InterpreterInstaller()
274 String out = mInterpreterRoot + InterpreterConstants.INTERPRETER_EXTRAS_ROOT; in extractInterpreterExtras()
280 String out = InterpreterConstants.SCRIPTS_ROOT; in extractScripts()
301 return preferences.getBoolean(InterpreterConstants.INSTALLED_PREFERENCE_KEY, false); in isInstalled()
/external/sl4a/ScriptingLayer/src/com/googlecode/android_scripting/
DScriptStorageAdapter.java21 import com.googlecode.android_scripting.interpreter.InterpreterConstants;
50 script = new File(InterpreterConstants.SCRIPTS_ROOT, script.getPath()); in writeScript()
67 dir = new File(InterpreterConstants.SCRIPTS_ROOT); in listAllScripts()
/external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/provider/
DScriptProvider.java38 import com.googlecode.android_scripting.interpreter.InterpreterConstants;
149 if (description.startsWith(InterpreterConstants.SCRIPTS_ROOT)) { in queryLiveFolder()
150 description = description.replaceAll(InterpreterConstants.SCRIPTS_ROOT, "scripts/"); in queryLiveFolder()
/external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/activity/
DScriptPicker.java31 import com.googlecode.android_scripting.interpreter.InterpreterConstants;
47 private final File mBaseDir = new File(InterpreterConstants.SCRIPTS_ROOT);
DScriptManager.java57 import com.googlecode.android_scripting.interpreter.InterpreterConstants;
86 private final File mBaseDir = new File(InterpreterConstants.SCRIPTS_ROOT);
/external/sl4a/Common/src/com/googlecode/android_scripting/
DProcess.java19 import com.googlecode.android_scripting.interpreter.InterpreterConstants;
120 mLog = new File(String.format("%s/%s.log", InterpreterConstants.SDCARD_SL4A_ROOT, getName())); in start()
/external/sl4a/Utils/src/com/googlecode/android_scripting/interpreter/
DInterpreterConstants.java25 public interface InterpreterConstants { interface
/external/sl4a/ScriptingLayer/src/com/googlecode/android_scripting/interpreter/
DInterpreterProcess.java119 return InterpreterConstants.SDCARD_SL4A_ROOT; in getWorkingDirectory()
/external/sl4a/Common/src/com/googlecode/android_scripting/interpreter/html/
DHtmlActivityTask.java43 import com.googlecode.android_scripting.interpreter.InterpreterConstants;
73 private static final String BASE_URL = PREFIX + InterpreterConstants.SCRIPTS_ROOT;