Searched defs:expecting (Results 1 - 25 of 45) sorted by relevance

12

/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
H A DANTLRMismatchedNotSetException.h38 ANTLRBitSet *expecting; variable
40 @property (retain, getter=getExpecting, setter=setExpecting) ANTLRBitSet *expecting; variable
44 Follow:(ANTLRBitSet *)expecting;
47 - (id) initWithStream:(id<ANTLRIntStream>)anInput Follow:(ANTLRBitSet *)expecting;
H A DANTLRMismatchedSetException.h32 NSSet *expecting; variable
35 @property (retain, getter=getExpecting, setter=setExpecting:) NSSet *expecting; variable
H A DANTLRMismatchedTreeNodeException.h33 NSInteger expecting; variable
36 @property (getter=getExpecting, setter=setExpecting) NSInteger expecting; variable
H A DANTLRMismatchedTokenException.h35 NSInteger expecting; variable
40 @property (assign, getter=getExpecting, setter=setExpecting:) NSInteger expecting; variable
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
H A DANTLRMismatchedNotSetException.h38 ANTLRBitSet *expecting; variable
40 @property (retain, getter=getExpecting, setter=setExpecting) ANTLRBitSet *expecting; variable
44 Follow:(ANTLRBitSet *)expecting;
47 - (id) initWithStream:(id<ANTLRIntStream>)anInput Follow:(ANTLRBitSet *)expecting;
H A DANTLRMismatchedSetException.h32 NSSet *expecting; variable
35 @property (retain, getter=getExpecting, setter=setExpecting:) NSSet *expecting; variable
H A DANTLRMismatchedTreeNodeException.h33 NSInteger expecting; variable
36 @property (getter=getExpecting, setter=setExpecting) NSInteger expecting; variable
H A DANTLRMismatchedTokenException.h35 NSInteger expecting; variable
40 @property (assign, getter=getExpecting, setter=setExpecting:) NSInteger expecting; variable
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
H A DANTLRMismatchedNotSetException.h38 ANTLRBitSet *expecting; variable
40 @property (retain, getter=getExpecting, setter=setExpecting) ANTLRBitSet *expecting; variable
44 Follow:(ANTLRBitSet *)expecting;
47 - (id) initWithStream:(id<ANTLRIntStream>)anInput Follow:(ANTLRBitSet *)expecting;
H A DANTLRMismatchedSetException.h32 NSSet *expecting; variable
35 @property (retain, getter=getExpecting, setter=setExpecting:) NSSet *expecting; variable
H A DANTLRMismatchedTreeNodeException.h33 NSInteger expecting; variable
36 @property (getter=getExpecting, setter=setExpecting) NSInteger expecting; variable
H A DANTLRMismatchedTokenException.h35 NSInteger expecting; variable
40 @property (assign, getter=getExpecting, setter=setExpecting:) NSInteger expecting; variable
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRMismatchedNotSetException.h38 NSString *expecting; variable
40 @property (retain, getter=getExpecting, setter=setExpecting:) NSString *expecting; variable
44 Follow:(NSString *)expecting;
47 - (id) initWithStream:(id<ANTLRIntStream>)anInput Follow:(NSString *)expecting;
H A DANTLRMismatchedSetException.h32 NSString *expecting; variable
35 @property (retain, getter=getExpecting, setter=setExpecting:) NSString *expecting; variable
H A DANTLRMismatchedTreeNodeException.h33 NSInteger expecting; variable
36 @property (getter=getExpecting, setter=setExpecting:) NSInteger expecting; variable
H A DANTLRMismatchedTokenException.h35 NSInteger expecting; variable
40 @property (assign, getter=getExpecting, setter=setExpecting:) NSInteger expecting; variable
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DMismatchedNotSetException.java34 public MismatchedNotSetException(BitSet expecting, IntStream input) { argument
35 super(expecting, input);
39 return "MismatchedNotSetException("+getUnexpectedType()+"!="+expecting+")";
H A DMismatchedSetException.java31 public BitSet expecting; field in class:MismatchedSetException
36 public MismatchedSetException(BitSet expecting, IntStream input) { argument
38 this.expecting = expecting;
42 return "MismatchedSetException("+getUnexpectedType()+"!="+expecting+")";
H A DMismatchedTokenException.java32 public int expecting = Token.INVALID_TOKEN_TYPE; field in class:MismatchedTokenException
37 public MismatchedTokenException(int expecting, IntStream input) { argument
39 this.expecting = expecting;
43 return "MismatchedTokenException("+getUnexpectedType()+"!="+expecting+")";
H A DMismatchedTreeNodeException.java36 public int expecting; field in class:MismatchedTreeNodeException
41 public MismatchedTreeNodeException(int expecting, TreeNodeStream input) { argument
43 this.expecting = expecting;
47 return "MismatchedTreeNodeException("+getUnexpectedType()+"!="+expecting+")";
H A DMissingTokenException.java30 /** We were expecting a token but it's not found. The current token
38 public MissingTokenException(int expecting, IntStream input, Object inserted) { argument
39 super(expecting, input);
44 return expecting;
H A DUnwantedTokenException.java35 public UnwantedTokenException(int expecting, IntStream input) { argument
36 super(expecting, input);
44 String exp = ", expected "+expecting;
45 if ( expecting==Token.INVALID_TOKEN_TYPE ) {
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DMismatchedNotSetException.cs51 public MismatchedNotSetException(BitSet expecting, IIntStream input) argument
52 : base(expecting, input) {
55 public MismatchedNotSetException(string message, BitSet expecting, IIntStream input) argument
56 : base(message, expecting, input) {
59 public MismatchedNotSetException(string message, BitSet expecting, IIntStream input, Exception innerException) argument
60 : base(message, expecting, input, innerException) {
H A DMismatchedSetException.cs54 public MismatchedSetException(BitSet expecting, IIntStream input) argument
56 this._expecting = expecting;
59 public MismatchedSetException(string message, BitSet expecting, IIntStream input) argument
61 this._expecting = expecting;
64 public MismatchedSetException(string message, BitSet expecting, IIntStream input, Exception innerException) argument
66 this._expecting = expecting;
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DMismatchedNotSetException.cs56 public MismatchedNotSetException(BitSet expecting, IIntStream input) argument
57 : base(expecting, input)
61 public MismatchedNotSetException(string message, BitSet expecting, IIntStream input) argument
62 : base(message, expecting, input)
66 public MismatchedNotSetException(string message, BitSet expecting, IIntStream input, Exception innerException) argument
67 : base(message, expecting, input, innerException)

Completed in 331 milliseconds

12