Home
last modified time | relevance | path

Searched refs:EXTRA_RESULT (Results 1 – 2 of 2) sorted by relevance

/external/sl4a/Common/src/com/googlecode/android_scripting/facade/
DActivityResultFacade.java38 + "startActivityForResult(), the resulting intent will contain " + Constants.EXTRA_RESULT
57 mResult.putExtra(Constants.EXTRA_RESULT, resultValue.booleanValue()); in setResultBoolean()
69 mResult.putExtra(Constants.EXTRA_RESULT, resultValue.byteValue()); in setResultByte()
81 mResult.putExtra(Constants.EXTRA_RESULT, resultValue.shortValue()); in setResultShort()
93 mResult.putExtra(Constants.EXTRA_RESULT, resultValue.charValue()); in setResultChar()
105 mResult.putExtra(Constants.EXTRA_RESULT, resultValue.intValue()); in setResultInteger()
117 mResult.putExtra(Constants.EXTRA_RESULT, resultValue.longValue()); in setResultLong()
129 mResult.putExtra(Constants.EXTRA_RESULT, resultValue.floatValue()); in setResultFloat()
141 mResult.putExtra(Constants.EXTRA_RESULT, resultValue.doubleValue()); in setResultDouble()
153 mResult.putExtra(Constants.EXTRA_RESULT, resultValue); in setResultString()
[all …]
/external/sl4a/Common/src/com/googlecode/android_scripting/
DConstants.java49 public static final String EXTRA_RESULT = "SCRIPT_RESULT"; field