HomeSort by relevance Sort by last modified time
    Searched refs:InterpreterConstants (Results 1 - 14 of 14) sorted by null

  /external/sl4a/Utils/src/com/googlecode/android_scripting/interpreter/
InterpreterConstants.java 25 public interface InterpreterConstants {
  /external/sl4a/InterpreterForAndroid/src/com/googlecode/android_scripting/interpreter/
Sl4aHostedInterpreter.java 113 return new File(InterpreterConstants.SDCARD_ROOT + this.getClass().getPackage().getName()
114 + InterpreterConstants.INTERPRETER_EXTRAS_ROOT, getName());
InterpreterProvider.java 60 mUriMatcher.addURI(auth, InterpreterConstants.PROVIDER_PROPERTIES, PROPERTIES);
61 mUriMatcher.addURI(auth, InterpreterConstants.PROVIDER_ENVIRONMENT_VARIABLES,
63 mUriMatcher.addURI(auth, InterpreterConstants.PROVIDER_ARGUMENTS, ARGUMENTS);
123 return mPreferences.getBoolean(InterpreterConstants.INSTALLED_PREFERENCE_KEY, false);
  /external/sl4a/Common/src/com/googlecode/android_scripting/interpreter/
InterpreterConfiguration.java 78 Intent intent = new Intent(InterpreterConstants.ACTION_DISCOVER_INTERPRETERS);
95 Intent intent = new Intent(InterpreterConstants.ACTION_DISCOVER_INTERPRETERS);
97 intent.setType(InterpreterConstants.MIME + "*");
158 getMap(provider, InterpreterConstants.PROVIDER_PROPERTIES);
164 getMap(provider, InterpreterConstants.PROVIDER_ENVIRONMENT_VARIABLES);
168 Map<String, String> argumentsMap = getMap(provider, InterpreterConstants.PROVIDER_ARGUMENTS);
194 if (action.equals(InterpreterConstants.ACTION_INTERPRETER_ADDED)) {
202 } else if (action.equals(InterpreterConstants.ACTION_INTERPRETER_REMOVED)
218 filter.addAction(InterpreterConstants.ACTION_INTERPRETER_ADDED);
219 filter.addAction(InterpreterConstants.ACTION_INTERPRETER_REMOVED)
    [all...]
  /external/sl4a/InterpreterForAndroid/src/com/googlecode/android_scripting/
InterpreterUninstaller.java 28 import com.googlecode.android_scripting.interpreter.InterpreterConstants;
64 mInterpreterRoot = InterpreterConstants.SDCARD_ROOT + packageName;
133 return preferences.getBoolean(InterpreterConstants.INSTALLED_PREFERENCE_KEY, false);
InterpreterInstaller.java 27 import com.googlecode.android_scripting.interpreter.InterpreterConstants;
166 mInterpreterRoot = InterpreterConstants.SDCARD_ROOT + packageName;
274 String out = mInterpreterRoot + InterpreterConstants.INTERPRETER_EXTRAS_ROOT;
280 String out = InterpreterConstants.SCRIPTS_ROOT;
301 return preferences.getBoolean(InterpreterConstants.INSTALLED_PREFERENCE_KEY, false);
  /external/sl4a/ScriptingLayer/src/com/googlecode/android_scripting/
ScriptStorageAdapter.java 21 import com.googlecode.android_scripting.interpreter.InterpreterConstants;
50 script = new File(InterpreterConstants.SCRIPTS_ROOT, script.getPath());
67 dir = new File(InterpreterConstants.SCRIPTS_ROOT);
  /external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/activity/
ScriptPicker.java 31 import com.googlecode.android_scripting.interpreter.InterpreterConstants;
47 private final File mBaseDir = new File(InterpreterConstants.SCRIPTS_ROOT);
ScriptManager.java 57 import com.googlecode.android_scripting.interpreter.InterpreterConstants;
86 private final File mBaseDir = new File(InterpreterConstants.SCRIPTS_ROOT);
  /external/sl4a/InterpreterForAndroid/src/com/googlecode/android_scripting/activity/
Main.java 40 import com.googlecode.android_scripting.interpreter.InterpreterConstants;
158 intent.setAction(InterpreterConstants.ACTION_INTERPRETER_ADDED);
160 intent.setAction(InterpreterConstants.ACTION_INTERPRETER_REMOVED);
199 editor.putBoolean(InterpreterConstants.INSTALLED_PREFERENCE_KEY, isInstalled);
206 mPreferences.getBoolean(InterpreterConstants.INSTALLED_PREFERENCE_KEY, false);
  /external/sl4a/ScriptingLayer/src/com/googlecode/android_scripting/interpreter/
InterpreterProcess.java 119 return InterpreterConstants.SDCARD_SL4A_ROOT;
  /external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/provider/
ScriptProvider.java 38 import com.googlecode.android_scripting.interpreter.InterpreterConstants;
149 if (description.startsWith(InterpreterConstants.SCRIPTS_ROOT)) {
150 description = description.replaceAll(InterpreterConstants.SCRIPTS_ROOT, "scripts/");
  /external/sl4a/Common/src/com/googlecode/android_scripting/
Process.java 19 import com.googlecode.android_scripting.interpreter.InterpreterConstants;
120 mLog = new File(String.format("%s/%s.log", InterpreterConstants.SDCARD_SL4A_ROOT, getName()));
  /external/sl4a/Common/src/com/googlecode/android_scripting/interpreter/html/
HtmlActivityTask.java 43 import com.googlecode.android_scripting.interpreter.InterpreterConstants;
73 private static final String BASE_URL = PREFIX + InterpreterConstants.SCRIPTS_ROOT;

Completed in 84 milliseconds