HomeSort by relevance Sort by last modified time
    Searched full:expecting (Results 26 - 50 of 1600) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/libxml2/result/relaxng/
tutor10_1_4.err 1 ./test/relaxng/tutor10_1_4.xml:1: element foo: Relax-NG validity error : Expecting a namespace for element foo
tutor10_2_3.err 1 ./test/relaxng/tutor10_2_3.xml:1: element foo: Relax-NG validity error : Expecting no namespace for element foo
tutor10_2_4.err 1 ./test/relaxng/tutor10_2_4.xml:1: element foo: Relax-NG validity error : Expecting no namespace for element foo
  /external/smali/smalidea/testData/
InvalidClassDirective.txt 11 PsiErrorElement:mismatched input '<EOF>' expecting CLASS_DESCRIPTOR
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/sys/
vfs.h 2 so we have this file to be compatible with programs expecting it. */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/sys/
vfs.h 2 so we have this file to be compatible with programs expecting it. */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/sys/
vfs.h 2 so we have this file to be compatible with programs expecting it. */
  /external/libxml2/result/VC/
ElementValid7.rdr 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)
4 ./test/VC/ElementValid7:8: element doc: validity error : Element doc content does not follow the DTD, Expecting more child
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
MismatchedTokenException.cs 61 public MismatchedTokenException(int expecting, IIntStream input)
62 : this(expecting, input, null) {
65 public MismatchedTokenException(int expecting, IIntStream input, IList<string> tokenNames)
67 this._expecting = expecting;
72 public MismatchedTokenException(string message, int expecting, IIntStream input, IList<string> tokenNames)
74 this._expecting = expecting;
81 public MismatchedTokenException(string message, int expecting, IIntStream input, IList<string> tokenNames, Exception innerException)
83 this._expecting = expecting;
94 this._expecting = info.GetInt32("Expecting");
98 public int Expecting {
    [all...]
MismatchedSetException.cs 54 public MismatchedSetException(BitSet expecting, IIntStream input)
56 this._expecting = expecting;
59 public MismatchedSetException(string message, BitSet expecting, IIntStream input)
61 this._expecting = expecting;
64 public MismatchedSetException(string message, BitSet expecting, IIntStream input, Exception innerException)
66 this._expecting = expecting;
74 this._expecting = (BitSet)info.GetValue("Expecting", typeof(BitSet));
77 public BitSet Expecting {
88 info.AddValue("Expecting", _expecting);
92 return "MismatchedSetException(" + UnexpectedType + "!=" + Expecting + ")"
    [all...]
MismatchedTreeNodeException.cs 55 public MismatchedTreeNodeException(int expecting, ITreeNodeStream input)
57 this._expecting = expecting;
60 public MismatchedTreeNodeException(string message, int expecting, ITreeNodeStream input)
62 this._expecting = expecting;
65 public MismatchedTreeNodeException(string message, int expecting, ITreeNodeStream input, Exception innerException)
67 this._expecting = expecting;
75 this._expecting = info.GetInt32("Expecting");
78 public int Expecting {
89 info.AddValue("Expecting", _expecting);
93 return "MismatchedTreeNodeException(" + UnexpectedType + "!=" + Expecting + ")"
    [all...]
UnwantedTokenException.cs 53 public UnwantedTokenException(int expecting, IIntStream input)
54 : base(expecting, input) {
57 public UnwantedTokenException(int expecting, IIntStream input, IList<string> tokenNames)
58 : base(expecting, input, tokenNames) {
61 public UnwantedTokenException(string message, int expecting, IIntStream input, IList<string> tokenNames)
62 : base(message, expecting, input, tokenNames) {
65 public UnwantedTokenException(string message, int expecting, IIntStream input, IList<string> tokenNames, Exception innerException)
66 : base(message, expecting, input, tokenNames, innerException) {
82 string expected = (TokenNames != null && Expecting >= 0 && Expecting < TokenNames.Count) ? TokenNames[Expecting] : Expecting.ToString()
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
MismatchedTokenException.cs 63 public MismatchedTokenException(int expecting, IIntStream input)
64 : this(expecting, input, null)
68 public MismatchedTokenException(int expecting, IIntStream input, IList<string> tokenNames)
71 this._expecting = expecting;
77 public MismatchedTokenException(string message, int expecting, IIntStream input, IList<string> tokenNames)
80 this._expecting = expecting;
86 public MismatchedTokenException(string message, int expecting, IIntStream input, IList<string> tokenNames, Exception innerException)
89 this._expecting = expecting;
101 this._expecting = info.GetInt32("Expecting");
105 public int Expecting
    [all...]
MismatchedSetException.cs 59 public MismatchedSetException( BitSet expecting, IIntStream input )
62 this._expecting = expecting;
65 public MismatchedSetException(string message, BitSet expecting, IIntStream input)
68 this._expecting = expecting;
71 public MismatchedSetException(string message, BitSet expecting, IIntStream input, Exception innerException)
74 this._expecting = expecting;
83 this._expecting = (BitSet)info.GetValue("Expecting", typeof(BitSet));
86 public BitSet Expecting
100 info.AddValue("Expecting", _expecting);
105 return "MismatchedSetException(" + UnexpectedType + "!=" + Expecting + ")"
    [all...]
MismatchedTreeNodeException.cs 60 public MismatchedTreeNodeException( int expecting, ITreeNodeStream input )
63 this._expecting = expecting;
66 public MismatchedTreeNodeException(string message, int expecting, ITreeNodeStream input)
69 this._expecting = expecting;
72 public MismatchedTreeNodeException(string message, int expecting, ITreeNodeStream input, Exception innerException)
75 this._expecting = expecting;
84 this._expecting = info.GetInt32("Expecting");
87 public int Expecting
101 info.AddValue("Expecting", _expecting);
106 return "MismatchedTreeNodeException(" + UnexpectedType + "!=" + Expecting + ")"
    [all...]
UnwantedTokenException.cs 58 public UnwantedTokenException(int expecting, IIntStream input)
59 : base(expecting, input)
63 public UnwantedTokenException(int expecting, IIntStream input, IList<string> tokenNames)
64 : base(expecting, input, tokenNames)
68 public UnwantedTokenException(string message, int expecting, IIntStream input, IList<string> tokenNames)
69 : base(message, expecting, input, tokenNames)
73 public UnwantedTokenException(string message, int expecting, IIntStream input, IList<string> tokenNames, Exception innerException)
74 : base(message, expecting, input, tokenNames, innerException)
95 string expected = (TokenNames != null && Expecting >= 0 && Expecting < TokenNames.Count) ? TokenNames[Expecting] : Expecting.ToString()
    [all...]
  /external/valgrind/gdbserver_tests/
mcleak.stdinB.gdb 14 # fprintf(stderr, "expecting details 10 bytes reachable\n"); fflush(stderr); breakme();
20 # fprintf(stderr, "expecting to have NO details\n"); fflush(stderr);
28 # fprintf(stderr, "expecting details +10 bytes lost, +21 bytes reachable\n"); fflush(stderr); breakme();
36 # fprintf(stderr, "expecting details +65 bytes reachable\n"); fflush(stderr); breakme();
42 # fprintf(stderr, "expecting to have NO details\n"); fflush(stderr); breakme();
49 # fprintf(stderr, "expecting details +10 bytes reachable\n"); fflush(stderr); breakme();
56 # fprintf(stderr, "expecting details -10 bytes reachable, +10 bytes lost\n"); fflush(stderr); breakme();
63 # fprintf(stderr, "expecting details -10 bytes lost, +10 bytes reachable\n"); fflush(stderr); breakme();
70 # fprintf(stderr, "expecting details 32 (+32) bytes lost, 33 (-32) bytes reachable\n"); fflush(stderr); breakme();
  /external/antlr/antlr-3.4/gunit/src/main/resources/org/antlr/gunit/
junit.stg 47 testTreeRuleMethod(methodName,testTreeRuleName,testRuleName,test,tokenType,expecting) ::= <<
52 Object expecting = <expecting>;
54 assertEquals("testing rule "+<testTreeRuleName>, expecting, actual);
58 testTreeRuleMethod2(methodName,testTreeRuleName,testRuleName,test,returnType,expecting) ::= <<
63 assertTrue("testing rule "+<testTreeRuleName>, <expecting>);
67 testRuleMethod(isLexicalRule,methodName,testRuleName,test,tokenType,expecting) ::= <<
72 Object expecting = <expecting>;
74 assertEquals("testing rule "+<testRuleName>, expecting, actual)
    [all...]
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
MissingTokenException.js 1 org.antlr.runtime.MissingTokenException = function(expecting, input, inserted) {
4 this, expecting, input);
13 return this.expecting;
  /external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
UnwantedTokenException.pm 19 if ($self->expecting == ANTLR::Runtime::Token->INVALID_TOKEN_TYPE) {
23 $exp = ", expected " . $self->expecting;
  /external/libxml2/result/HTML/
entities.html.err 1 ./test/HTML/entities.html:1: HTML parser error : htmlParseEntityRef: expecting ';'
7 ./test/HTML/entities.html:3: HTML parser error : htmlParseEntityRef: expecting ';'
wired.html.err 1 ./test/HTML/wired.html:6: HTML parser error : htmlParseEntityRef: expecting ';'
4 ./test/HTML/wired.html:6: HTML parser error : htmlParseEntityRef: expecting ';'
7 ./test/HTML/wired.html:6: HTML parser error : htmlParseEntityRef: expecting ';'
10 ./test/HTML/wired.html:6: HTML parser error : htmlParseEntityRef: expecting ';'
13 ./test/HTML/wired.html:6: HTML parser error : htmlParseEntityRef: expecting ';'
16 ./test/HTML/wired.html:6: HTML parser error : htmlParseEntityRef: expecting ';'
19 ./test/HTML/wired.html:52: HTML parser error : htmlParseEntityRef: expecting ';'
22 ./test/HTML/wired.html:52: HTML parser error : htmlParseEntityRef: expecting ';'
25 ./test/HTML/wired.html:52: HTML parser error : htmlParseEntityRef: expecting ';'
28 ./test/HTML/wired.html:52: HTML parser error : htmlParseEntityRef: expecting ';'
    [all...]
  /external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
TestNFAConstruction.java 45 String expecting = local
51 checkRule(g, "a", expecting);
58 String expecting = local
65 checkRule(g, "a", expecting);
72 /* expecting (0)--Ep-->(1)--Ep-->(2)--A-->(3)--Ep-->(4)--Ep-->(5,end)
76 String expecting = local
88 checkRule(g, "a", expecting);
96 String expecting = local
110 checkRule(g, "A", expecting);
118 String expecting local
132 String expecting = local
145 String expecting = local
166 String expecting = local
187 String expecting = local
215 String expecting = local
233 String expecting = local
250 String expecting = local
279 String expecting = local
296 String expecting = local
313 String expecting = local
330 String expecting = local
353 String expecting = local
379 String expecting = local
398 String expecting = local
424 String expecting = local
448 String expecting = local
472 String expecting = local
491 String expecting = local
516 String expecting = local
533 String expecting = local
554 String expecting = local
590 String expecting = local
657 String expecting = local
676 String expecting = local
694 String expecting = local
713 String expecting = local
732 String expecting = local
757 String expecting = local
784 String expecting = local
796 String expecting = local
814 String expecting = local
833 String expecting = local
852 String expecting = local
865 String expecting = local
882 String expecting = local
904 String expecting = local
919 String expecting = local
942 String expecting = local
957 String expecting = local
986 String expecting = local
1007 String expecting = local
1036 String expecting = local
1058 String expecting = local
1085 String expecting = local
1112 String expecting = local
1132 String expecting = local
1158 String expecting = local
1178 String expecting = local
    [all...]
TestDFAConversion.java 46 String expecting = local
49 checkDecision(g, 1, expecting, null, null, null, null, 0);
56 String expecting = local
60 checkDecision(g, 1, expecting, null, null, null, null, 0);
68 String expecting = local
72 checkDecision(g, 1, expecting, null, null, null, null, 0);
80 String expecting = local
87 checkDecision(g, 1, expecting, unreachableAlts,
127 String expecting = local
145 checkDecision(g, 1, expecting, unreachableAlts
155 String expecting = local
200 String expecting = local
223 String expecting = local
245 String expecting = local
268 String expecting = local
295 String expecting = local
322 String expecting = local
361 String expecting = local
394 String expecting = local
428 String expecting = local
453 String expecting = local
480 String expecting = local
506 String expecting = local
528 String expecting = local
565 Set expecting = new HashSet() {{add("a"); add("b");}}; local
594 Set expecting = new HashSet() {{add("a"); add("b");}}; local
625 Set expecting = new HashSet() {{add("a"); add("b"); add("d"); add("e");}}; local
634 String expecting = local
658 String expecting = local
684 String expecting = local
703 String expecting = local
723 String expecting = local
736 String expecting = local
772 String expecting = local
840 String expecting = local
850 String expecting = local
860 String expecting = local
871 String expecting = local
882 String expecting = local
898 String expecting = local
914 String expecting = local
924 String expecting = local
934 String expecting = local
947 String expecting = local
970 String expecting = local
993 String expecting = local
1014 String expecting = local
1026 String expecting = local
1040 String expecting = local
1056 String expecting = local
1072 String expecting = local
1101 String expecting = local
1120 String expecting = local
1131 String expecting = local
1141 String expecting = local
1152 String expecting = local
1162 String expecting = local
1173 String expecting = \/\/ still looks like block local
1184 String expecting = local
1197 String expecting = local
1234 String expecting = local
1255 String expecting = local
1276 String expecting = local
1296 String expecting = local
1330 String expecting = local
1365 String expecting = local
1382 String expecting = local
1400 String expecting = local
1422 String expecting = local
1445 String expecting = local
1468 String expecting = local
1516 String expecting = local
1528 String expecting = local
1575 String expecting = local
1593 String expecting = local
    [all...]
TestCharDFAConversion.java 51 String expecting = local
56 checkDecision(g, 1, expecting, null);
67 String expecting = local
73 checkDecision(g, 1, expecting, null);
85 String expecting = local
90 checkDecision(g, 1, expecting, null);
101 String expecting = local
106 checkDecision(g, 1, expecting, null);
120 String expecting = local
132 checkDecision(g, 1, expecting, null)
140 String expecting = local
159 String expecting = local
183 String expecting = local
198 String expecting = local
212 String expecting = local
235 String expecting = local
247 String expecting = local
257 String expecting = local
269 String expecting = local
279 String expecting = local
289 String expecting = local
299 String expecting = local
311 String expecting = local
327 String expecting = local
340 String expecting = local
372 String expecting = local
396 String expecting = local
416 String expecting = local
428 String expecting = local
440 String expecting = local
452 String expecting = local
465 String expecting = local
478 String expecting = local
492 String expecting = local
504 String expecting = local
    [all...]

Completed in 1030 milliseconds

12 3 4 5 6 7 8 91011>>