Home | History | Annotate | Download | only in base

Lines Matching refs:result

10  * A simple single-argument callback to handle the result of a computation.
12 * @param <T> The type of the computation's result.
16 * Invoked with the result of a computation.
18 public abstract void onResult(T result);
22 private void onResultFromNative(Object result) {
23 onResult((T) result);
28 private void onResultFromNative(boolean result) {
29 onResult((T) Boolean.valueOf(result));
34 private void onResultFromNative(int result) {
35 onResult((T) Integer.valueOf(result));