Home
last modified time | relevance | path

Searched refs:RewriteEarlyExitException (Results 1 – 24 of 24) sorted by relevance

/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
DRewriteEarlyExitException.cs40 public class RewriteEarlyExitException : RewriteCardinalityException { class
41 public RewriteEarlyExitException() { in RewriteEarlyExitException() method in Antlr.Runtime.Tree.RewriteEarlyExitException
44 public RewriteEarlyExitException(string elementDescription) in RewriteEarlyExitException() method in Antlr.Runtime.Tree.RewriteEarlyExitException
48 public RewriteEarlyExitException(string elementDescription, Exception innerException) in RewriteEarlyExitException() method in Antlr.Runtime.Tree.RewriteEarlyExitException
52 public RewriteEarlyExitException(string message, string elementDescription) in RewriteEarlyExitException() method in Antlr.Runtime.Tree.RewriteEarlyExitException
56 …public RewriteEarlyExitException(string message, string elementDescription, Exception innerExcepti… in RewriteEarlyExitException() method in Antlr.Runtime.Tree.RewriteEarlyExitException
60 protected RewriteEarlyExitException(SerializationInfo info, StreamingContext context) in RewriteEarlyExitException() method in Antlr.Runtime.Tree.RewriteEarlyExitException
/external/antlr/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
DRewriteEarlyExitException.cs41 public class RewriteEarlyExitException : RewriteCardinalityException class
43 public RewriteEarlyExitException() in RewriteEarlyExitException() method in Antlr.Runtime.Tree.RewriteEarlyExitException
47 public RewriteEarlyExitException(string elementDescription) in RewriteEarlyExitException() method in Antlr.Runtime.Tree.RewriteEarlyExitException
52 public RewriteEarlyExitException(string elementDescription, Exception innerException) in RewriteEarlyExitException() method in Antlr.Runtime.Tree.RewriteEarlyExitException
57 public RewriteEarlyExitException(string message, string elementDescription) in RewriteEarlyExitException() method in Antlr.Runtime.Tree.RewriteEarlyExitException
62 …public RewriteEarlyExitException(string message, string elementDescription, Exception innerExcepti… in RewriteEarlyExitException() method in Antlr.Runtime.Tree.RewriteEarlyExitException
67 protected RewriteEarlyExitException(SerializationInfo info, StreamingContext context) in RewriteEarlyExitException() method in Antlr.Runtime.Tree.RewriteEarlyExitException
/external/antlr/runtime/Java/src/main/java/org/antlr/runtime/tree/
DRewriteEarlyExitException.java31 public class RewriteEarlyExitException extends RewriteCardinalityException { class
32 public RewriteEarlyExitException() { in RewriteEarlyExitException() method in RewriteEarlyExitException
35 public RewriteEarlyExitException(String elementDescription) { in RewriteEarlyExitException() method in RewriteEarlyExitException
/external/antlr/runtime/JavaScript/src/org/antlr/runtime/tree/
DRewriteEarlyExitException.js2 org.antlr.runtime.tree.RewriteEarlyExitException = function(elementDescription) { class in org.antlr.runtime.tree
3 var sup = org.antlr.runtime.tree.RewriteEarlyExitException.superclass;
10 org.antlr.lang.extend(org.antlr.runtime.tree.RewriteEarlyExitException,
/external/antlr/runtime/ActionScript/project/src/org/antlr/runtime/tree/
DRewriteEarlyExitException.as31 public class RewriteEarlyExitException extends RewriteCardinalityException { class in org.antlr.runtime.tree
33 public function RewriteEarlyExitException(elementDescription:String = null) { method in org.antlr.runtime.tree.RewriteEarlyExitException
/external/antlr/runtime/JavaScript/build/
Dantlr3.properties28 org/antlr/runtime/tree/RewriteEarlyExitException.js,\
/external/antlr/runtime/ObjC/Framework/
DRuntimeException.h143 @interface RewriteEarlyExitException : RuntimeException {
DRuntimeException.m381 @implementation RewriteEarlyExitException implementation
390 self = [super initWithName:@"RewriteEarlyExitException" reason:nil userInfo:nil];
/external/antlr/tool/src/main/resources/org/antlr/codegen/templates/C/
DAST.stg381 RewriteEarlyExitException() ::=
396 <RewriteEarlyExitException()>
/external/antlr/runtime/Cpp/include/
Dantlr3exception.inl220 , "org.antlr.runtime.tree.RewriteEarlyExitException"
/external/antlr/runtime/Python/tests/
Dt058rewriteAST.py1334 except antlr3.tree.RewriteEarlyExitException:
/external/antlr/runtime/Python3/tests/
Dt058rewriteAST.py1322 self.assertRaises(antlr3.tree.RewriteEarlyExitException,
/external/antlr/tool/src/main/resources/org/antlr/codegen/templates/JavaScript/
DAST.stg255 throw new org.antlr.runtime.tree.RewriteEarlyExitException();
/external/antlr/tool/src/main/resources/org/antlr/codegen/templates/Python/
DAST.stg280 raise RewriteEarlyExitException()
/external/antlr/tool/src/main/resources/org/antlr/codegen/templates/CSharp3/
DAST.stg277 throw new RewriteEarlyExitException();
/external/antlr/tool/src/main/resources/org/antlr/codegen/templates/ActionScript/
DAST.stg256 throw new RewriteEarlyExitException();
/external/antlr/tool/src/main/resources/org/antlr/codegen/templates/Java/
DAST.stg267 throw new RewriteEarlyExitException();
/external/antlr/tool/src/main/resources/org/antlr/codegen/templates/Python3/
DAST.stg280 raise RewriteEarlyExitException()
/external/antlr/tool/src/main/resources/org/antlr/codegen/templates/CSharp2/
DAST.stg279 throw new RewriteEarlyExitException();
/external/antlr/tool/src/main/resources/org/antlr/codegen/templates/ObjC/
DAST.stg410 @throw [RewriteEarlyExitException newException];
/external/antlr/runtime/Python3/antlr3/
Dtree.py77 class RewriteEarlyExitException(RewriteCardinalityException): class
/external/antlr/runtime/Python/antlr3/
Dtree.py77 class RewriteEarlyExitException(RewriteCardinalityException): class
/external/antlr/runtime/ObjC/Framework/examples/simplecTreeParser/
DSimpleCParser.java569 throw new RewriteEarlyExitException(); in functionHeader()
DSimpleCParser.m1645 @throw [RewriteEarlyExitException newException];