/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/ |
MismatchedTreeNodeException.as | 5 public var expecting:int; 7 public function MismatchedTreeNodeException(expecting:int, input:TreeNodeStream) { 9 this.expecting = expecting; 13 return "MismatchedTreeNodeException("+unexpectedType+"!="+expecting+")";
|
UnwantedTokenException.as | 5 public function UnwantedTokenException(expecting:int, input:IntStream) 7 super(expecting, input); 15 var exp:String = ", expected "+expecting; 16 if ( expecting==TokenConstants.INVALID_TOKEN_TYPE ) {
|
/art/test/453-not-byte/ |
info.txt | 1 Regression test for optimizing, which was expecting int only on a not-int instruction.
|
/external/mesa3d/src/compiler/glsl/glcpp/tests/ |
102-garbage-after-endif.c.expected | 1 0:2(8): preprocessor error: syntax error, unexpected IDENTIFIER, expecting NEWLINE
|
103-garbage-after-else-0.c.expected | 1 0:2(7): preprocessor error: syntax error, unexpected IDENTIFIER, expecting NEWLINE
|
123-garbage-after-else-1.c.expected | 1 0:2(7): preprocessor error: syntax error, unexpected IDENTIFIER, expecting NEWLINE
|
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/ |
MismatchedTreeNodeException.js | 1 org.antlr.runtime.MismatchedTreeNodeException = function(expecting, input) { 2 if (expecting && input) { 5 this.expecting = expecting; 14 this.getUnexpectedType() + "!=" + this.expecting + ")";
|
MismatchedSetException.js | 1 org.antlr.runtime.MismatchedSetException = function(expecting, input) { 4 this.expecting = expecting; 12 this.getUnexpectedType() + "!=" + this.expecting + ")";
|
MismatchedTokenException.js | 1 org.antlr.runtime.MismatchedTokenException = function(expecting, input) { 3 this.expecting = org.antlr.runtime.Token.INVALID_TOKEN_TYPE; 7 this.expecting = expecting; 16 this.getUnexpectedType() + "!=" + this.expecting + ")";
|
MismatchedNotSetException.js | 1 org.antlr.runtime.MismatchedNotSetException = function(expecting, input) { 2 org.antlr.runtime.MismatchedNotSetException.superclass.constructor.call(this, expecting, input); 10 this.getUnexpectedType() + "!=" + this.expecting + ")";
|
/external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/ |
t048rewrite.html | 39 expecting = "0abc"; 40 assertEquals(result, expecting); 48 expecting = "abcx"; 49 assertEquals(result, expecting); 58 expecting = "axbxc"; 59 assertEquals(result, expecting); 67 expecting = "xbc"; 68 assertEquals(result, expecting); 76 expecting = "abx"; 77 assertEquals(result, expecting); [all...] |
/external/libxml2/result/HTML/ |
758518-entity.html.err | 1 ./test/HTML/758518-entity.html:1: HTML parser error : htmlParseEntityRef: expecting ';'
|
758605.html.err | 1 ./test/HTML/758605.html:1: HTML parser error : htmlParseEntityRef: expecting ';'
|
/prebuilts/go/darwin-x86/test/fixedbugs/ |
issue13319.go | 12 f(1, g() // ERROR "expecting \)|expecting comma or \)" 16 f(1, g() // ERROR "expecting \)|expecting comma or \)"
|
/prebuilts/go/linux-x86/test/fixedbugs/ |
issue13319.go | 12 f(1, g() // ERROR "expecting \)|expecting comma or \)" 16 f(1, g() // ERROR "expecting \)|expecting comma or \)"
|
/toolchain/binutils/binutils-2.27/gas/testsuite/gas/i386/ |
x86-64-mpx-inval-1.l | 2 .*:4: Error: expecting valid branch instruction after `bnd' 3 .*:5: Error: expecting valid branch instruction after `bnd' 4 .*:6: Error: expecting valid branch instruction after `bnd' 5 .*:7: Error: expecting valid branch instruction after `bnd' 6 .*:10: Error: expecting valid branch instruction after `bnd' 7 .*:11: Error: expecting valid branch instruction after `bnd' 8 .*:12: Error: expecting valid branch instruction after `bnd' 9 .*:13: Error: expecting valid branch instruction after `bnd' 17 .* Error: expecting valid branch instruction after `bnd' 19 .* Error: expecting valid branch instruction after `bnd [all...] |
mpx-inval-1.l | 2 .*:6: Error: expecting valid branch instruction after `bnd' 3 .*:7: Error: expecting valid branch instruction after `bnd' 4 .*:8: Error: expecting valid branch instruction after `bnd' 6 .*:9: Error: expecting valid branch instruction after `bnd' 8 .*:10: Error: expecting valid branch instruction after `bnd' 9 .*:11: Error: expecting valid branch instruction after `bnd' 10 .*:14: Error: expecting valid branch instruction after `bnd' 11 .*:15: Error: expecting valid branch instruction after `bnd' 12 .*:16: Error: expecting valid branch instruction after `bnd' 13 .*:17: Error: expecting valid branch instruction after `bnd [all...] |
/external/llvm/test/Assembler/ |
2004-03-30-UnclosedFunctionCrash.ll | 1 ; RUN: not llvm-as %s 2>&1 | grep "found end of file when expecting more instructions"
|
/external/swiftshader/third_party/LLVM/test/Assembler/ |
2004-03-30-UnclosedFunctionCrash.ll | 1 ; RUN: not llvm-as %s |& grep {found end of file when expecting more instructions}
|
/external/valgrind/memcheck/tests/ |
leak-delta.c | 16 fprintf(stderr, "expecting details 10 bytes reachable\n"); fflush(stderr); breakme(); 19 fprintf(stderr, "expecting to have NO details\n"); fflush(stderr); breakme(); 24 fprintf(stderr, "expecting details +10 bytes lost, +21 bytes reachable\n"); fflush(stderr); breakme(); 29 fprintf(stderr, "expecting details +65 bytes reachable\n"); fflush(stderr); breakme(); 32 fprintf(stderr, "expecting to have NO details\n"); fflush(stderr); breakme(); 36 fprintf(stderr, "expecting details +10 bytes reachable\n"); fflush(stderr); breakme(); 40 fprintf(stderr, "expecting details -10 bytes reachable, +10 bytes lost\n"); fflush(stderr); breakme(); 44 fprintf(stderr, "expecting details -10 bytes lost, +10 bytes reachable\n"); fflush(stderr); breakme(); 48 fprintf(stderr, "expecting details 32 (+32) bytes lost, 33 (-32) bytes reachable\n"); fflush(stderr); breakme();
|
/external/antlr/antlr-3.4/runtime/Python/tests/ |
t048rewrite.py | 29 expecting = "0abc" 30 self.failUnlessEqual(result, expecting) 38 expecting = "abcx" 39 self.failUnlessEqual(result, expecting) 48 expecting = "axbxc" 49 self.failUnlessEqual(result, expecting) 57 expecting = "xbc" 58 self.failUnlessEqual(result, expecting) 66 expecting = "abx" 67 self.failUnlessEqual(result, expecting) [all...] |
/external/libxml2/result/VC/ |
ElementValid6.rdr | 1 ./test/VC/ElementValid6:7: element doc: validity error : Element doc content does not follow the DTD, expecting (a , b? , c+)?, got (a b) 4 ./test/VC/ElementValid6:8: element doc: validity error : Element doc content does not follow the DTD, Expecting more child
|
/external/libxml2/result/valid/ |
781333.xml.err.rdr | 1 ./test/valid/781333.xml:4: element a: validity error : Element a content does not follow the DTD, expecting ( ..., got 4 ./test/valid/781333.xml:5: element a: validity error : Element a content does not follow the DTD, Expecting more child
|
/prebuilts/go/darwin-x86/test/ |
switch2.go | 14 case 0; // ERROR "expecting := or = or : or comma|expecting :" 18 case 0; // ERROR "expecting := or = or : or comma|expecting :" 37 if x: // ERROR "expecting case or default or }"
|
/prebuilts/go/linux-x86/test/ |
switch2.go | 14 case 0; // ERROR "expecting := or = or : or comma|expecting :" 18 case 0; // ERROR "expecting := or = or : or comma|expecting :" 37 if x: // ERROR "expecting case or default or }"
|