HomeSort by relevance Sort by last modified time
    Searched full:newexception (Results 26 - 50 of 72) sorted by null

12 3

  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRTreeException.h 36 + (id) newException:(id<ANTLRBaseTree>)theOldRoot newRoot:(id<ANTLRBaseTree>)theNewRoot stream:(id<ANTLRIntStream>)aStream;
ANTLRTreeRewriter.m 59 @throw [ANTLRRuntimeException newException:@"Unknown Rewrite exception"];
235 @throw [ANTLRRecognitionException newException:@"TopDown exception"];
242 @throw [ANTLRRecognitionException newException:@"BottomUp exception"];
ANTLRBaseTree.m 167 @throw [ANTLRIllegalArgumentException newException:@"ANTLRBaseTree Can't add self to self as child"];
171 @throw [ANTLRRuntimeException newException:@"ANTLRBaseTree add child list to itself"];
219 @throw [ANTLRIllegalArgumentException newException:@"ANTLRBaseTree Can't set single child to a list"];
259 @throw [ANTLRIllegalArgumentException newException:@"ANTLRBaseTree Invalid Indexes; no children in list"];
348 @throw [ANTLRIllegalStateException newException:[NSString stringWithFormat:@"parents don't match; expected %s found %s", aParent, [self getParent]]];
351 @throw [ANTLRIllegalStateException newException:[NSString stringWithFormat:@"child indexes don't match; expected %d found %d", i, [self getChildIndex]]];
ANTLRRecognitionException.m 39 + (id) newException
44 + (id) newException:(id<ANTLRIntStream>) anInputStream
49 + (id) newException:(id<ANTLRIntStream>) anInputStream reason:(NSString *)aReason
ANTLRFailedPredicateException.m 35 + (ANTLRFailedPredicateException *) newException:(NSString *)theRuleName predicate:(NSString *)thePredicate stream:(id<ANTLRIntStream>)theStream
ANTLRMismatchedTokenException.h 44 + (id) newException:(NSInteger)expectedTokenType Stream:(id<ANTLRIntStream>)anInput;
ANTLRTreeException.m 38 + (id) newException:(id<ANTLRBaseTree>)theOldRoot newRoot:(id<ANTLRBaseTree>)theNewRoot stream:(id<ANTLRIntStream>)aStream;
ANTLRUnbufferedTokenStream.m 109 @throw [ANTLRRuntimeException newException:@"Absolute token indexes are meaningless in an unbuffered stream"];
ANTLRTreeParser.m 79 ANTLRMismatchedTreeNodeException *mte = [ANTLRMismatchedTreeNodeException newException:aTType Stream:aStream];
152 @throw [ANTLRMismatchedTreeNodeException newException:ttype Stream:anInput];
ANTLRTreePatternParser.m 100 @throw [ANTLRRuntimeException newException:@"no BEGIN"];
125 @throw [ANTLRRuntimeException newException:@"no END"];
ANTLRMismatchedSetException.m 34 + (id) newException:(NSString *) theExpectedSet stream:(id<ANTLRIntStream>) theStream
ANTLRMismatchedTokenException.m 37 + (id) newException:(NSInteger)expectedTokenType Stream:(id<ANTLRIntStream>)anInput
ANTLRNoViableAltException.m 34 + (ANTLRNoViableAltException *) newException:(NSInteger)theDecisionNumber state:(NSInteger)theStateNumber stream:(id<ANTLRIntStream>)theStream
ANTLRRewriteRuleTokenStream.m 125 @throw [ANTLRRuntimeException newException:@"copy can't be called for a token stream."];
ANTLRDFA.m 149 ANTLRNoViableAltException *nvae = [ANTLRNoViableAltException newException:decisionNumber state:state stream:anInput];
156 @throw [ANTLRNoViableAltException newException:-1 state:state stream:anInput];
ANTLRBaseTreeAdaptor.m 186 @throw [ANTLRRuntimeException newException:NSStringFromClass([self class]) reason:@"more than one node as root (TODO: make exception hierarchy)"];
259 @throw [ANTLRNoSuchElementException newException:@"don't know enough about Tree node"];
281 @throw [ANTLRNoSuchElementException newException:@"don't know enough about Tree node"];
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/lexertest-simple/
TestLexer.m 98 ANTLRMismatchedSetException *mse = [ANTLRMismatchedSetException newException:nil stream:input];
144 ANTLRMismatchedSetException *mse = [ANTLRMismatchedSetException newException:nil stream:input];
177 ANTLRMismatchedSetException *mse = [ANTLRMismatchedSetException newException:nil stream:input];
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treerewrite/
TreeRewriteLexer.m 96 ANTLRMismatchedSetException *mse = [ANTLRMismatchedSetException newException:nil stream:input];
109 [ANTLREarlyExitException newException:input decisionNumber:1];
181 ANTLRNoViableAltException *nvae = [ANTLRNoViableAltException newException:2 state:0 stream:input];
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/hoistedPredicates/
TParser.m 151 ANTLRNoViableAltException *nvae = [ANTLRNoViableAltException newException:1 state:2 stream:input];
158 ANTLRNoViableAltException *nvae = [ANTLRNoViableAltException newException:1 state:0 stream:input];
235 ANTLRNoViableAltException *nvae = [ANTLRNoViableAltException newException:2 state:0 stream:input];
293 @throw [ANTLRFailedPredicateException newException:@"enumAsKeyword" predicate:@"enableEnum" stream:input];
330 @throw [ANTLRFailedPredicateException newException:@"enumAsID" predicate:@"!enableEnum" stream:input];
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/scopes/
SymbolTableLexer.m 354 ANTLRMismatchedSetException *mse = [ANTLRMismatchedSetException newException:nil stream:input];
367 [ANTLREarlyExitException newException:input decisionNumber:1];
421 ANTLRMismatchedSetException *mse = [ANTLRMismatchedSetException newException:nil stream:input];
434 [ANTLREarlyExitException newException:input decisionNumber:2];
488 ANTLRMismatchedSetException *mse = [ANTLRMismatchedSetException newException:nil stream:input];
501 [ANTLREarlyExitException newException:input decisionNumber:3];
688 ANTLRNoViableAltException *nvae = [ANTLRNoViableAltException newException:4 state:0 stream:input];
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/fuzzy/
Fuzzy.m 931 ANTLRMismatchedSetException *mse = [ANTLRMismatchedSetException newException:nil stream:input];
1000 ANTLRNoViableAltException *nvae = [ANTLRNoViableAltException newException:25 state:0 stream:input];
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/LL-star/
SimpleCLexer.m 549 ANTLRMismatchedSetException *mse = [ANTLRMismatchedSetException newException:nil stream:input];
570 ANTLRMismatchedSetException *mse = [ANTLRMismatchedSetException newException:nil stream:input];
633 ANTLRMismatchedSetException *mse = [ANTLRMismatchedSetException newException:nil stream:input];
646 [ANTLREarlyExitException newException:input decisionNumber:2];
701 ANTLRMismatchedSetException *mse = [ANTLRMismatchedSetException newException:nil stream:input];
714 [ANTLREarlyExitException newException:input decisionNumber:3];
995 ANTLRNoViableAltException *nvae = [ANTLRNoViableAltException newException:4 state:0 stream:input];
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/
SimpleCLexer.m 214 ANTLRMismatchedSetException *mse = [ANTLRMismatchedSetException newException:nil stream:input];
235 ANTLRMismatchedSetException *mse = [ANTLRMismatchedSetException newException:nil stream:input];
301 ANTLRMismatchedSetException *mse = [ANTLRMismatchedSetException newException:nil stream:input];
315 [ANTLREarlyExitException newException:input decisionNumber:2];
694 ANTLRMismatchedSetException *mse = [ANTLRMismatchedSetException newException:nil stream:input];
707 [ANTLREarlyExitException newException:input decisionNumber:3];
987 ANTLRNoViableAltException *nvae = [ANTLRNoViableAltException newException:4 state:0 stream:input];
SimpleCTP.m 316 [ANTLREarlyExitException newException:input decisionNumber:1];
373 ANTLRNoViableAltException *nvae = [ANTLRNoViableAltException newException:2 state:0 stream:input];
598 [ANTLREarlyExitException newException:input decisionNumber:3];
697 ANTLRMismatchedSetException *mse = [ANTLRMismatchedSetException newException:nil stream:input];
855 ANTLRNoViableAltException *nvae = [ANTLRNoViableAltException newException:6 state:0 stream:input];
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/test/runtime/misc/
ANTLRFastQueueTest.m 36 //ANTLRRuntimeException *ANTLRNoSuchElementException = [ANTLRNoSuchElementException newException:@"No such element exception"];

Completed in 631 milliseconds

12 3