Home
last modified time | relevance | path

Searched refs:FailedPredicateException (Results 1 – 25 of 40) sorted by relevance

12

/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
DFailedPredicateException.cs47 public class FailedPredicateException : RecognitionException { class
51 public FailedPredicateException() { in FailedPredicateException() method in Antlr.Runtime.FailedPredicateException
54 public FailedPredicateException(string message) in FailedPredicateException() method in Antlr.Runtime.FailedPredicateException
58 public FailedPredicateException(string message, Exception innerException) in FailedPredicateException() method in Antlr.Runtime.FailedPredicateException
62 public FailedPredicateException(IIntStream input, string ruleName, string predicateText) in FailedPredicateException() method in Antlr.Runtime.FailedPredicateException
68 …public FailedPredicateException(string message, IIntStream input, string ruleName, string predicat… in FailedPredicateException() method in Antlr.Runtime.FailedPredicateException
74 …public FailedPredicateException(string message, IIntStream input, string ruleName, string predicat… in FailedPredicateException() method in Antlr.Runtime.FailedPredicateException
80 protected FailedPredicateException(SerializationInfo info, StreamingContext context) in FailedPredicateException() method in Antlr.Runtime.FailedPredicateException
DBaseRecognizer.cs311 } else if (e is FailedPredicateException) { in GetErrorMessage()
312 FailedPredicateException fpe = (FailedPredicateException)e; in GetErrorMessage()
/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime/
DFailedPredicateException.cs48 public class FailedPredicateException : RecognitionException class
53 public FailedPredicateException() in FailedPredicateException() method in Antlr.Runtime.FailedPredicateException
57 public FailedPredicateException(string message) in FailedPredicateException() method in Antlr.Runtime.FailedPredicateException
62 public FailedPredicateException(string message, Exception innerException) in FailedPredicateException() method in Antlr.Runtime.FailedPredicateException
67 public FailedPredicateException(IIntStream input, string ruleName, string predicateText) in FailedPredicateException() method in Antlr.Runtime.FailedPredicateException
74 …public FailedPredicateException(string message, IIntStream input, string ruleName, string predicat… in FailedPredicateException() method in Antlr.Runtime.FailedPredicateException
81 …public FailedPredicateException(string message, IIntStream input, string ruleName, string predicat… in FailedPredicateException() method in Antlr.Runtime.FailedPredicateException
88 protected FailedPredicateException(SerializationInfo info, StreamingContext context) in FailedPredicateException() method in Antlr.Runtime.FailedPredicateException
DBaseRecognizer.cs365 else if ( e is FailedPredicateException ) in GetErrorMessage()
367 FailedPredicateException fpe = (FailedPredicateException)e; in GetErrorMessage()
/external/antlr/runtime/ObjC/Framework/
DFailedPredicateException.m27 #import "FailedPredicateException.h"
30 @implementation FailedPredicateException implementation
35 + (FailedPredicateException *) newException:(NSString *)theRuleName predicate:(NSString *)thePredic…
37 …return [[FailedPredicateException alloc] initWithRuleName:theRuleName predicate:thePredicate strea…
40 - (FailedPredicateException *) initWithRuleName:(NSString *)theRuleName predicate:(NSString *)thePr…
52 NSLog( @"called dealloc in FailedPredicateException" );
DFailedPredicateException.h31 @interface FailedPredicateException : RecognitionException
40 + (FailedPredicateException *) newException:(NSString *)theRuleName predicate:(NSString *)thePredic…
41 - (FailedPredicateException *) initWithRuleName:(NSString *)theRuleName predicate:(NSString *)thePr…
DANTLR.h65 #import <ANTLR/FailedPredicateException.h>
Dantlr3.h65 #import <ANTLR/FailedPredicateException.h>
/external/antlr/runtime/Java/src/main/java/org/antlr/runtime/
DFailedPredicateException.java35 public class FailedPredicateException extends RecognitionException { class
40 public FailedPredicateException() {;} in FailedPredicateException() method in FailedPredicateException
42 public FailedPredicateException(IntStream input, in FailedPredicateException() method in FailedPredicateException
DBaseRecognizer.java291 else if ( e instanceof FailedPredicateException ) { in getErrorMessage()
292 FailedPredicateException fpe = (FailedPredicateException)e; in getErrorMessage()
/external/antlr/runtime/JavaScript/src/org/antlr/runtime/
DFailedPredicateException.js12 org.antlr.runtime.FailedPredicateException = function(input, ruleName, predicateText){ class in org.antlr.runtime
13 org.antlr.runtime.FailedPredicateException.superclass.constructor.call(this, input);
19 org.antlr.runtime.FailedPredicateException,
DBaseRecognizer.js344 else if ( e instanceof org.antlr.runtime.FailedPredicateException ) {
/external/antlr/tool/src/main/java/org/antlr/tool/
DInterpreter.java304 FailedPredicateException fpe = in parseEngine()
305 new FailedPredicateException(input, in parseEngine()
370 FailedPredicateException fpe = in parseEngine()
371 new FailedPredicateException(input, in parseEngine()
/external/antlr/runtime/ActionScript/project/src/org/antlr/runtime/
DFailedPredicateException.as35 public class FailedPredicateException extends RecognitionException { class in org.antlr.runtime
39 public function FailedPredicateException(input:IntStream, method in org.antlr.runtime.FailedPredicateException
DBaseRecognizer.as270 else if ( e is FailedPredicateException ) {
271 var fpe:FailedPredicateException = FailedPredicateException(e);
/external/antlr/runtime/Python/unittests/
Dtestexceptions.py32 exc = antlr3.FailedPredicateException()
/external/antlr/runtime/Python3/unittests/
Dtestexceptions.py32 exc = antlr3.FailedPredicateException()
/external/antlr/runtime/JavaScript/build/
Dantlr3.properties21 org/antlr/runtime/FailedPredicateException.js,\
/external/antlr/runtime/ObjC/Framework/examples/hoistedPredicates/
DTParser.m300 …@throw [FailedPredicateException newException:@"enumAsKeyword" predicate:@"enableEnum" stream:inpu…
342 … @throw [FailedPredicateException newException:@"enumAsID" predicate:@"!enableEnum" stream:input];
/external/antlr/runtime/Python/antlr3/
Dexceptions.py331 class FailedPredicateException(RecognitionException): class
Drecognizers.py42 MismatchedNotSetException, FailedPredicateException, \
388 elif isinstance(e, FailedPredicateException):
/external/antlr/runtime/Python3/antlr3/
Dexceptions.py330 class FailedPredicateException(RecognitionException): class
Drecognizers.py41 MismatchedNotSetException, FailedPredicateException, \
381 elif isinstance(e, FailedPredicateException):
/external/v8/gnparser/
DgnParser.py783 from antlr4.error.Errors import FailedPredicateException
784 raise FailedPredicateException(self, "self.precpred(self._ctx, 1)")
/external/antlr/runtime/Cpp/include/
Dantlr3exception.inl218 , "org.antlr.runtime.FailedPredicateException"

12