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

1 2

  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
MismatchedSetException.java 30 public class MismatchedSetException extends RecognitionException {
34 public MismatchedSetException() {;}
36 public MismatchedSetException(BitSet expecting, IntStream input) {
42 return "MismatchedSetException("+getUnexpectedType()+"!="+expecting+")";
MismatchedNotSetException.java 30 public class MismatchedNotSetException extends MismatchedSetException {
Lexer.java 290 else if ( e instanceof MismatchedSetException ) {
291 MismatchedSetException mse = (MismatchedSetException)e;
BaseRecognizer.java 281 else if ( e instanceof MismatchedSetException ) {
282 MismatchedSetException mse = (MismatchedSetException)e;
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
MismatchedSetException.js 1 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"
MismatchedNotSetException.js 7 org.antlr.runtime.MismatchedSetException, {
  /external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
MismatchedSetException.pm 1 package ANTLR::Runtime::MismatchedSetException;
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
MismatchedNotSetException.as 30 public class MismatchedNotSetException extends MismatchedSetException {
MismatchedSetException.as 30 public class MismatchedSetException extends RecognitionException {
33 public function MismatchedSetException(expecting:BitSet, input:IntStream) {
39 return "MismatchedSetException("+unexpectedType+"!="+expecting+")";
Lexer.as 264 else if ( e is MismatchedSetException ) {
265 var mse:MismatchedSetException = MismatchedSetException(e);
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
MismatchedSetException.cs 40 public class MismatchedSetException : RecognitionException {
43 public MismatchedSetException() {
46 public MismatchedSetException(string message)
50 public MismatchedSetException(string message, Exception innerException)
54 public MismatchedSetException(BitSet expecting, IIntStream input)
59 public MismatchedSetException(string message, BitSet expecting, IIntStream input)
64 public MismatchedSetException(string message, BitSet expecting, IIntStream input, Exception innerException)
69 protected MismatchedSetException(SerializationInfo info, StreamingContext context)
92 return "MismatchedSetException(" + UnexpectedType + "!=" + Expecting + ")";
MismatchedNotSetException.cs 39 public class MismatchedNotSetException : MismatchedSetException {
Lexer.cs 298 } else if (e is MismatchedSetException) {
299 MismatchedSetException mse = (MismatchedSetException)e;
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
MismatchedSetException.cs 41 public class MismatchedSetException : RecognitionException
45 public MismatchedSetException()
49 public MismatchedSetException(string message)
54 public MismatchedSetException(string message, Exception innerException)
59 public MismatchedSetException( BitSet expecting, IIntStream input )
65 public MismatchedSetException(string message, BitSet expecting, IIntStream input)
71 public MismatchedSetException(string message, BitSet expecting, IIntStream input, Exception innerException)
77 protected MismatchedSetException(SerializationInfo info, StreamingContext context)
105 return "MismatchedSetException(" + UnexpectedType + "!=" + Expecting + ")";
MismatchedNotSetException.cs 40 public class MismatchedNotSetException : MismatchedSetException
Lexer.cs 363 else if ( e is MismatchedSetException )
365 MismatchedSetException mse = (MismatchedSetException)e;
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/
SimpleCLexer.java 264 MismatchedSetException mse = new MismatchedSetException(null,input);
288 MismatchedSetException mse = new MismatchedSetException(null,input);
480 MismatchedSetException mse = new MismatchedSetException(null,input);
SimpleCTP.java 379 MismatchedSetException mse = new MismatchedSetException(null,input);
784 MismatchedSetException mse = new MismatchedSetException(null,input);
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/output1/
SimpleCLexer.java 264 MismatchedSetException mse = new MismatchedSetException(null,input);
288 MismatchedSetException mse = new MismatchedSetException(null,input);
480 MismatchedSetException mse = new MismatchedSetException(null,input);
SimpleCTP.java 379 MismatchedSetException mse = new MismatchedSetException(null,input);
784 MismatchedSetException mse = new MismatchedSetException(null,input);
  /external/antlr/antlr-3.4/runtime/Python/unittests/
testexceptions.py 56 """Tests for the antlr3.MismatchedSetException class"""
60 """MismatchedSetException.__init__()"""
62 exc = antlr3.MismatchedSetException()
  /external/antlr/antlr-3.4/runtime/Python/tests/
t009lexer.py 58 except antlr3.MismatchedSetException, exc:
t012lexerXML.py 95 except antlr3.MismatchedSetException, exc:
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/
SlimLexer.cs 380 else if ( e is MismatchedSetException )
382 MismatchedSetException mse = (MismatchedSetException)e;
  /external/antlr/antlr-3.4/runtime/Python/antlr3/
exceptions.py 276 class MismatchedSetException(RecognitionException):
286 return "MismatchedSetException(%r not in %r)" % (
292 class MismatchedNotSetException(MismatchedSetException):

Completed in 299 milliseconds

1 2