Searched defs:selections (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/tests/VoiceInteraction/src/com/android/test/voiceinteraction/
H A DStartVoiceInteractionActivity.java189 public void onPickOptionResult(boolean finished, Option[] selections, Bundle result) { argument
190 Log.i(TAG, "Pick result: finished=" + finished + " selections=" + selections
198 for (int i=0; i<selections.length; i++) {
202 sb.append(selections[i].getLabel());
H A DTestInteractionActivity.java242 public void onPickOptionResult(boolean finished, Option[] selections, Bundle result) { argument
243 Log.i(TAG, "Pick result: finished=" + finished + " selections=" + selections
251 for (int i=0; i<selections.length; i++) {
255 sb.append(selections[i].getLabel());
/frameworks/base/core/java/android/app/
H A DVoiceInteractor.java548 * which case {@code selections} contains the final result. If false, this request is
550 * @param selections Either a single {@link Option} or one of several {@link Option}s the
554 public void onPickOptionResult(boolean finished, Option[] selections, Bundle result) { argument
/frameworks/base/core/java/android/service/voice/
H A DVoiceInteractionSession.java534 VoiceInteractor.PickOptionRequest.Option[] selections, Bundle result) {
537 + " finished=" + finished + " selections=" + selections
542 mCallback.deliverPickOptionResult(mInterface, finished, selections, result);
555 VoiceInteractor.PickOptionRequest.Option[] selections, Bundle result) {
556 sendPickOptionResult(false, selections, result);
567 VoiceInteractor.PickOptionRequest.Option[] selections, Bundle result) {
568 sendPickOptionResult(true, selections, result);
533 sendPickOptionResult(boolean finished, VoiceInteractor.PickOptionRequest.Option[] selections, Bundle result) argument
554 sendIntermediatePickOptionResult( VoiceInteractor.PickOptionRequest.Option[] selections, Bundle result) argument
566 sendPickOptionResult( VoiceInteractor.PickOptionRequest.Option[] selections, Bundle result) argument
/frameworks/base/core/java/com/android/internal/app/
H A DResolverActivity.java2028 public void onPickOptionResult(boolean finished, Option[] selections, Bundle result) { argument
2029 super.onPickOptionResult(finished, selections, result);
2030 if (selections.length != 1) {
2038 final TargetInfo ti = ra.mAdapter.getItem(selections[0].getIndex());

Completed in 169 milliseconds