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

  /packages/apps/VoiceDialer/src/com/android/voicedialer/
RecognizerEngine.java 22 import android.speech.srec.Recognizer;
39 * <li>Create and configure a {@link Recognizer}.
41 * <li>Start the {@link Recognizer} running using data already being
43 * <li>Wait for the {@link Recognizer} to complete.
68 protected final String SREC_DIR = Recognizer.getConfigDir(null);
75 protected Recognizer mSrec;
76 protected Recognizer.Grammar mSrecGrammar;
97 * <li>Create a Recognizer.
99 * <li>Start the Recognizer.
100 * <li>Feed the Recognizer audio until it provides a result
    [all...]
PhoneTypeChoiceRecognizerEngine.java 20 import android.speech.srec.Recognizer;
59 String conf = mSrec.getResult(result, Recognizer.KEY_CONFIDENCE);
60 String literal = mSrec.getResult(result, Recognizer.KEY_LITERAL);
61 String semantic = mSrec.getResult(result, Recognizer.KEY_MEANING);
69 String conf = mSrec.getResult(0, Recognizer.KEY_CONFIDENCE);
70 String literal = mSrec.getResult(0, Recognizer.KEY_LITERAL);
71 String semantic = mSrec.getResult(0, Recognizer.KEY_MEANING);
CommandRecognizerEngine.java 27 import android.speech.srec.Recognizer;
50 * <li>onRecognitionSuccess is called when we get results from the recognizer,
217 Log.e(TAG, "Cannot load all contacts to voice recognizer, loaded " +
337 // Unfortuantely, the recognizer has a fixed limit on the length of
384 * {@link Recognizer.Grammar} can digest.
    [all...]
  /external/srec/srec/Recognizer/
Android.mk 10 src/Recognizer.c \
24 $(ASR_ROOT_DIR)/srec/Recognizer/include \
  /external/srec/srec/test/SRecTest/
Android.mk 24 $(ASR_ROOT_DIR)/srec/Recognizer/include \
  /external/srec/srec/test/SRecTestAudio/
Android.mk 24 $(ASR_ROOT_DIR)/srec/Recognizer/include \
  /external/srec/tools/make_g2g/
Android.mk 20 $(ASR_ROOT_DIR)/srec/Recognizer/include \
  /external/srec/tools/parseStringTest/
Android.mk 20 $(ASR_ROOT_DIR)/srec/Recognizer/include \
  /external/srec/tools/test_g2g/
Android.mk 21 $(ASR_ROOT_DIR)/srec/Recognizer/include \
  /external/srec/srec/AcousticModels/
Android.mk 22 $(ASR_ROOT_DIR)/srec/Recognizer/include \
  /external/srec/srec/AcousticState/
Android.mk 22 $(ASR_ROOT_DIR)/srec/Recognizer/include \
  /external/srec/srec/Grammar/
Android.mk 22 $(ASR_ROOT_DIR)/srec/Recognizer/include \
  /external/srec/srec/Nametag/
Android.mk 24 $(ASR_ROOT_DIR)/srec/Recognizer/include \
  /external/srec/srec/Semproc/
Android.mk 30 $(ASR_ROOT_DIR)/srec/Recognizer/include \
  /external/srec/srec_jni/
Android.mk 25 $(ASR_ROOT_DIR)/srec/Recognizer/include \
  /external/srec/tools/grxmlcompile/
Android.mk 35 $(ASR_ROOT_DIR)/srec/Recognizer/include \
  /frameworks/base/core/java/android/speech/srec/
Recognizer.java 3 * Recognizer.java
31 * Simple, synchronous speech recognizer, using the Nuance SREC package.
35 * <li>Create a <code>Recognizer</code>.
36 * <li>Create a <code>Recognizer.Grammar</code>.
37 * <li>Setup the <code>Recognizer.Grammar</code>.
38 * <li>Reset the <code>Recognizer.Grammar</code> slots, if needed.
39 * <li>Fill the <code>Recognizer.Grammar</code> slots, if needed.
40 * <li>Compile the <code>Recognizer.Grammar</code>, if needed.
41 * <li>Save the filled <code>Recognizer.Grammar</code>, if needed.
42 * <li>Start the <code>Recognizer</code>
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
recognizers.rb 57 recognizer's state. These attributes are externalized from the recognizer itself
58 so that recognizer delegation (which occurs when you import other grammars into
66 a flag indicating whether or not the recognizer is in error recovery mode
127 =begin rdoc ANTLR3::Recognizer
174 =begin rdoc ANTLR3::Recognizer
176 = Recognizer
178 As the base class of all ANTLR-generated recognizers, Recognizer provides
184 recognizer base classes, providing the implementation of the grammar rules
185 itself. this group of classes to implement necessary tasks. Recognizer
    [all...]
tree.rb 60 tailors the functionality provided by Recognizer to the task of tree-pattern
76 a program. However, ANTLR also provides a means to create a recognizer which is
88 Like Parser, the class does not stray too far from the Recognizer API.
104 class TreeParser < Recognizer
669 trees. Using an adaptor object permits a single recognizer to work with any
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRBaseRecognizer.h 55 ANTLRRecognizerSharedState *state; // the state of this recognizer. Might be shared with other recognizers, e.g. in grammar import scenarios.
96 // reset this recognizer - might be extended by codegeneration/grammar
103 * a simple method to ask the recognizer to tell me what the current
161 Recognizer:(NSString *)recognizerClassName;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRBaseRecognizer.h 55 ANTLRRecognizerSharedState *state; // the state of this recognizer. Might be shared with other recognizers, e.g. in grammar import scenarios.
96 // reset this recognizer - might be extended by codegeneration/grammar
103 * a simple method to ask the recognizer to tell me what the current
161 Recognizer:(NSString *)recognizerClassName;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRBaseRecognizer.h 55 ANTLRRecognizerSharedState *state; // the state of this recognizer. Might be shared with other recognizers, e.g. in grammar import scenarios.
96 // reset this recognizer - might be extended by codegeneration/grammar
103 * a simple method to ask the recognizer to tell me what the current
161 Recognizer:(NSString *)recognizerClassName;
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRBaseRecognizer.h 56 __strong ANTLRRecognizerSharedState *state; // the state of this recognizer. Might be shared with other recognizers, e.g. in grammar import scenarios.
88 // reset this recognizer - might be extended by codegeneration/grammar
95 * a simple method to ask the recognizer to tell me what the current
153 Recognizer:(NSString *)recognizerClassName;
  /packages/apps/SpeechRecorder/src/com/android/speechrecorder/
SpeechRecorderActivity.java 22 import android.speech.srec.Recognizer;
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
Antlr.Runtime.pas 479 /// The set of fields needed by an abstract recognizer to recognize input
558 /// Did the recognizer encounter a syntax error? Track how many.
685 /// A generic recognizer that can handle recognizers generated from
    [all...]

Completed in 4567 milliseconds