/external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/ |
TestASTConstruction.java | 43 String expecting = local 46 assertEquals(expecting, found); 53 String expecting = local 56 assertEquals(expecting, found); 64 String expecting = local 67 assertEquals(expecting, found); 75 String expecting = local 78 assertEquals(expecting, found); 86 String expecting = local 89 assertEquals(expecting, found) 97 String expecting = local 108 String expecting = local 119 String expecting = local 130 String expecting = local 140 String expecting = local 150 String expecting = local 160 String expecting = local 170 String expecting = local 180 String expecting = local 190 String expecting = local 200 String expecting = local 210 String expecting = local 220 String expecting = local 230 String expecting = local 240 String expecting = local 250 String expecting = local 261 String expecting = local 271 String expecting = local 281 String expecting = local 291 String expecting = local 301 String expecting = local 312 String expecting = local 322 String expecting = local 332 String expecting = local 344 String expecting = local 355 String expecting = local 366 String expecting = local [all...] |
TestTreeIterator.java | 46 String expecting = "A EOF"; local 48 assertEquals(expecting, found); 57 String expecting = "nil DOWN A B UP EOF"; local 59 assertEquals(expecting, found); 68 String expecting = "A DOWN B UP EOF"; local 70 assertEquals(expecting, found); 79 String expecting = "A DOWN B C UP EOF"; local 81 assertEquals(expecting, found); 90 String expecting = "A DOWN B DOWN C UP UP EOF"; local 92 assertEquals(expecting, found) 101 String expecting = "A DOWN B DOWN C DOWN D E UP F UP G UP EOF"; local 112 String expecting = "A DOWN B DOWN C DOWN D E UP F UP G UP EOF"; local [all...] |
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...] |
/external/libxml2/result/VC/ |
ElementValid5 | 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)
|
ElementValid7 | 1 ./test/VC/ElementValid7:7: element doc: validity error : Element doc content does not follow the DTD, expecting ((a | b)* , c+ , a , b? , c , a?), got (a b a c c a)
|
/external/libxml2/result/relaxng/ |
565219_0.err | 1 ./test/relaxng/565219_0.xml:1: element foo: Relax-NG validity error : Element foo has wrong namespace: expecting http://bar.com/
|
565219_2.err | 1 ./test/relaxng/565219_2.xml:1: element foo: Relax-NG validity error : Element foo has wrong namespace: expecting http://bar.com/
|
tutor10_1_5.err | 1 ./test/relaxng/tutor10_1_5.xml:1: element foo: Relax-NG validity error : Element foo has wrong namespace: expecting http://www.example.com
|
tutor10_1_6.err | 1 ./test/relaxng/tutor10_1_6.xml:1: element foo: Relax-NG validity error : Element foo has wrong namespace: expecting http://www.example.com
|
tutor3_5_2.err | 1 ./test/relaxng/tutor3_5_2.xml:2: element email: Relax-NG validity error : Expecting element name, got email
|
/external/smali/smalidea/testData/ |
InvalidClassDirective2.txt | 12 PsiErrorElement:extraneous input '.super' expecting CLASS_DESCRIPTOR
|
InvalidClassDirective3.txt | 13 PsiErrorElement:extraneous input '.class' expecting CLASS_DESCRIPTOR
|
InvalidField2.txt | 16 PsiErrorElement:mismatched input '.blah' expecting COLON
|
SuperClassInvalidSyntax.txt | 17 PsiErrorElement:mismatched input '<EOF>' expecting CLASS_DESCRIPTOR
|
/ndk/tests/device/bitfield/jni/ |
main.c | 11 printf("u.i = %08x (expecting fedcba99)\n", u.i);
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/nios2/ |
illegal.l | 3 .*illegal.s:8: Error: expecting \( near 0x1000 5 .*illegal.s:9: Error: expecting \) near r5 6 .*illegal.s:10: Error: expecting \( near 0x1000r5\) 8 .*illegal.s:11: Error: expecting \( near 0x1000,r5
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/ |
MismatchedNotSetException.cs | 51 public MismatchedNotSetException(BitSet expecting, IIntStream input) 52 : base(expecting, input) { 55 public MismatchedNotSetException(string message, BitSet expecting, IIntStream input) 56 : base(message, expecting, input) { 59 public MismatchedNotSetException(string message, BitSet expecting, IIntStream input, Exception innerException) 60 : base(message, expecting, input, innerException) { 68 return "MismatchedNotSetException(" + UnexpectedType + "!=" + Expecting + ")";
|
MissingTokenException.cs | 40 * We were expecting a token but it's not found. The current token 59 public MissingTokenException(int expecting, IIntStream input, object inserted) 60 : this(expecting, input, inserted, null) { 63 public MissingTokenException(int expecting, IIntStream input, object inserted, IList<string> tokenNames) 64 : base(expecting, input, tokenNames) { 68 public MissingTokenException(string message, int expecting, IIntStream input, object inserted, IList<string> tokenNames) 69 : base(message, expecting, input, tokenNames) { 73 public MissingTokenException(string message, int expecting, IIntStream input, object inserted, IList<string> tokenNames, Exception innerException) 74 : base(message, expecting, input, tokenNames, innerException) { 84 return Expecting; [all...] |
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/ |
MismatchedNotSetException.cs | 56 public MismatchedNotSetException(BitSet expecting, IIntStream input) 57 : base(expecting, input) 61 public MismatchedNotSetException(string message, BitSet expecting, IIntStream input) 62 : base(message, expecting, input) 66 public MismatchedNotSetException(string message, BitSet expecting, IIntStream input, Exception innerException) 67 : base(message, expecting, input, innerException) 78 return "MismatchedNotSetException(" + UnexpectedType + "!=" + Expecting + ")";
|
MissingTokenException.cs | 41 * We were expecting a token but it's not found. The current token 64 public MissingTokenException(int expecting, IIntStream input, object inserted) 65 : this(expecting, input, inserted, null) 69 public MissingTokenException(int expecting, IIntStream input, object inserted, IList<string> tokenNames) 70 : base(expecting, input, tokenNames) 75 public MissingTokenException(string message, int expecting, IIntStream input, object inserted, IList<string> tokenNames) 76 : base(message, expecting, input, tokenNames) 81 public MissingTokenException(string message, int expecting, IIntStream input, object inserted, IList<string> tokenNames, Exception innerException) 82 : base(message, expecting, input, tokenNames, innerException) 96 return Expecting; [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+")";
|