/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/ |
ANTLRDFA.h | 42 ANTLRBaseRecognizer *recognizer; variable 47 @property (retain, getter=getRecognizer,setter=setRecognizer:) ANTLRBaseRecognizer *recognizer; variable
|
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/Ruby/lib/antlr3/ |
error.rb | 52 recognizer is in backtracking mode (i.e. r.state.backtracking > 0) 53 and the decision path the recognizer is currently attempting 58 - used to inform the recognizer that it needs to rewind 93 # Better to just say the recognizer had a problem and then let the parser 100 to the recognizer by the rules of a grammar and an input symbol which failed to 212 The recognizer expected to match a symbol <tt>x</tt> at the current input 253 The recognizer expected to match some symbol, but it sees a different symbol. 254 The symbol it sees is actually what the recognizer expected to match next. 318 A recognizer expected to match an input symbol (either a character value or 343 A recognizer expects the current input symbol to be a member of a set o [all...] |
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...] |
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/C/ |
C.stg | 73 /** The overall file structure of a recognizer; stores methods for rules 82 recognizer, 202 #undef RECOGNIZER 239 #define RECOGNIZER LEXER->rec 240 #define LEXSTATE RECOGNIZER->state 264 #define CONSTRUCTEX() RECOGNIZER->exConstruct(RECOGNIZER) 269 #define MEMOIZE(ri,si) RECOGNIZER->memoize(RECOGNIZER, ri, si) 270 #define HAVEPARSEDRULE(r) RECOGNIZER->alreadyParsedRule(RECOGNIZER, r [all...] |
/development/samples/ApiDemos/src/com/example/android/apis/app/ |
VoiceRecognition.java | 85 speakButton.setText("Recognizer not present"); 115 // Given an hint to the recognizer about what the user is going to say 140 // Fill the list view with the strings the recognizer thought it could have heard 172 * Handles the response of the broadcast request about the recognizer supported languages.
|
/development/samples/VoiceRecognitionService/res/xml/ |
preferences.xml | 21 this sample recognizer. If you choose "letters", you'll get letters
|
/development/samples/VoiceRecognitionService/src/com/example/android/voicerecognitionservice/ |
VoiceRecognitionSettings.java | 23 * A settings activity for the sample voice recognizer.
|
/external/antlr/antlr-3.4/runtime/C/include/ |
antlr3exception.h | 3 * by a recognizer when errors are found/predicted. 39 /** Indicates that the recognizer received a token 48 /** Indicates that the recognizer was expecting one token and found a 57 /** Recognizer could not find a valid alternative from the input
|
/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/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;
|
ANTLRDFA.h | 42 __strong ANTLRBaseRecognizer *recognizer; variable 79 @property (retain, getter=getRecognizer,setter=setRecognizer:) ANTLRBaseRecognizer *recognizer; variable
|
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/ |
DFA.pm | 49 # Which recognizer encloses this DFA? Needed to check backtracking 50 has 'recognizer' => ( 141 if ($self->recognizer->state->backtracking > 0) { 142 $self->recognizer->state->failed = 1;
|
/external/antlr/antlr-3.4/runtime/Python/ |
ChangeLog | 3 * PythonTarget.java, dfa.py, exceptions.py, recognizer.py, streams.py:
|
/external/icu/icu4c/source/i18n/ |
csrecog.h | 27 * assumes just one name per recognizer.
|
/external/antlr/antlr-3.4/runtime/Python/antlr3/ |
dfa.py | 48 recognizer, decisionNumber, 51 ## Which recognizer encloses this DFA? Needed to check backtracking 52 self.recognizer = recognizer 153 if self.recognizer._state.backtracking > 0:
|
/external/antlr/antlr-3.4/runtime/C/src/ |
antlr3lexer.c | 6 * a lexer interface. It constructs a base recognizer with default 8 * default implementation of base recognizer. 62 static void * getCurrentInputSymbol (pANTLR3_BASE_RECOGNIZER recognizer, pANTLR3_INT_STREAM istream); 63 static void * getMissingSymbol (pANTLR3_BASE_RECOGNIZER recognizer, pANTLR3_INT_STREAM istream, pANTLR3_EXCEPTION e, 86 /* Now we need to create the base recognizer 413 // Indicate this recognizer had an error while processing. 427 displayRecognitionError (pANTLR3_BASE_RECOGNIZER recognizer, pANTLR3_UINT8 * tokenNames) 433 lexer = (pANTLR3_LEXER)(recognizer->super); 448 ANTLR3_FPRINTF(stderr, "%d) ", recognizer->state->exception->line); 720 * base implementation in the base recognizer. [all...] |
/frameworks/base/core/java/android/speech/ |
RecognizerIntent.java | 36 * The extra key used in an intent to the speech recognizer for voice search. Not 50 * speech recognizer. The results will be returned via activity results (in 88 * speech recognizer, and either display a web search result or trigger 122 * visual attention or touch input. It will send it through a speech recognizer, 165 * depending on the recognizer implementation, these values may have no effect. 177 * Additionally, depending on the recognizer implementation, these values may have no effect. 190 * Additionally, depending on the recognizer implementation, these values may have no effect. 196 * Informs the recognizer which speech model to prefer when performing 197 * {@link #ACTION_RECOGNIZE_SPEECH}. The recognizer uses this 224 * recognizer to perform speech recognition in a language different than the one set in th [all...] |
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/ |
DebugEventSocketProxy.cs | 63 protected BaseRecognizer recognizer; field in class:Antlr.Runtime.Debug.DebugEventSocketProxy 66 * Almost certainly the recognizer will have adaptor set, but 73 public DebugEventSocketProxy(BaseRecognizer recognizer, ITreeAdaptor adaptor) : 74 this(recognizer, DefaultDebuggerPort, adaptor) { 77 public DebugEventSocketProxy(BaseRecognizer recognizer, int port, ITreeAdaptor adaptor) { 78 this.grammarFileName = recognizer.GrammarFileName;
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/ |
DebugEventSocketProxy.cs | 63 protected BaseRecognizer recognizer; field in class:Antlr.Runtime.Debug.DebugEventSocketProxy 66 * Almost certainly the recognizer will have adaptor set, but 73 public DebugEventSocketProxy( BaseRecognizer recognizer, ITreeAdaptor adaptor ) : 74 this( recognizer, DefaultDebuggerPort, adaptor ) 78 public DebugEventSocketProxy( BaseRecognizer recognizer, int port, ITreeAdaptor adaptor ) 80 this.grammarFileName = recognizer.GrammarFileName;
|
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/ |
DebugEventSocketProxy.java | 55 protected BaseRecognizer recognizer; field in class:DebugEventSocketProxy 57 /** Almost certainly the recognizer will have adaptor set, but 63 public DebugEventSocketProxy(BaseRecognizer recognizer, TreeAdaptor adaptor) { 64 this(recognizer, DEFAULT_DEBUGGER_PORT, adaptor); 67 public DebugEventSocketProxy(BaseRecognizer recognizer, int port, TreeAdaptor adaptor) { 68 this.grammarFileName = recognizer.getGrammarFileName();
|
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/ |
RecognizerSharedState.as | 3 /** The set of fields needed by an abstract recognizer to recognize input 37 /** Did the recognizer encounter a syntax error? Track how many. */
|
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/ |
RecognizerSharedState.js | 1 /** The set of fields needed by an abstract recognizer to recognize input 36 /** Did the recognizer encounter a syntax error? Track how many. */
|
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/ |
SpeechRecognitionFacade.java | 50 @RpcParameter(name = "language", description = "language override to inform the recognizer that it should expect speech in a language different than the one set in the java.util.Locale.getDefault()") @RpcOptional final String language, 51 @RpcParameter(name = "languageModel", description = "informs the recognizer which speech model to prefer (see android.speech.RecognizeIntent)") @RpcOptional final String languageModel) {
|