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

1 2 3

  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
EarlyExitException.java 31 public class EarlyExitException extends RecognitionException {
35 public EarlyExitException() {;}
37 public EarlyExitException(int decisionNumber, IntStream input) {
Lexer.java 281 else if ( e instanceof EarlyExitException ) {
282 EarlyExitException eee = (EarlyExitException)e;
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
EarlyExitException.as 31 public class EarlyExitException extends RecognitionException {
34 public function EarlyExitException(decisionNumber:int, input:IntStream) {
Lexer.as 255 else if ( e is EarlyExitException ) {
256 var eee:EarlyExitException = EarlyExitException(e);
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
EarlyExitException.js 8 org.antlr.runtime.EarlyExitException = function(decisionNumber, input) {
9 org.antlr.runtime.EarlyExitException.superclass.constructor.call(
15 org.antlr.runtime.EarlyExitException,
17 /** @lends org.antlr.runtime.EarlyExitException.prototype */
22 name: "org.antlr.runtime.EarlyExitException"
Lexer.js 228 else if ( e instanceof org.antlr.runtime.EarlyExitException ) {
  /external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
EarlyExitException.pm 1 package ANTLR::Runtime::EarlyExitException;
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
EarlyExitException.cs 41 public class EarlyExitException : RecognitionException {
44 public EarlyExitException() {
47 public EarlyExitException(string message)
51 public EarlyExitException(string message, Exception innerException)
55 public EarlyExitException(int decisionNumber, IIntStream input)
60 public EarlyExitException(string message, int decisionNumber, IIntStream input)
65 public EarlyExitException(string message, int decisionNumber, IIntStream input, Exception innerException)
70 protected EarlyExitException(SerializationInfo info, StreamingContext context)
Lexer.cs 291 } else if (e is EarlyExitException) {
292 EarlyExitException eee = (EarlyExitException)e;
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
EarlyExitException.cs 42 public class EarlyExitException : RecognitionException
46 public EarlyExitException()
50 public EarlyExitException(string message)
55 public EarlyExitException(string message, Exception innerException)
60 public EarlyExitException(int decisionNumber, IIntStream input)
66 public EarlyExitException(string message, int decisionNumber, IIntStream input)
72 public EarlyExitException(string message, int decisionNumber, IIntStream input, Exception innerException)
78 protected EarlyExitException(SerializationInfo info, StreamingContext context)
Lexer.cs 352 else if ( e is EarlyExitException )
354 EarlyExitException eee = (EarlyExitException)e;
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
ClassNameReader.java 28 private static final EarlyExitException EARLY_EXIT = new EarlyExitException();
29 private static class EarlyExitException extends RuntimeException { }
58 } catch (EarlyExitException e) { }
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/
SimpleCLexer.java 351 EarlyExitException eee =
352 new EarlyExitException(2, input);
490 EarlyExitException eee =
491 new EarlyExitException(3, input);
SimpleCTP.java 89 EarlyExitException eee =
90 new EarlyExitException(1, input);
306 EarlyExitException eee =
307 new EarlyExitException(3, input);
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/output1/
SimpleCLexer.java 351 EarlyExitException eee =
352 new EarlyExitException(2, input);
490 EarlyExitException eee =
491 new EarlyExitException(3, input);
SimpleCTP.java 89 EarlyExitException eee =
90 new EarlyExitException(1, input);
306 EarlyExitException eee =
307 new EarlyExitException(3, input);
  /external/antlr/antlr-3.4/runtime/Python/unittests/
testexceptions.py 16 """Tests for the antlr3.EarlyExitException class"""
20 """EarlyExitException.__init__()"""
22 exc = antlr3.EarlyExitException()
  /external/antlr/antlr-3.4/runtime/Python/tests/
t007lexer.py 51 except antlr3.EarlyExitException, exc:
t005lexer.py 70 except antlr3.EarlyExitException, exc:
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/BuildOptions/
DebugGrammarLexer.cs 272 EarlyExitException eee1 = new EarlyExitException( 1, input );
331 EarlyExitException eee2 = new EarlyExitException( 2, input );
433 EarlyExitException eee4 = new EarlyExitException( 4, input );
ProfileGrammarLexer.cs 272 EarlyExitException eee1 = new EarlyExitException( 1, input );
331 EarlyExitException eee2 = new EarlyExitException( 2, input );
433 EarlyExitException eee4 = new EarlyExitException( 4, input );
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/
SlimLexer.cs 369 else if ( e is EarlyExitException )
371 EarlyExitException eee = (EarlyExitException)e;
  /external/doclava/src/com/google/doclava/parser/
JavaLexer.java 22 import org.antlr.runtime.EarlyExitException;
311 EarlyExitException eee =
312 new EarlyExitException(2, input);
348 EarlyExitException eee =
349 new EarlyExitException(3, input);
501 EarlyExitException eee =
502 new EarlyExitException(6, input);
582 EarlyExitException eee =
583 new EarlyExitException(9, input);
636 EarlyExitException eee
    [all...]
  /external/antlr/antlr-3.4/runtime/Python/antlr3/
exceptions.py 322 class EarlyExitException(RecognitionException):
recognizers.py 41 NoViableAltException, EarlyExitException, MismatchedSetException, \
372 elif isinstance(e, EarlyExitException):
    [all...]

Completed in 341 milliseconds

1 2 3