HomeSort by relevance Sort by last modified time
    Searched full:expecting (Results 101 - 125 of 2100) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
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...]
TestTreeWizard.java 51 String expecting = "ID"; local
52 assertEquals(expecting, found);
59 String expecting = "foo"; local
60 assertEquals(expecting, found);
67 String expecting = "A"; local
68 assertEquals(expecting, found);
75 String expecting = "(A B C D)"; local
76 assertEquals(expecting, found);
83 String expecting = "A B C"; local
84 assertEquals(expecting, found)
97 String expecting = "(A (B C) (B D) E)"; local
106 String expecting = "{10=[ID]}"; local
115 String expecting = "{5=[A], 6=[B], 7=[C], 8=[D]}"; local
124 String expecting = "{5=[A, A], 6=[B, B, B], 7=[C], 8=[D, D]}"; local
138 String expecting = "[B]"; local
153 String expecting = "[C]"; local
168 String expecting = "[B, B, B]"; local
183 String expecting = "[A, A]"; local
200 String expecting = "[B@A[0], B@A[1], B@A[2]]"; local
217 String expecting = "[A@nil[0], A@A[1]]"; local
232 String expecting = "[A]"; \/\/ shouldn't match overall root, just (A B) local
249 String expecting = "[A@A[2], A@D[0]]"; \/\/ shouldn't match overall root, just (A B) local
266 String expecting = "[foo@A[2]foo&bar, big@D[0]big&dog]"; local
398 String expecting = "[foo, big]"; local
    [all...]
TestSemanticPredicates.java 52 String expecting = local
55 checkDecision(g, 1, expecting, null, null, null, null, null, 0, false);
62 String expecting = local
66 checkDecision(g, 1, expecting, null, null, null, null, null, 0, false);
74 String expecting = local
78 checkDecision(g, 1, expecting, null, null, null, null, null, 0, false);
85 String expecting = local
90 checkDecision(g, 1, expecting, null, null, null, null, null, 0, false);
97 String expecting = // loop back local
102 checkDecision(g, 1, expecting, null, null, null, null, null, 0, false)
109 String expecting = local
120 String expecting = local
133 String expecting = local
144 String expecting = local
154 String expecting = local
164 String expecting = local
194 String expecting = local
206 String expecting = \/\/ only tests after ID, not INT :) local
219 String expecting = local
232 String expecting = local
247 String expecting = local
287 String expecting = local
308 String expecting = local
323 String expecting = local
338 String expecting = local
354 String expecting = local
384 String expecting = local
414 String expecting = local
429 String expecting = local
444 String expecting = local
461 String expecting = local
474 String expecting = local
516 String expecting = local
531 String expecting = local
548 String expecting = local
566 String expecting = local
579 String expecting = local
594 String expecting = local
607 String expecting = local
622 String expecting = local
647 String expecting = local
658 String expecting = local
675 String expecting = local
696 String expecting = local
732 String expecting = local
758 String expecting = local
772 String expecting = local
    [all...]
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
MismatchedSetException.as 31 public var expecting:BitSet;
33 public function MismatchedSetException(expecting:BitSet, input:IntStream) {
35 this.expecting = expecting;
39 return "MismatchedSetException("+unexpectedType+"!="+expecting+")";
MismatchedTokenException.as 32 public var expecting:int = TokenConstants.INVALID_TOKEN_TYPE;
34 public function MismatchedTokenException(expecting:int, input:IntStream) {
36 this.expecting = expecting;
40 return "MismatchedTokenException("+unexpectedType+"!="+expecting+")";
  /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+")";
UnwantedTokenException.java 35 public UnwantedTokenException(int expecting, IntStream input) {
36 super(expecting, input);
44 String exp = ", expected "+expecting;
45 if ( expecting==Token.INVALID_TOKEN_TYPE ) {
  /prebuilts/go/darwin-x86/test/
reorder2.go 81 println("expecting a(1)a(2)a(3) , got ", log)
87 println("expecting a(1)b(2)a(2), got ", log)
92 println("expecting a(3)b(4)a(4)b(5)a(5), got ", log)
98 println("expecting a(6)ba(7)ba(8)ba(9), got", log)
104 println("expecting a(1)b(3) and 3, got ", log, " and ", s)
110 println("expecting a(1)b(2)a(2)b(3)a(4)b(5) and 35, got ", log, " and ", s)
116 println("expecting a(4)b(5)a(1)b(2)a(2)b(3) and 35, got ", log, " and ", s)
122 println("expecting g(1)g(2)ff..., got ", log)
128 println("expecting g(1)h(2)ff..., got ", log)
134 println("expecting h(1)g(2)ff..., got ", log
    [all...]
  /prebuilts/go/linux-x86/test/
reorder2.go 81 println("expecting a(1)a(2)a(3) , got ", log)
87 println("expecting a(1)b(2)a(2), got ", log)
92 println("expecting a(3)b(4)a(4)b(5)a(5), got ", log)
98 println("expecting a(6)ba(7)ba(8)ba(9), got", log)
104 println("expecting a(1)b(3) and 3, got ", log, " and ", s)
110 println("expecting a(1)b(2)a(2)b(3)a(4)b(5) and 35, got ", log, " and ", s)
116 println("expecting a(4)b(5)a(1)b(2)a(2)b(3) and 35, got ", log, " and ", s)
122 println("expecting g(1)g(2)ff..., got ", log)
128 println("expecting g(1)h(2)ff..., got ", log)
134 println("expecting h(1)g(2)ff..., got ", log
    [all...]
  /external/antlr/antlr-3.4/runtime/Python/unittests/
testtree.py 28 expecting = "101"
30 self.failUnlessEqual(expecting, found)
32 expecting = "101"
34 self.failUnlessEqual(expecting, found)
77 expecting = "101 102 103 104"
79 self.failUnlessEqual(expecting, found)
81 expecting = "101 2 102 2 103 3 104 3"
83 self.failUnlessEqual(expecting, found)
100 expecting = "101 102 103 104 105"
102 self.failUnlessEqual(expecting, found
    [all...]
  /external/valgrind/gdbserver_tests/
mcleak.stderr.exp 2 expecting details 10 bytes reachable
7 expecting to have NO details
8 expecting details +10 bytes lost, +21 bytes reachable
9 expecting details +65 bytes reachable
10 expecting to have NO details
11 expecting details +10 bytes reachable
12 expecting details -10 bytes reachable, +10 bytes lost
13 expecting details -10 bytes lost, +10 bytes reachable
14 expecting details 32 (+32) bytes lost, 33 (-32) bytes reachable
mcleak.stdoutB.exp 6 16 fprintf(stderr, "expecting details 10 bytes reachable\n"); fflush(stderr); breakme();
11 19 fprintf(stderr, "expecting to have NO details\n"); fflush(stderr); breakme();
16 24 fprintf(stderr, "expecting details +10 bytes lost, +21 bytes reachable\n"); fflush(stderr); breakme();
21 29 fprintf(stderr, "expecting details +65 bytes reachable\n"); fflush(stderr); breakme();
26 32 fprintf(stderr, "expecting to have NO details\n"); fflush(stderr); breakme();
31 36 fprintf(stderr, "expecting details +10 bytes reachable\n"); fflush(stderr); breakme();
36 40 fprintf(stderr, "expecting details -10 bytes reachable, +10 bytes lost\n"); fflush(stderr); breakme();
41 44 fprintf(stderr, "expecting details -10 bytes lost, +10 bytes reachable\n"); fflush(stderr); breakme();
46 48 fprintf(stderr, "expecting details 32 (+32) bytes lost, 33 (-32) bytes reachable\n"); fflush(stderr); breakme();
  /external/libxml2/result/HTML/
entities.html.sax 5 SAX.error: htmlParseEntityRef: expecting ';'
13 SAX.error: htmlParseEntityRef: expecting ';'
  /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;
  /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;
  /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;
  /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;
  /external/libxml2/result/VC/
ElementValid5.rdr 1 ./test/VC/ElementValid5:7: element doc: validity error : Element doc content does not follow the DTD, expecting (a , b* , c+), got (a b c b)
  /external/libxml2/result/relaxng/
tutor3_7_err 1 ./test/relaxng/tutor3_7.rng:1: element element: Relax-NG validity error : Expecting an element , got nothing
tutor8_2_5.err 1 ./test/relaxng/tutor8_2_5.xml:1: element head: Relax-NG validity error : Expecting an element title, got nothing
  /external/llvm/test/CodeGen/X86/
large-global.ll 4 ; EmitZerofill was incorrectly expecting a 32-bit "size" so 26214400000
  /external/smali/smalidea/testData/
InvalidAnnotation.txt 10 PsiErrorElement:mismatched input '.blah' expecting ANNOTATION_VISIBILITY
25 PsiErrorElement:mismatched input '.blah' expecting CLASS_DESCRIPTOR
45 PsiErrorElement:mismatched input '.blah' expecting EQUAL
105 PsiErrorElement:mismatched input '.blah' expecting END_SUBANNOTATION_DIRECTIVE
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug267.go 21 bugs/bug267.go:14: syntax error: unexpected {, expecting :

Completed in 867 milliseconds

1 2 3 45 6 7 8 91011>>