OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:interpreterName
(Results
1 - 5
of
5
) sorted by null
/external/sl4a/Utils/src/com/googlecode/android_scripting/interpreter/
InterpreterUtils.java
33
public static File getInterpreterRoot(Context context, String
interpreterName
) {
34
return new File(getInterpreterRoot(context),
interpreterName
);
/external/sl4a/ScriptingLayer/src/com/googlecode/android_scripting/
ScriptLauncher.java
39
String
interpreterName
;
40
interpreterName
= intent.getStringExtra(Constants.EXTRA_INTERPRETER_NAME);
41
interpreter = config.getInterpreterByName(
interpreterName
);
/external/sl4a/Common/src/com/googlecode/android_scripting/
IntentBuilders.java
78
* @param
interpreterName
82
public static Intent buildStartInterpreterIntent(String
interpreterName
) {
87
intent.putExtra(Constants.EXTRA_INTERPRETER_NAME,
interpreterName
);
/external/sl4a/Common/src/com/googlecode/android_scripting/interpreter/
InterpreterConfiguration.java
290
public Interpreter getInterpreterByName(String
interpreterName
) {
292
if (i.getName().equals(
interpreterName
)) {
/external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/activity/
InterpreterManager.java
122
for (String
interpreterName
: mFeaturedInterpreters) {
123
installMenu.add(Menu.NONE, i++, Menu.NONE,
interpreterName
);
Completed in 2141 milliseconds