OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:newexception
(Results
1 - 25
of
72
) sorted by null
1
2
3
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRRuntimeException.h
37
+ (ANTLRRuntimeException *)
newException
;
38
+ (ANTLRRuntimeException *)
newException
:(NSString *)aReason;
39
+ (ANTLRRuntimeException *)
newException
:(NSString *)aReason userInfo:(NSDictionary *)aUserInfo;
41
+ (ANTLRRuntimeException *)
newException
:(NSString *)aName reason:(NSString *)aReason;
42
+ (ANTLRRuntimeException *)
newException
:(NSString *)aName reason:(NSString *)aReason userInfo:(NSDictionary *)aUserInfo;
58
+ (id)
newException
;
59
+ (id)
newException
:(NSString *)aReason;
60
+ (id)
newException
:(NSString *)aReason userInfo:(NSDictionary *)aUserInfo;
71
+ (id)
newException
;
72
+ (id)
newException
:(NSString *)aReason
[
all
...]
ANTLRRuntimeException.m
37
+ (id)
newException
42
+ (id)
newException
:(NSString *)aReason
47
+ (id)
newException
:(NSString *)aReason userInfo:(NSDictionary *)aUserInfo
52
+ (id)
newException
:(NSString *)aName reason:(NSString *)aReason;
57
+ (id)
newException
:(NSString *)aName reason:(NSString *)aReason userInfo:(NSDictionary *)aUserInfo;
118
+ (id)
newException
123
+ (id)
newException
:(NSString *)aReason
128
+ (id)
newException
:(NSString *)aReason userInfo:(NSDictionary *)aUserInfo
155
+ (id)
newException
160
+ (id)
newException
:(NSString *)aReaso
[
all
...]
ANTLRIntArray.m
126
@throw [ANTLRIllegalArgumentException
newException
:[NSString stringWithFormat:@"Nothing to pop, count = %d", count]];
141
@throw [ANTLRIllegalArgumentException
newException
:[NSString stringWithFormat:@"Index %d must be less than count %d", anIndex, count]];
144
@throw [ANTLRIllegalArgumentException
newException
:[NSString stringWithFormat:@"Index %d must be less than BuffSize %d", anIndex, BuffSize]];
158
@throw [ANTLRIllegalArgumentException
newException
:[NSString stringWithFormat:@"Index %d must be less than count %d", anIndex, count]];
161
@throw [ANTLRIllegalArgumentException
newException
:[NSString stringWithFormat:@"Index %d must be less than BuffSize %d", anIndex, BuffSize]];
170
@throw [ANTLRIllegalArgumentException
newException
:[NSString stringWithFormat:@"Index %d must be less than count %d", anIndex, count]];
173
@throw [ANTLRIllegalArgumentException
newException
:[NSString stringWithFormat:@"Index %d must be less than BuffSize %d", anIndex, BuffSize]];
ANTLRMismatchedNotSetException.h
42
- (ANTLRMismatchedNotSetException *)
newException
;
43
- (ANTLRMismatchedNotSetException *)
newException
:(id<ANTLRIntStream>)anInput
ANTLRMismatchedNotSetException.m
38
- (ANTLRMismatchedNotSetException *)
newException
43
- (ANTLRMismatchedNotSetException *)
newException
:(id<ANTLRIntStream>)anInput
ANTLRMissingTokenException.h
40
+ (id)
newException
;
41
+ (id)
newException
:(NSInteger)expected
ANTLRUnwantedTokenException.h
38
+ (ANTLRUnwantedTokenException *)
newException
;
39
+ (ANTLRUnwantedTokenException *)
newException
:(NSInteger)expected Stream:(id<ANTLRIntStream>)anInput;
ANTLRMissingTokenException.m
37
+ (id)
newException
42
+ (id)
newException
:(NSInteger)expected
ANTLRRecognitionException.h
52
+ (id)
newException
;
53
+ (id)
newException
:(id<ANTLRIntStream>) anInputStream;
ANTLRUnwantedTokenException.m
36
+ (ANTLRUnwantedTokenException *)
newException
41
+ (ANTLRUnwantedTokenException *)
newException
:(NSInteger)expected Stream:(id<ANTLRIntStream>)anInput
ANTLRFastQueue.m
135
@throw [ANTLRNoSuchElementException
newException
:[NSString stringWithFormat:@"queue index %d > last index %d", absIndex, [data count]-1]];
138
@throw [ANTLRNoSuchElementException
newException
:[NSString stringWithFormat:@"queue index %d < 0", absIndex]];
ANTLREarlyExitException.h
34
+ (ANTLREarlyExitException *)
newException
:(id<ANTLRIntStream>)anInputStream decisionNumber:(NSInteger)aDecisionNumber;
ANTLREarlyExitException.m
32
+ (ANTLREarlyExitException *)
newException
:(id<ANTLRIntStream>) anInputStream decisionNumber:(NSInteger) aDecisionNumber
ANTLRFailedPredicateException.h
40
+ (ANTLRFailedPredicateException *)
newException
:(NSString *)theRuleName predicate:(NSString *)thePredicate stream:(id<ANTLRIntStream>)theStream;
ANTLRMismatchedRangeException.h
39
+ (id)
newException
:(NSRange) aRange stream:(id<ANTLRIntStream>) theInput;
ANTLRMismatchedRangeException.m
35
+ (id)
newException
:(NSRange) aRange stream:(id<ANTLRIntStream>) theInput
ANTLRMismatchedSetException.h
37
+ (id)
newException
:(NSString *) theExpectedSet stream:(id<ANTLRIntStream>) theStream;
ANTLRMismatchedTreeNodeException.h
38
+ (id)
newException
:(NSInteger)expectedTokenType Stream:(id<ANTLRIntStream>)anInput;
ANTLRMismatchedTreeNodeException.m
34
+ (id)
newException
:(NSInteger)expectedTokenType Stream:(id<ANTLRIntStream>)anInput
ANTLRNoViableAltException.h
36
+ (ANTLRNoViableAltException *)
newException
:(NSInteger)theDecisionNumber state:(NSInteger)theStateNumber stream:(id<ANTLRIntStream>)theStream;
ANTLRRewriteRuleNodeStream.m
71
@throw [ANTLRRuntimeException
newException
:@"ANTLRUnsupportedOperationException" reason:@"dup can't be called for a node stream."];
/libcore/luni/src/main/java/android/system/
ErrnoException.java
71
IOException
newException
= new IOException(getMessage());
72
newException
.initCause(this);
73
throw
newException
;
GaiException.java
72
UnknownHostException
newException
= new UnknownHostException(detailMessage);
73
newException
.initCause(this);
74
throw
newException
;
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/hoistedPredicates/
TLexer.m
115
ANTLRMismatchedSetException *mse = [ANTLRMismatchedSetException
newException
:nil stream:input];
136
ANTLRMismatchedSetException *mse = [ANTLRMismatchedSetException
newException
:nil stream:input];
198
ANTLRMismatchedSetException *mse = [ANTLRMismatchedSetException
newException
:nil stream:input];
211
[ANTLREarlyExitException
newException
:input decisionNumber:2];
265
ANTLRMismatchedSetException *mse = [ANTLRMismatchedSetException
newException
:nil stream:input];
278
[ANTLREarlyExitException
newException
:input decisionNumber:3];
424
ANTLRNoViableAltException *nvae = [ANTLRNoViableAltException
newException
:4 state:0 stream:input];
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treeparser/
LangLexer.m
194
ANTLRMismatchedSetException *mse = [ANTLRMismatchedSetException
newException
:nil stream:input];
207
[ANTLREarlyExitException
newException
:input decisionNumber:1];
261
ANTLRMismatchedSetException *mse = [ANTLRMismatchedSetException
newException
:nil stream:input];
274
[ANTLREarlyExitException
newException
:input decisionNumber:2];
314
ANTLRMismatchedSetException *mse = [ANTLRMismatchedSetException
newException
:nil stream:input];
466
ANTLRNoViableAltException *nvae = [ANTLRNoViableAltException
newException
:3 state:0 stream:input];
Completed in 352 milliseconds
1
2
3