HomeSort by relevance Sort by last modified time
    Searched defs:expecting (Results 1 - 25 of 67) sorted by null

1 2 3

  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRMismatchedNotSetException.h 38 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;
ANTLRMismatchedSetException.h 32 NSSet *expecting; variable
35 @property (retain, getter=getExpecting, setter=setExpecting:) NSSet *expecting; variable
ANTLRMismatchedTreeNodeException.h 33 NSInteger expecting; variable
36 @property (getter=getExpecting, setter=setExpecting) NSInteger expecting; variable
ANTLRMismatchedTokenException.h 35 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/
ANTLRMismatchedNotSetException.h 38 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;
ANTLRMismatchedSetException.h 32 NSSet *expecting; variable
35 @property (retain, getter=getExpecting, setter=setExpecting:) NSSet *expecting; variable
ANTLRMismatchedTreeNodeException.h 33 NSInteger expecting; variable
36 @property (getter=getExpecting, setter=setExpecting) NSInteger expecting; variable
ANTLRMismatchedTokenException.h 35 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/
ANTLRMismatchedNotSetException.h 38 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;
ANTLRMismatchedSetException.h 32 NSSet *expecting; variable
35 @property (retain, getter=getExpecting, setter=setExpecting:) NSSet *expecting; variable
ANTLRMismatchedTreeNodeException.h 33 NSInteger expecting; variable
36 @property (getter=getExpecting, setter=setExpecting) NSInteger expecting; variable
ANTLRMismatchedTokenException.h 35 NSInteger expecting; variable
40 @property (assign, getter=getExpecting, setter=setExpecting:) NSInteger expecting; variable
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRMismatchedNotSetException.h 38 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;
ANTLRMismatchedSetException.h 32 NSString *expecting; variable
35 @property (retain, getter=getExpecting, setter=setExpecting:) NSString *expecting; variable
ANTLRMismatchedTreeNodeException.h 33 NSInteger expecting; variable
36 @property (getter=getExpecting, setter=setExpecting:) NSInteger expecting; variable
ANTLRMismatchedTokenException.h 35 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/
MismatchedSetException.java 31 public BitSet expecting; field in class:MismatchedSetException
36 public MismatchedSetException(BitSet expecting, IntStream input) {
38 this.expecting = expecting;
42 return "MismatchedSetException("+getUnexpectedType()+"!="+expecting+")";
MismatchedTokenException.java 32 public int expecting = Token.INVALID_TOKEN_TYPE; field in class:MismatchedTokenException
37 public MismatchedTokenException(int expecting, IntStream input) {
39 this.expecting = expecting;
43 return "MismatchedTokenException("+getUnexpectedType()+"!="+expecting+")";
MismatchedTreeNodeException.java 36 public int expecting; field in class:MismatchedTreeNodeException
41 public MismatchedTreeNodeException(int expecting, TreeNodeStream input) {
43 this.expecting = expecting;
47 return "MismatchedTreeNodeException("+getUnexpectedType()+"!="+expecting+")";
  /external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
TestSyntaxErrors.java 43 String expecting = "line 1:1 no viable alternative at input 'e'\n"; local
45 assertEquals(expecting, result);
57 String expecting = "line 1:2 no viable alternative at input 'e'\n"; local
59 assertEquals(expecting, result);
70 String expecting = "line 1:3 no viable alternative at input 'e'\n"; local
72 assertEquals(expecting, result);
87 String expecting = "line 1:0 no viable alternative at input '('\n"; local
89 assertEquals(expecting, result);
109 String expecting = "{HARDWARE,SOFTWARE}\n"; local
110 assertEquals(expecting, result)
    [all...]
TestTopologicalSort.java 52 String expecting = "[H, F, E, D, G, A, B, C]"; local
55 assertEquals(expecting, result);
66 String expecting = "[D, C, B, A]"; local
69 assertEquals(expecting, result);
80 String expecting = "[D, C, B, A]"; local
83 assertEquals(expecting, result);
94 String expecting = "[MyJava.tokens, Java.g, Java.tokens, Ref.g, Def.g]"; local
97 assertEquals(expecting, result);
108 String expecting = "[JavaLexer.g, JavaLexer.tokens, JavaParser.g, Ref.g, Def.g]"; local
111 assertEquals(expecting, result)
    [all...]
TestInterpretedParsing.java 72 String expecting = local
74 assertEquals(expecting, result);
107 String expecting = local
109 assertEquals(expecting, result);
142 String expecting = local
144 assertEquals(expecting, result);
177 String expecting = local
179 assertEquals(expecting, result);
TestCommonTokenStream.java 55 String expecting = "x"; local
56 assertEquals(expecting, result);
76 String expecting = " "; local
77 assertEquals(expecting, result);
106 String expecting = "x = 3 * 0 + 2 * 0;"; local
107 assertEquals(expecting, result);
137 String expecting = "x = 3 * 0 + 2 * 0;"; local
138 assertEquals(expecting, result);
TestFastQueue.java 45 String expecting = "a b c d e"; local
47 assertEquals(expecting, found);
64 String expecting = "a b c d e"; local
66 assertEquals(expecting, found);
83 String expecting = "abcde"; local
85 assertEquals(expecting, found);
97 String expecting = "queue index 0 > last index -1"; local
99 assertEquals(expecting, found);
113 String expecting = "queue index 0 > last index -1"; local
115 assertEquals(expecting, found)
128 String expecting = "queue index 0 > last index -1"; local
    [all...]
TestInterpretedLexing.java 176 String expecting = "123 139.52"; local
177 assertEquals(expecting, result);

Completed in 204 milliseconds

1 2 3