Searched defs:RecognitionException (Results 1 - 25 of 25) sorted by relevance

/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
H A DRecognitionException.js31 org.antlr.runtime.RecognitionException = function(input) {
32 org.antlr.runtime.RecognitionException.superclass.constructor.call(this);
57 org.antlr.lang.extend(org.antlr.runtime.RecognitionException, Error,
58 /** @lends org.antlr.runtime.RecognitionException.prototype */
98 name: "org.antlr.runtime.RecognitionException",
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DRecognitionException.as63 public class RecognitionException extends Error {
99 public function RecognitionException(input:IntStream = null) { function
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
H A DRecognitionException.pm1 package ANTLR::Runtime::RecognitionException;
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DRecognitionException.java62 public class RecognitionException extends Exception { class in inherits:Exception
99 public RecognitionException() { method in class:RecognitionException
102 public RecognitionException(IntStream input) { method in class:RecognitionException
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
H A DParseTreeBuilder.cs130 public override void RecognitionException( RecognitionException e ) method in class:Antlr.Runtime.Debug.ParseTreeBuilder
H A DBlankDebugEventListener.cs107 public virtual void RecognitionException( RecognitionException e ) method in class:Antlr.Runtime.Debug.BlankDebugEventListener
H A DDebugEventHub.cs221 public virtual void RecognitionException( RecognitionException e ) method in class:Antlr.Runtime.Debug.DebugEventHub
226 listener.RecognitionException( e );
H A DDebugEventRepeater.cs124 public virtual void RecognitionException( RecognitionException e ) method in class:Antlr.Runtime.Debug.DebugEventRepeater
126 _listener.RecognitionException( e );
H A DDebugEventSocketProxy.cs253 public override void RecognitionException( RecognitionException e ) method in class:Antlr.Runtime.Debug.DebugEventSocketProxy
H A DProfiler.cs366 public override void RecognitionException(RecognitionException e) method in class:Antlr.Runtime.Debug.Profiler
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DRecognitionException.cs75 public class RecognitionException : Exception { class in namespace:Antlr.Runtime
123 public RecognitionException() method in class:Antlr.Runtime.RecognitionException
127 public RecognitionException(IIntStream input) method in class:Antlr.Runtime.RecognitionException
131 public RecognitionException(string message) method in class:Antlr.Runtime.RecognitionException
135 public RecognitionException(string message, IIntStream input) method in class:Antlr.Runtime.RecognitionException
139 public RecognitionException(string message, Exception innerException) method in class:Antlr.Runtime.RecognitionException
143 public RecognitionException(string message, IIntStream input, Exception innerException) method in class:Antlr.Runtime.RecognitionException
165 protected RecognitionException(SerializationInfo info, StreamingContext context) method in class:Antlr.Runtime.RecognitionException
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
H A DParseTreeBuilder.cs116 public override void RecognitionException(RecognitionException e) { method in class:Antlr.Runtime.Debug.ParseTreeBuilder
H A DBlankDebugEventListener.cs87 public virtual void RecognitionException(RecognitionException e) { method in class:Antlr.Runtime.Debug.BlankDebugEventListener
H A DDebugEventHub.cs184 public virtual void RecognitionException(RecognitionException e) { method in class:Antlr.Runtime.Debug.DebugEventHub
187 listener.RecognitionException(e);
H A DDebugEventRepeater.cs104 public virtual void RecognitionException(RecognitionException e) { method in class:Antlr.Runtime.Debug.DebugEventRepeater
105 _listener.RecognitionException(e);
H A DIDebugEventListener.cs180 * Across a socket for remote debugging, only the RecognitionException
224 void RecognitionException(RecognitionException e); method in interface:Antlr.Runtime.Debug.IDebugEventListener
H A DDebugEventSocketProxy.cs220 public override void RecognitionException(RecognitionException e) { method in class:Antlr.Runtime.Debug.DebugEventSocketProxy
H A DProfiler.cs333 public override void RecognitionException(RecognitionException e) { method in class:Antlr.Runtime.Debug.Profiler
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DRecognitionException.cs76 public class RecognitionException : Exception class in namespace:Antlr.Runtime
125 public RecognitionException() method in class:Antlr.Runtime.RecognitionException
130 public RecognitionException( IIntStream input ) method in class:Antlr.Runtime.RecognitionException
135 public RecognitionException(string message) method in class:Antlr.Runtime.RecognitionException
140 public RecognitionException(string message, IIntStream input) method in class:Antlr.Runtime.RecognitionException
145 public RecognitionException(string message, Exception innerException) method in class:Antlr.Runtime.RecognitionException
150 public RecognitionException(string message, IIntStream input, Exception innerException) method in class:Antlr.Runtime.RecognitionException
186 protected RecognitionException(SerializationInfo info, StreamingContext context) method in class:Antlr.Runtime.RecognitionException
/external/antlr/antlr-3.4/runtime/Python/antlr3/
H A Dexceptions.py42 class RecognitionException(Exception): class in inherits:Exception
196 class MismatchedTokenException(RecognitionException):
200 RecognitionException.__init__(self, input)
259 class MismatchedRangeException(RecognitionException):
263 RecognitionException.__init__(self, input)
276 class MismatchedSetException(RecognitionException):
280 RecognitionException.__init__(self, input)
302 class NoViableAltException(RecognitionException):
308 RecognitionException.__init__(self, input)
322 class EarlyExitException(RecognitionException)
[all...]
H A Ddebug.py32 from antlr3 import Parser, TokenStream, RecognitionException, Token namespace
84 if isinstance(exc, RecognitionException):
541 Across a socket for remote debugging, only the RecognitionException
H A Drecognizers.py39 from antlr3.exceptions import RecognitionException, MismatchedTokenException, \
845 pass in, for example, a RecognitionException to get it's rule
1004 throw an exception not under RecognitionException and Java will naturally
1125 except RecognitionException, re:
43 BacktrackingFailed, UnwantedTokenException, MissingTokenException namespace
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Debug/
H A DIDebugEventListener.cs182 * Across a socket for remote debugging, only the RecognitionException
226 void RecognitionException( RecognitionException e ); method in interface:Antlr.Runtime.Debug.IDebugEventListener
/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...
/external/chromium_org/third_party/checkstyle/
H A Dcheckstyle-5.7-all.jarMETA-INF/MANIFEST.MF META-INF/ checkstyle_packages.xml checkstylecompilation.properties checkstyletask.properties com/ ...

Completed in 2900 milliseconds