Searched refs:MismatchedSetException (Results 1 - 25 of 50) sorted by relevance

12

/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DMismatchedSetException.java30 public class MismatchedSetException extends RecognitionException { class in inherits:RecognitionException
34 public MismatchedSetException() {;} method in class:MismatchedSetException
36 public MismatchedSetException(BitSet expecting, IntStream input) { method in class:MismatchedSetException
42 return "MismatchedSetException("+getUnexpectedType()+"!="+expecting+")";
H A DMismatchedNotSetException.java30 public class MismatchedNotSetException extends MismatchedSetException {
H A DLexer.java290 else if ( e instanceof MismatchedSetException ) {
291 MismatchedSetException mse = (MismatchedSetException)e;
H A DBaseRecognizer.java281 else if ( e instanceof MismatchedSetException ) {
282 MismatchedSetException mse = (MismatchedSetException)e;
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
H A DMismatchedSetException.pm1 package ANTLR::Runtime::MismatchedSetException;
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
H A DMismatchedSetException.js1 org.antlr.runtime.MismatchedSetException = function(expecting, input) {
2 org.antlr.runtime.MismatchedSetException.superclass.constructor.call(
8 org.antlr.runtime.MismatchedSetException,
11 return "MismatchedSetException(" +
14 name: "org.antlr.runtime.MismatchedSetException"
H A DMismatchedNotSetException.js7 org.antlr.runtime.MismatchedSetException, {
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DMismatchedNotSetException.as30 public class MismatchedNotSetException extends MismatchedSetException {
H A DMismatchedSetException.as30 public class MismatchedSetException extends RecognitionException {
33 public function MismatchedSetException(expecting:BitSet, input:IntStream) { function
39 return "MismatchedSetException("+unexpectedType+"!="+expecting+")";
H A DLexer.as264 else if ( e is MismatchedSetException ) {
265 var mse:MismatchedSetException = MismatchedSetException(e);
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DMismatchedSetException.cs40 public class MismatchedSetException : RecognitionException { class in namespace:Antlr.Runtime
43 public MismatchedSetException() { method in class:Antlr.Runtime.MismatchedSetException
46 public MismatchedSetException(string message) method in class:Antlr.Runtime.MismatchedSetException
50 public MismatchedSetException(string message, Exception innerException) method in class:Antlr.Runtime.MismatchedSetException
54 public MismatchedSetException(BitSet expecting, IIntStream input) method in class:Antlr.Runtime.MismatchedSetException
59 public MismatchedSetException(string message, BitSet expecting, IIntStream input) method in class:Antlr.Runtime.MismatchedSetException
64 public MismatchedSetException(string message, BitSet expecting, IIntStream input, Exception innerException) method in class:Antlr.Runtime.MismatchedSetException
69 protected MismatchedSetException(SerializationInfo info, StreamingContext context) method in class:Antlr.Runtime.MismatchedSetException
92 return "MismatchedSetException(" + UnexpectedType + "!=" + Expecting + ")";
H A DMismatchedNotSetException.cs39 public class MismatchedNotSetException : MismatchedSetException {
H A DLexer.cs298 } else if (e is MismatchedSetException) {
299 MismatchedSetException mse = (MismatchedSetException)e;
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DMismatchedSetException.cs41 public class MismatchedSetException : RecognitionException class in namespace:Antlr.Runtime
45 public MismatchedSetException() method in class:Antlr.Runtime.MismatchedSetException
49 public MismatchedSetException(string message) method in class:Antlr.Runtime.MismatchedSetException
54 public MismatchedSetException(string message, Exception innerException) method in class:Antlr.Runtime.MismatchedSetException
59 public MismatchedSetException( BitSet expecting, IIntStream input ) method in class:Antlr.Runtime.MismatchedSetException
65 public MismatchedSetException(string message, BitSet expecting, IIntStream input) method in class:Antlr.Runtime.MismatchedSetException
71 public MismatchedSetException(string message, BitSet expecting, IIntStream input, Exception innerException) method in class:Antlr.Runtime.MismatchedSetException
77 protected MismatchedSetException(SerializationInfo info, StreamingContext context) method in class:Antlr.Runtime.MismatchedSetException
105 return "MismatchedSetException(" + UnexpectedType + "!=" + Expecting + ")";
H A DMismatchedNotSetException.cs40 public class MismatchedNotSetException : MismatchedSetException
H A DLexer.cs363 else if ( e is MismatchedSetException )
365 MismatchedSetException mse = (MismatchedSetException)e;
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/
H A DSimpleCLexer.java264 MismatchedSetException mse = new MismatchedSetException(null,input);
288 MismatchedSetException mse = new MismatchedSetException(null,input);
480 MismatchedSetException mse = new MismatchedSetException(null,input);
H A DSimpleCTP.java379 MismatchedSetException mse = new MismatchedSetException(null,input);
784 MismatchedSetException mse = new MismatchedSetException(null,input);
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/output1/
H A DSimpleCLexer.java264 MismatchedSetException mse = new MismatchedSetException(null,input);
288 MismatchedSetException mse = new MismatchedSetException(null,input);
480 MismatchedSetException mse = new MismatchedSetException(null,input);
H A DSimpleCTP.java379 MismatchedSetException mse = new MismatchedSetException(null,input);
784 MismatchedSetException mse = new MismatchedSetException(null,input);
/external/antlr/antlr-3.4/runtime/Python/unittests/
H A Dtestexceptions.py56 """Tests for the antlr3.MismatchedSetException class"""
60 """MismatchedSetException.__init__()"""
62 exc = antlr3.MismatchedSetException()
/external/antlr/antlr-3.4/runtime/Python/tests/
H A Dt009lexer.py58 except antlr3.MismatchedSetException, exc:
H A Dt012lexerXML.py95 except antlr3.MismatchedSetException, exc:
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/
H A DSlimLexer.cs380 else if ( e is MismatchedSetException )
382 MismatchedSetException mse = (MismatchedSetException)e;
/external/antlr/antlr-3.4/runtime/Python/antlr3/
H A Dexceptions.py276 class MismatchedSetException(RecognitionException): class in inherits:RecognitionException
286 return "MismatchedSetException(%r not in %r)" % (
292 class MismatchedNotSetException(MismatchedSetException):

Completed in 750 milliseconds

12