OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:recognizerintent
(Results
1 - 25
of
35
) sorted by null
1
2
/frameworks/base/docs/html/sdk/api_diff/8/changes/
android.speech.RecognizerIntent.html
10
android.speech.
RecognizerIntent
74
Class android.speech.<A HREF="../../../../reference/android/speech/
RecognizerIntent
.html" target="_top"><font size="+2"><code>
RecognizerIntent
</code></font></A>
86
<A NAME="android.speech.
RecognizerIntent
.getVoiceDetailsIntent_added(android.content.Context)"></A>
87
<nobr><code>Intent</code> <A HREF="../../../../reference/android/speech/
RecognizerIntent
.html#getVoiceDetailsIntent(android.content.Context)" target="_top"><code>getVoiceDetailsIntent</code></A>(<code>Context</code>)</nobr>
102
<A NAME="android.speech.
RecognizerIntent
.ACTION_GET_LANGUAGE_DETAILS"></A>
103
<nobr><code>String</code> <A HREF="../../../../reference/android/speech/
RecognizerIntent
.html#ACTION_GET_LANGUAGE_DETAILS" target="_top"><code>ACTION_GET_LANGUAGE_DETAILS</code></A></nobr>
109
<A NAME="android.speech.
RecognizerIntent
.DETAILS_META_DATA"></A>
110
<nobr><code>String</code> <A HREF="../../../../reference/android/speech/
RecognizerIntent
.html#DETAILS_META_DATA" target="_top"><code>DETAILS_META_DATA</code></A></nobr>
116
<A NAME="android.speech.
RecognizerIntent
.EXTRA_CALLING_PACKAGE"></A
[
all
...]
pkg_android.speech.html
120
<A NAME="
RecognizerIntent
"></A>
121
<nobr><A HREF="android.speech.
RecognizerIntent
.html">
RecognizerIntent
</A></nobr>
fields_index_additions.html
81
<nobr><A HREF="android.speech.
RecognizerIntent
.html#android.speech.
RecognizerIntent
.ACTION_GET_LANGUAGE_DETAILS" class="hiddenlink" target="rightframe">ACTION_GET_LANGUAGE_DETAILS</A>
242
<nobr><A HREF="android.speech.
RecognizerIntent
.html#android.speech.
RecognizerIntent
.DETAILS_META_DATA" class="hiddenlink" target="rightframe">DETAILS_META_DATA</A>
326
<nobr><A HREF="android.speech.
RecognizerIntent
.html#android.speech.
RecognizerIntent
.EXTRA_CALLING_PACKAGE" class="hiddenlink" target="rightframe">EXTRA_CALLING_PACKAGE</A>
340
<nobr><A HREF="android.speech.
RecognizerIntent
.html#android.speech.
RecognizerIntent
.EXTRA_LANGUAGE_PREFERENCE" class="hiddenlink" target="rightframe">EXTRA_LANGUAGE_PREFERENCE</A>
342
<nobr><A HREF="android.speech.
RecognizerIntent
.html#android.speech.
RecognizerIntent
.EXTRA_ONLY_RETURN_LANGUAGE_PREFERENCE" class="hiddenlink" target="rightframe">EXTRA_ONLY_RETURN_LA (…)
[
all
...]
fields_index_all.html
83
<nobr><A HREF="android.speech.
RecognizerIntent
.html#android.speech.
RecognizerIntent
.ACTION_GET_LANGUAGE_DETAILS" class="hiddenlink" target="rightframe">ACTION_GET_LANGUAGE_DETAILS</A>
268
<nobr><A HREF="android.speech.
RecognizerIntent
.html#android.speech.
RecognizerIntent
.DETAILS_META_DATA" class="hiddenlink" target="rightframe">DETAILS_META_DATA</A>
354
<nobr><A HREF="android.speech.
RecognizerIntent
.html#android.speech.
RecognizerIntent
.EXTRA_CALLING_PACKAGE" class="hiddenlink" target="rightframe">EXTRA_CALLING_PACKAGE</A>
368
<nobr><A HREF="android.speech.
RecognizerIntent
.html#android.speech.
RecognizerIntent
.EXTRA_LANGUAGE_PREFERENCE" class="hiddenlink" target="rightframe">EXTRA_LANGUAGE_PREFERENCE</A>
370
<nobr><A HREF="android.speech.
RecognizerIntent
.html#android.speech.
RecognizerIntent
.EXTRA_ONLY_RETURN_LANGUAGE_PREFERENCE" class="hiddenlink" target="rightframe">EXTRA_ONLY_RETURN_LA (…)
[
all
...]
alldiffs_index_additions.html
92
<nobr><A HREF="android.speech.
RecognizerIntent
.html#android.speech.
RecognizerIntent
.ACTION_GET_LANGUAGE_DETAILS" class="hiddenlink" target="rightframe">ACTION_GET_LANGUAGE_DETAILS</A>
410
<nobr><A HREF="android.speech.
RecognizerIntent
.html#android.speech.
RecognizerIntent
.DETAILS_META_DATA" class="hiddenlink" target="rightframe">DETAILS_META_DATA</A>
[
all
...]
alldiffs_index_all.html
100
<nobr><A HREF="android.speech.
RecognizerIntent
.html#android.speech.
RecognizerIntent
.ACTION_GET_LANGUAGE_DETAILS" class="hiddenlink" target="rightframe">ACTION_GET_LANGUAGE_DETAILS</A>
[
all
...]
/development/samples/ApiDemos/src/com/example/android/apis/app/
VoiceRecognition.java
26
import android.speech.
RecognizerIntent
;
63
new Intent(
RecognizerIntent
.ACTION_RECOGNIZE_SPEECH), 0);
85
Intent intent = new Intent(
RecognizerIntent
.ACTION_RECOGNIZE_SPEECH);
86
intent.putExtra(
RecognizerIntent
.EXTRA_LANGUAGE_MODEL,
87
RecognizerIntent
.LANGUAGE_MODEL_FREE_FORM);
88
intent.putExtra(
RecognizerIntent
.EXTRA_PROMPT, "Speech recognition demo");
100
RecognizerIntent
.EXTRA_RESULTS);
/frameworks/base/common/java/com/android/common/speech/
Recognition.java
23
* @see android.speech.
RecognizerIntent
29
* android.speech.
RecognizerIntent
#ACTION_GET_LANGUAGE_DETAILS
33
* android.speech.
RecognizerIntent
#EXTRA_LANGUAGE_PREFERENCE).
46
* android.speech.
RecognizerIntent
#ACTION_GET_LANGUAGE_DETAILS.
/frameworks/base/core/java/android/speech/
IRecognitionService.aidl
38
* @param
recognizerIntent
the intent from which the invocation occurred. Additionally,
40
* client. For more information see {@link
RecognizerIntent
}.
43
void startListening(in Intent
recognizerIntent
, in IRecognitionListener listener);
SpeechRecognizer.java
238
* @param
recognizerIntent
contains parameters for the recognition to be performed. The intent
239
* may also contain optional extras, see {@link
RecognizerIntent
}. If these values are
242
public void startListening(final Intent
recognizerIntent
) {
243
if (
recognizerIntent
== null) {
275
putMessage(Message.obtain(mHandler, MSG_START,
recognizerIntent
));
283
* using the intent extras defined in {@link
RecognizerIntent
}, in which case you may sometimes
319
private void handleStartListening(Intent
recognizerIntent
) {
324
mService.startListening(
recognizerIntent
, mListener);
RecognitionService.java
166
* @param
recognizerIntent
contains parameters for the recognition to be performed. The intent
167
* may also contain optional extras, see {@link
RecognizerIntent
}. If these values are
171
protected abstract void onStartListening(Intent
recognizerIntent
, Callback listener);
304
public void startListening(Intent
recognizerIntent
, IRecognitionListener listener) {
309
recognizerIntent
, listener)));
RecognitionListener.java
83
* {@link
RecognizerIntent
#EXTRA_PARTIAL_RESULTS}
RecognizerIntent.java
34
public class
RecognizerIntent
{
44
private
RecognizerIntent
() {
/frameworks/base/docs/html/resources/articles/
speech-input.jd
40
new Intent(
RecognizerIntent
.ACTION_RECOGNIZE_SPEECH), 0);
61
a {@link android.speech.
RecognizerIntent
}. Google's Voice Search application,
63
many Android devices, responds to a <em>
RecognizerIntent
</em> by displaying the
79
android.speech.
RecognizerIntent
#LANGUAGE_MODEL_FREE_FORM free_form} for
80
dictation, or {@link android.speech.
RecognizerIntent
#LANGUAGE_MODEL_WEB_SEARCH
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
WebCorpus.java
28
import android.speech.
RecognizerIntent
;
121
Intent intent = new Intent(
RecognizerIntent
.ACTION_WEB_SEARCH);
123
intent.putExtra(
RecognizerIntent
.EXTRA_LANGUAGE_MODEL,
124
RecognizerIntent
.LANGUAGE_MODEL_WEB_SEARCH);
SearchableSource.java
38
import android.speech.
RecognizerIntent
;
302
Intent voiceIntent = new Intent(
RecognizerIntent
.ACTION_RECOGNIZE_SPEECH);
308
languageModel =
RecognizerIntent
.LANGUAGE_MODEL_FREE_FORM;
317
voiceIntent.putExtra(
RecognizerIntent
.EXTRA_LANGUAGE_MODEL, languageModel);
318
voiceIntent.putExtra(
RecognizerIntent
.EXTRA_PROMPT, prompt);
319
voiceIntent.putExtra(
RecognizerIntent
.EXTRA_LANGUAGE, language);
320
voiceIntent.putExtra(
RecognizerIntent
.EXTRA_MAX_RESULTS, maxResults);
325
voiceIntent.putExtra(
RecognizerIntent
.EXTRA_RESULTS_PENDINGINTENT, pending);
326
voiceIntent.putExtra(
RecognizerIntent
.EXTRA_RESULTS_PENDINGINTENT_BUNDLE, queryExtras);
Launcher.java
25
import android.speech.
RecognizerIntent
;
69
Intent intent = new Intent(
RecognizerIntent
.ACTION_WEB_SEARCH);
/development/samples/VoiceRecognitionService/src/com/example/android/voicerecognitionservice/
VoiceRecognitionService.java
43
protected void onStartListening(Intent
recognizerIntent
, Callback listener) {
/packages/apps/Browser/src/com/android/browser/
TitleBar.java
34
import android.speech.
RecognizerIntent
;
117
mVoiceSearchIntent = new Intent(
RecognizerIntent
.ACTION_WEB_SEARCH);
118
mVoiceSearchIntent.putExtra(
RecognizerIntent
.EXTRA_LANGUAGE_MODEL,
119
RecognizerIntent
.LANGUAGE_MODEL_WEB_SEARCH);
/frameworks/base/docs/html/sdk/
android-1.5-highlights.jd
191
android.speech.
RecognizerIntent
RecognizerIntent
}.</li>
android-1.5.jd
248
android.speech.
RecognizerIntent
RecognizerIntent
}.</li>
/frameworks/base/core/java/android/app/
SearchDialog.java
43
import android.speech.
RecognizerIntent
;
156
mVoiceWebSearchIntent = new Intent(
RecognizerIntent
.ACTION_WEB_SEARCH);
158
mVoiceWebSearchIntent.putExtra(
RecognizerIntent
.EXTRA_LANGUAGE_MODEL,
159
RecognizerIntent
.LANGUAGE_MODEL_WEB_SEARCH);
161
mVoiceAppSearchIntent = new Intent(
RecognizerIntent
.ACTION_RECOGNIZE_SPEECH);
[
all
...]
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/voice/
VoiceInput.java
30
import android.speech.
RecognizerIntent
;
304
intent.putExtra(
RecognizerIntent
.EXTRA_LANGUAGE_MODEL, "");
307
intent.putExtra(
RecognizerIntent
.EXTRA_MAX_RESULTS,
449
Intent intent = new Intent(
RecognizerIntent
.ACTION_RECOGNIZE_SPEECH);
/frameworks/base/docs/html/sdk/api_diff/8/
missingSinces.txt
159
NO DOC BLOCK: android.speech.
RecognizerIntent
Method getVoiceDetailsIntent(android.content.Context)
274
NO DOC BLOCK: android.speech.
RecognizerIntent
Field ACTION_GET_LANGUAGE_DETAILS
317
NO DOC BLOCK: android.speech.
RecognizerIntent
Field DETAILS_META_DATA
346
NO DOC BLOCK: android.speech.
RecognizerIntent
Field EXTRA_CALLING_PACKAGE
353
NO DOC BLOCK: android.speech.
RecognizerIntent
Field EXTRA_LANGUAGE_PREFERENCE
354
NO DOC BLOCK: android.speech.
RecognizerIntent
Field EXTRA_ONLY_RETURN_LANGUAGE_PREFERENCE
355
NO DOC BLOCK: android.speech.
RecognizerIntent
Field EXTRA_PARTIAL_RESULTS
360
NO DOC BLOCK: android.speech.
RecognizerIntent
Field EXTRA_SPEECH_INPUT_COMPLETE_SILENCE_LENGTH_MILLIS
361
NO DOC BLOCK: android.speech.
RecognizerIntent
Field EXTRA_SPEECH_INPUT_MINIMUM_LENGTH_MILLIS
362
NO DOC BLOCK: android.speech.
RecognizerIntent
Field EXTRA_SPEECH_INPUT_POSSIBLY_COMPLETE_SILENCE_LENGTH_MILLI
[
all
...]
user_comments_for_7_to_8.xml
[
all
...]
Completed in 1895 milliseconds
1
2