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

/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DFailedPredicateException.java35 public class FailedPredicateException extends RecognitionException { class in inherits:RecognitionException
40 public FailedPredicateException() {;} method in class:FailedPredicateException
42 public FailedPredicateException(IntStream input, method in class:FailedPredicateException
52 return "FailedPredicateException("+ruleName+",{"+predicateText+"}?)";
H A DBaseRecognizer.java291 else if ( e instanceof FailedPredicateException ) {
292 FailedPredicateException fpe = (FailedPredicateException)e;
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
H A DFailedPredicateException.js12 org.antlr.runtime.FailedPredicateException = function(input, ruleName, predicateText){
13 org.antlr.runtime.FailedPredicateException.superclass.constructor.call(this, input);
19 org.antlr.runtime.FailedPredicateException,
21 /** @lends org.antlr.runtime.FailedPredicateException.prototype */
27 return "FailedPredicateException("+this.ruleName+",{"+this.predicateText+"}?)";
33 name: "org.antlr.runtime.FailedPredicateException"
H A DBaseRecognizer.js344 else if ( e instanceof org.antlr.runtime.FailedPredicateException ) {
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DFailedPredicateException.as35 public class FailedPredicateException extends RecognitionException {
39 public function FailedPredicateException(input:IntStream, function
H A DBaseRecognizer.as270 else if ( e is FailedPredicateException ) {
271 var fpe:FailedPredicateException = FailedPredicateException(e);
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DFailedPredicateException.cs47 public class FailedPredicateException : RecognitionException { class in namespace:Antlr.Runtime
51 public FailedPredicateException() { method in class:Antlr.Runtime.FailedPredicateException
54 public FailedPredicateException(string message) method in class:Antlr.Runtime.FailedPredicateException
58 public FailedPredicateException(string message, Exception innerException) method in class:Antlr.Runtime.FailedPredicateException
62 public FailedPredicateException(IIntStream input, string ruleName, string predicateText) method in class:Antlr.Runtime.FailedPredicateException
68 public FailedPredicateException(string message, IIntStream input, string ruleName, string predicateText) method in class:Antlr.Runtime.FailedPredicateException
74 public FailedPredicateException(string message, IIntStream input, string ruleName, string predicateText, Exception innerException) method in class:Antlr.Runtime.FailedPredicateException
80 protected FailedPredicateException(SerializationInfo info, StreamingContext context) method in class:Antlr.Runtime.FailedPredicateException
111 return "FailedPredicateException(" + RuleName + ",{" + PredicateText + "}?)";
H A DBaseRecognizer.cs311 } else if (e is FailedPredicateException) {
312 FailedPredicateException fpe = (FailedPredicateException)e;
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DFailedPredicateException.cs48 public class FailedPredicateException : RecognitionException class in namespace:Antlr.Runtime
53 public FailedPredicateException() method in class:Antlr.Runtime.FailedPredicateException
57 public FailedPredicateException(string message) method in class:Antlr.Runtime.FailedPredicateException
62 public FailedPredicateException(string message, Exception innerException) method in class:Antlr.Runtime.FailedPredicateException
67 public FailedPredicateException(IIntStream input, string ruleName, string predicateText) method in class:Antlr.Runtime.FailedPredicateException
74 public FailedPredicateException(string message, IIntStream input, string ruleName, string predicateText) method in class:Antlr.Runtime.FailedPredicateException
81 public FailedPredicateException(string message, IIntStream input, string ruleName, string predicateText, Exception innerException) method in class:Antlr.Runtime.FailedPredicateException
88 protected FailedPredicateException(SerializationInfo info, StreamingContext context) method in class:Antlr.Runtime.FailedPredicateException
126 return "FailedPredicateException(" + RuleName + ",{" + PredicateText + "}?)";
H A DBaseRecognizer.cs363 else if ( e is FailedPredicateException )
365 FailedPredicateException fpe = (FailedPredicateException)e;
/external/antlr/antlr-3.4/runtime/Python/unittests/
H A Dtestexceptions.py26 """Tests for the antlr3.FailedPredicateException class"""
30 """FailedPredicateException.__init__()"""
32 exc = antlr3.FailedPredicateException()
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
H A DInterpreter.java302 FailedPredicateException fpe =
303 new FailedPredicateException(input,
368 FailedPredicateException fpe =
369 new FailedPredicateException(input,
/external/antlr/antlr-3.4/runtime/Python/antlr3/
H A Dexceptions.py331 class FailedPredicateException(RecognitionException): class in inherits:RecognitionException
348 return "FailedPredicateException("+self.ruleName+",{"+self.predicateText+"}?)"
H A Drecognizers.py42 MismatchedNotSetException, FailedPredicateException, \
388 elif isinstance(e, FailedPredicateException):
43 BacktrackingFailed, UnwantedTokenException, MissingTokenException namespace
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/ActionScript/
H A DActionScript.stg812 throw new FailedPredicateException(input, "<ruleName>", "<description>");
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CPP/
H A DCPP.stg876 throw new FailedPredicateException(input, "<ruleName>", "<description>");
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Java/
H A DJava.stg886 throw new FailedPredicateException(input, "<ruleName>", "<description>");
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Perl5/
H A DPerl5.stg845 throw new FailedPredicateException(input, "<ruleName>", "<description>");
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Python/
H A DPython.stg971 raise FailedPredicateException(self.input, "<ruleName>", "<description>")
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Scala/
H A DScala.stg880 throw new FailedPredicateException(input, "<ruleName>", "<description>")
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp2/
H A DCSharp2.stg1128 throw new FailedPredicateException(input, "<ruleName>", "<description>");
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/CSharp3/
H A DCSharp3.stg1107 throw new FailedPredicateException(input, "<ruleName>", "<description>");
/external/smali/smali/src/main/java/org/jf/smali/
H A DsmaliParser.java571 throw new FailedPredicateException(input, "smali_file", "!$smali_file::hasClassSpec");
585 throw new FailedPredicateException(input, "smali_file", "!$smali_file::hasSuperSpec");
609 throw new FailedPredicateException(input, "smali_file", "!$smali_file::hasSourceSpec");
1302 throw new FailedPredicateException(input, "field", "input.LA(1) == ANNOTATION_DIRECTIVE");
10405 throw new FailedPredicateException(input, "parameter_directive", "input.LA(1) == ANNOTATION_DIRECTIVE");
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
H A DAntlr.Runtime.pas3095 Result := 'FailedPredicateException(' + FRuleName + ',{' + FPredicateText + '}?)';
/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/ ...

Completed in 1346 milliseconds