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

12

/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/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DBaseRecognizer.as260 else if ( e is MismatchedSetException ) {
261 var mse:MismatchedSetException = MismatchedSetException(e);
H A DLexer.as264 else if ( e is MismatchedSetException ) {
265 var mse:MismatchedSetException = MismatchedSetException(e);
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+")";
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DBaseRecognizer.cs303 } else if (e is MismatchedSetException) {
304 MismatchedSetException mse = (MismatchedSetException)e;
H A DLexer.cs298 } else if (e is MismatchedSetException) {
299 MismatchedSetException mse = (MismatchedSetException)e;
H A DMismatchedNotSetException.cs39 public class MismatchedNotSetException : MismatchedSetException {
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 + ")";
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/BuildOptions/
H A DDebugGrammarParser.cs745 MismatchedSetException mse = new MismatchedSetException(null,input);
1091 MismatchedSetException mse = new MismatchedSetException(null,input);
H A DProfileGrammarParser.cs749 MismatchedSetException mse = new MismatchedSetException(null,input);
1095 MismatchedSetException mse = new MismatchedSetException(null,input);
/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/CSharp3/Sources/Antlr3.Runtime/
H A DBaseRecognizer.cs351 else if ( e is MismatchedSetException )
353 MismatchedSetException mse = (MismatchedSetException)e;
H A DLexer.cs363 else if ( e is MismatchedSetException )
365 MismatchedSetException mse = (MismatchedSetException)e;
H A DMismatchedNotSetException.cs40 public class MismatchedNotSetException : MismatchedSetException
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 + ")";
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
H A DAntlr.Runtime.pas3071 Result := 'MismatchedSetException(' + IntToStr(UnexpectedType)
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DBaseRecognizer.java281 else if ( e instanceof MismatchedSetException ) {
282 MismatchedSetException mse = (MismatchedSetException)e;
H A DLexer.java290 else if ( e instanceof MismatchedSetException ) {
291 MismatchedSetException mse = (MismatchedSetException)e;
H A DMismatchedNotSetException.java30 public class MismatchedNotSetException extends MismatchedSetException {
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+")";
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
H A DBaseRecognizer.js336 else if ( e instanceof org.antlr.runtime.MismatchedSetException ) {
H A DLexer.js234 else if ( e instanceof org.antlr.runtime.MismatchedSetException ) {
H A DMismatchedNotSetException.js7 org.antlr.runtime.MismatchedSetException, {
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"

Completed in 344 milliseconds

12