/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/ |
D | FailedPredicateException.cs | 47 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
|
D | BaseRecognizer.cs | 311 } else if (e is FailedPredicateException) { in GetErrorMessage() 312 FailedPredicateException fpe = (FailedPredicateException)e; in GetErrorMessage()
|
/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime/ |
D | FailedPredicateException.cs | 48 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
|
D | BaseRecognizer.cs | 365 else if ( e is FailedPredicateException ) in GetErrorMessage() 367 FailedPredicateException fpe = (FailedPredicateException)e; in GetErrorMessage()
|
/external/antlr/runtime/ObjC/Framework/ |
D | FailedPredicateException.m | 27 #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" );
|
D | FailedPredicateException.h | 31 @interface FailedPredicateException : RecognitionException 40 + (FailedPredicateException *) newException:(NSString *)theRuleName predicate:(NSString *)thePredic… 41 - (FailedPredicateException *) initWithRuleName:(NSString *)theRuleName predicate:(NSString *)thePr…
|
D | ANTLR.h | 65 #import <ANTLR/FailedPredicateException.h>
|
D | antlr3.h | 65 #import <ANTLR/FailedPredicateException.h>
|
/external/antlr/runtime/Java/src/main/java/org/antlr/runtime/ |
D | FailedPredicateException.java | 35 public class FailedPredicateException extends RecognitionException { class 40 public FailedPredicateException() {;} in FailedPredicateException() method in FailedPredicateException 42 public FailedPredicateException(IntStream input, in FailedPredicateException() method in FailedPredicateException
|
D | BaseRecognizer.java | 291 else if ( e instanceof FailedPredicateException ) { in getErrorMessage() 292 FailedPredicateException fpe = (FailedPredicateException)e; in getErrorMessage()
|
/external/antlr/runtime/JavaScript/src/org/antlr/runtime/ |
D | FailedPredicateException.js | 12 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,
|
D | BaseRecognizer.js | 344 else if ( e instanceof org.antlr.runtime.FailedPredicateException ) {
|
/external/antlr/tool/src/main/java/org/antlr/tool/ |
D | Interpreter.java | 304 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/ |
D | FailedPredicateException.as | 35 public class FailedPredicateException extends RecognitionException { class in org.antlr.runtime 39 public function FailedPredicateException(input:IntStream, method in org.antlr.runtime.FailedPredicateException
|
D | BaseRecognizer.as | 270 else if ( e is FailedPredicateException ) { 271 var fpe:FailedPredicateException = FailedPredicateException(e);
|
/external/antlr/runtime/Python/unittests/ |
D | testexceptions.py | 32 exc = antlr3.FailedPredicateException()
|
/external/antlr/runtime/Python3/unittests/ |
D | testexceptions.py | 32 exc = antlr3.FailedPredicateException()
|
/external/antlr/runtime/JavaScript/build/ |
D | antlr3.properties | 21 org/antlr/runtime/FailedPredicateException.js,\
|
/external/antlr/runtime/ObjC/Framework/examples/hoistedPredicates/ |
D | TParser.m | 300 …@throw [FailedPredicateException newException:@"enumAsKeyword" predicate:@"enableEnum" stream:inpu… 342 … @throw [FailedPredicateException newException:@"enumAsID" predicate:@"!enableEnum" stream:input];
|
/external/antlr/runtime/Python/antlr3/ |
D | exceptions.py | 331 class FailedPredicateException(RecognitionException): class
|
D | recognizers.py | 42 MismatchedNotSetException, FailedPredicateException, \ 388 elif isinstance(e, FailedPredicateException):
|
/external/antlr/runtime/Python3/antlr3/ |
D | exceptions.py | 330 class FailedPredicateException(RecognitionException): class
|
D | recognizers.py | 41 MismatchedNotSetException, FailedPredicateException, \ 381 elif isinstance(e, FailedPredicateException):
|
/external/v8/gnparser/ |
D | gnParser.py | 783 from antlr4.error.Errors import FailedPredicateException 784 raise FailedPredicateException(self, "self.precpred(self._ctx, 1)")
|
/external/antlr/runtime/Cpp/include/ |
D | antlr3exception.inl | 218 , "org.antlr.runtime.FailedPredicateException"
|