HomeSort by relevance Sort by last modified time
    Searched refs:RecognizerIntent (Results 1 - 25 of 32) sorted by null

1 2

  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/
SpeechRecognitionFacade.java 20 import android.speech.RecognizerIntent;
52 new Intent(android.speech.RecognizerIntent.ACTION_RECOGNIZE_SPEECH);
56 recognitionIntent.putExtra(RecognizerIntent.EXTRA_LANGUAGE, "");
59 recognitionIntent.putExtra(RecognizerIntent.EXTRA_LANGUAGE_MODEL, "");
62 recognitionIntent.putExtra(RecognizerIntent.EXTRA_PROMPT, "");
68 if (data.hasExtra(android.speech.RecognizerIntent.EXTRA_RESULTS)) {
72 data.getStringArrayListExtra(android.speech.RecognizerIntent.EXTRA_RESULTS);
  /development/samples/ApiDemos/src/com/example/android/apis/app/
VoiceRecognition.java 29 import android.speech.RecognizerIntent;
80 new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH), 0);
107 Intent intent = new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH);
110 intent.putExtra(RecognizerIntent.EXTRA_CALLING_PACKAGE, getClass().getPackage().getName());
113 intent.putExtra(RecognizerIntent.EXTRA_PROMPT, "Speech recognition demo");
116 intent.putExtra(RecognizerIntent.EXTRA_LANGUAGE_MODEL,
117 RecognizerIntent.LANGUAGE_MODEL_FREE_FORM);
121 intent.putExtra(RecognizerIntent.EXTRA_MAX_RESULTS, 5);
127 intent.putExtra(RecognizerIntent.EXTRA_LANGUAGE,
142 RecognizerIntent.EXTRA_RESULTS)
    [all...]
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
VoiceSearch.java 27 import android.speech.RecognizerIntent;
52 return new Intent(RecognizerIntent.ACTION_WEB_SEARCH);
70 intent.putExtra(RecognizerIntent.EXTRA_LANGUAGE_MODEL,
71 RecognizerIntent.LANGUAGE_MODEL_WEB_SEARCH);
SearchWidgetProvider.java 36 import android.speech.RecognizerIntent;
  /frameworks/base/core/java/android/speech/
RecognizerIntent.java 34 public class RecognizerIntent {
44 private RecognizerIntent() {
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
MaterialSearchViewController.java 27 import android.speech.RecognizerIntent;
78 final Intent voiceIntent = new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH);
288 final Intent intent = new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH);
289 intent.putExtra(RecognizerIntent.EXTRA_LANGUAGE_MODEL,
290 RecognizerIntent.LANGUAGE_MODEL_FREE_FORM);
291 intent.putExtra(RecognizerIntent.EXTRA_LANGUAGE, Locale.getDefault().getLanguage());
AbstractActivityController.java 49 import android.speech.RecognizerIntent;
    [all...]
  /packages/services/Car/service/src/com/android/car/
CarInputService.java 23 import android.speech.RecognizerIntent;
185 new Intent(RecognizerIntent.ACTION_VOICE_SEARCH_HANDS_FREE);
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/app/
SearchFragment.java 22 import android.speech.RecognizerIntent;
575 * Sets the text of the search query based on the {@link RecognizerIntent#EXTRA_RESULTS} in
583 ArrayList<String> matches = intent.getStringArrayListExtra(RecognizerIntent.EXTRA_RESULTS);
591 * Built from the base {@link RecognizerIntent#ACTION_RECOGNIZE_SPEECH} plus
595 * <li>{@link RecognizerIntent#EXTRA_LANGUAGE_MODEL} set to
596 * {@link RecognizerIntent#LANGUAGE_MODEL_FREE_FORM}</li>
597 * <li>{@link RecognizerIntent#EXTRA_PARTIAL_RESULTS} set to true</li>
598 * <li>{@link RecognizerIntent#EXTRA_PROMPT} set to the search bar hint text</li>
605 Intent recognizerIntent = new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH)
    [all...]
SearchSupportFragment.java 24 import android.speech.RecognizerIntent;
577 * Sets the text of the search query based on the {@link RecognizerIntent#EXTRA_RESULTS} in
585 ArrayList<String> matches = intent.getStringArrayListExtra(RecognizerIntent.EXTRA_RESULTS);
593 * Built from the base {@link RecognizerIntent#ACTION_RECOGNIZE_SPEECH} plus
597 * <li>{@link RecognizerIntent#EXTRA_LANGUAGE_MODEL} set to
598 * {@link RecognizerIntent#LANGUAGE_MODEL_FREE_FORM}</li>
599 * <li>{@link RecognizerIntent#EXTRA_PARTIAL_RESULTS} set to true</li>
600 * <li>{@link RecognizerIntent#EXTRA_PROMPT} set to the search bar hint text</li>
607 Intent recognizerIntent = new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH)
    [all...]
  /frameworks/base/core/java/android/widget/
SearchView.java 41 import android.speech.RecognizerIntent;
367 mVoiceWebSearchIntent = new Intent(RecognizerIntent.ACTION_WEB_SEARCH);
369 mVoiceWebSearchIntent.putExtra(RecognizerIntent.EXTRA_LANGUAGE_MODEL,
370 RecognizerIntent.LANGUAGE_MODEL_WEB_SEARCH);
372 mVoiceAppSearchIntent = new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH);
    [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/widget/
SearchView.java 43 import android.speech.RecognizerIntent;
384 mVoiceWebSearchIntent = new Intent(RecognizerIntent.ACTION_WEB_SEARCH);
386 mVoiceWebSearchIntent.putExtra(RecognizerIntent.EXTRA_LANGUAGE_MODEL,
387 RecognizerIntent.LANGUAGE_MODEL_WEB_SEARCH);
389 mVoiceAppSearchIntent = new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH);
    [all...]
  /frameworks/base/core/java/android/app/
SearchDialog.java 32 import android.speech.RecognizerIntent;
128 mVoiceWebSearchIntent = new Intent(RecognizerIntent.ACTION_WEB_SEARCH);
130 mVoiceWebSearchIntent.putExtra(RecognizerIntent.EXTRA_LANGUAGE_MODEL,
131 RecognizerIntent.LANGUAGE_MODEL_WEB_SEARCH);
133 mVoiceAppSearchIntent = new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH);
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
SearchBar.java 30 import android.speech.RecognizerIntent;
618 Intent recognizerIntent = new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH);
620 recognizerIntent.putExtra(RecognizerIntent.EXTRA_LANGUAGE_MODEL,
621 RecognizerIntent.LANGUAGE_MODEL_FREE_FORM);
622 recognizerIntent.putExtra(RecognizerIntent.EXTRA_PARTIAL_RESULTS, true);
741 mSpeechRecognizer.startListening(recognizerIntent);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/managedprovisioning/
IntentFiltersTestHelper.java 40 import android.speech.RecognizerIntent;
226 new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH)));
  /frameworks/base/services/core/java/com/android/server/media/
MediaSessionService.java 57 import android.speech.RecognizerIntent;
    [all...]
  /packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/
CrossProfileIntentFiltersHelper.java 24 import static android.speech.RecognizerIntent.ACTION_RECOGNIZE_SPEECH;
  /packages/apps/Dialer/src/com/android/dialer/
DialtactsActivity.java 32 import android.speech.RecognizerIntent;
641 startActivityForResult(new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH),
704 RecognizerIntent.EXTRA_RESULTS);
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
Launcher.java 68 import android.speech.RecognizerIntent;
    [all...]
  /frameworks/base/services/core/java/com/android/server/policy/
PhoneWindowManager.java 108 import android.speech.RecognizerIntent;
    [all...]
  /external/libgdx/backends/gdx-backend-android/libs/
android-4.4.jar 
  /external/robolectric/v1/lib/main/
android.jar 
  /prebuilts/sdk/14/
android.jar 
  /prebuilts/sdk/17/
android.jar 
  /prebuilts/sdk/18/
android.jar 

Completed in 1722 milliseconds

1 2