HomeSort by relevance Sort by last modified time
    Searched refs:expecting (Results 126 - 150 of 263) sorted by null

1 2 3 4 56 7 8 91011

  /external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
TestInterpretedLexing.java 176 String expecting = "123 139.52"; local
177 assertEquals(expecting, result);
TestAutoAST.java 530 String expecting = "id list=[[@0,0:0='a',<4>,1:0], [@2,2:2='b',<4>,1:2]];a b\n"; local
531 assertEquals(expecting, found);
546 String expecting = "id list=[[@0,0:0='a',<4>,1:0], [@2,2:2='b',<4>,1:2]];(a b)\n"; local
547 assertEquals(expecting, found);
676 assertEquals("line 1:4 extraneous input '34' expecting ID\n", this.stderrDuringParse);
708 assertEquals("line 1:0 mismatched input 'x' expecting set null\n", this.stderrDuringParse);
737 assertEquals("line 1:3 mismatched input '<EOF>' expecting INT\n", this.stderrDuringParse);
753 assertEquals("line 1:4 extraneous input 'ick' expecting INT\n", this.stderrDuringParse);
TestCompositeGrammars.java 787 boolean expecting = true; // should be ok
788 assertEquals(expecting, ok);
850 boolean expecting = true; // should be ok
851 assertEquals(expecting, ok);
950 boolean expecting = true; // should be ok
951 assertEquals(expecting, ok);
    [all...]
TestRewriteAST.java 1086 String expecting = local
1103 String expecting = local
1120 String expecting = local
1137 String expecting = local
    [all...]
  /external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
Lexer.pm 169 expecting => $c,
257 . ' expecting '
258 . $self->get_char_error_display($e->expecting);
266 . ' expecting set ' . $e->expecting;
269 . ' expecting set ' . $e->expecting;
272 . ' expecting set ' . $self->get_char_error_display($e->a)
BaseRecognizer.pm 128 expecting => $ttype,
134 expecting => $ttype,
140 expecting => $ttype,
185 . ' expecting ' . $token_name;
195 . ' expecting ' . $token_name;
203 . ' expecting set ' . $e->get_expecting;
206 . ' expecting set ' . $e->get_expecting;
328 expecting => $ttype,
349 expecting => $ttype,
358 expecting => $ttype
    [all...]
  /external/antlr/antlr-3.4/runtime/Python/tests/
t004lexer.py 64 self.failUnlessEqual(exc.expecting, 'f')
t009lexer.py 60 assert exc.expecting is None
  /prebuilts/build-tools/common/bison/
lalr1.cc 949 YYCASE_(2, YY_("syntax error, unexpected %s, expecting %s"));
950 YYCASE_(3, YY_("syntax error, unexpected %s, expecting %s or %s"));
951 YYCASE_(4, YY_("syntax error, unexpected %s, expecting %s or %s or %s"));
952 YYCASE_(5, YY_("syntax error, unexpected %s, expecting %s or %s or %s or %s"));
    [all...]
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
Lexer.as 246 msg = "mismatched character "+getCharErrorDisplay(e.c)+" expecting "+getCharErrorDisplay(mte.expecting);
262 msg = "mismatched character "+getCharErrorDisplay(e.c)+" expecting set "+mnse.expecting;
266 msg = "mismatched character "+getCharErrorDisplay(e.c)+" expecting set "+mse.expecting;
270 msg = "mismatched character "+getCharErrorDisplay(e.c)+" expecting set "+
BaseRecognizer.as 203 if ( ute.expecting== TokenConstants.EOF ) {
207 tokenName = tokenNames[ute.expecting];
210 " expecting "+tokenName;
215 if ( mite.expecting == TokenConstants.EOF ) {
219 tokenName = tokenNames[mite.expecting];
226 if ( mte.expecting== TokenConstants.EOF ) {
230 tokenName = tokenNames[mte.expecting];
233 " expecting "+tokenName;
238 if ( mtne.expecting==TokenConstants.EOF ) {
242 tokenName = tokenNames[mtne.expecting];
    [all...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
Lexer.java 272 msg = "mismatched character "+getCharErrorDisplay(e.c)+" expecting "+getCharErrorDisplay(mte.expecting);
288 msg = "mismatched character "+getCharErrorDisplay(e.c)+" expecting set "+mse.expecting;
292 msg = "mismatched character "+getCharErrorDisplay(e.c)+" expecting set "+mse.expecting;
296 msg = "mismatched character "+getCharErrorDisplay(e.c)+" expecting set "+
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
Lexer.js 223 msg = "mismatched character "+this.getCharErrorDisplay(e.c)+" expecting "+this.getCharErrorDisplay(e.expecting);
232 msg = "mismatched character "+this.getCharErrorDisplay(e.c)+" expecting set "+e.expecting;
235 msg = "mismatched character "+this.getCharErrorDisplay(e.c)+" expecting set "+e.expecting;
238 msg = "mismatched character "+this.getCharErrorDisplay(e.c)+" expecting set "+
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
recognizers.rb 436 token_name = token_name( e.expecting )
437 "extraneous input #{ token_error_display( e.unexpected_token ) } expecting #{ token_name }"
439 token_name = token_name( e.expecting )
442 token_name = token_name( e.expecting )
443 "mismatched input #{ token_error_display( e.symbol ) } expecting #{ token_name }"
445 token_name = token_name( e.expecting )
446 "mismatched tree node: #{ e.symbol } expecting #{ token_name }"
450 "mismatched input %s expecting set %s" %
451 [ token_error_display( e.symbol ), e.expecting.inspect ]
453 "mismatched input %s expecting set %s"
    [all...]
  /external/swiftshader/src/OpenGL/compiler/preprocessor/
ExpressionParser.cpp     [all...]
  /external/clang/test/PCH/
thread-safety-attrs.cpp 262 expected-warning{{expecting mutex 'sls_mu' to be held at start of each loop}}
274 sls_mu.Unlock(); // expected-warning{{expecting mutex 'sls_mu' to be held at start of each loop}}
281 // expected-warning{{expecting mutex 'sls_mu' to be held at start of each loop}} \
289 while(getBool()) { // expected-warning{{expecting mutex 'sls_mu' to be held at start of each loop}}
296 expected-warning{{expecting mutex 'sls_mu' to be held at start of each loop}}
  /prebuilts/go/darwin-x86/src/io/
pipe.go 5 // Pipe adapter to connect code expecting an io.Reader
6 // with code expecting an io.Writer.
172 // It can be used to connect code expecting an io.Reader
173 // with code expecting an io.Writer.
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug277.go 63 bug277.go:46: syntax error: unexpected (, expecting {
  /prebuilts/go/linux-x86/src/io/
pipe.go 5 // Pipe adapter to connect code expecting an io.Reader
6 // with code expecting an io.Writer.
172 // It can be used to connect code expecting an io.Reader
173 // with code expecting an io.Writer.
  /prebuilts/go/linux-x86/test/fixedbugs/
bug277.go 63 bug277.go:46: syntax error: unexpected (, expecting {
  /prebuilts/go/darwin-x86/src/encoding/json/
scanner.go 499 return s.error(c, "in literal true (expecting 'r')")
508 return s.error(c, "in literal true (expecting 'u')")
517 return s.error(c, "in literal true (expecting 'e')")
526 return s.error(c, "in literal false (expecting 'a')")
535 return s.error(c, "in literal false (expecting 'l')")
544 return s.error(c, "in literal false (expecting 's')")
553 return s.error(c, "in literal false (expecting 'e')")
562 return s.error(c, "in literal null (expecting 'u')")
571 return s.error(c, "in literal null (expecting 'l')")
580 return s.error(c, "in literal null (expecting 'l')"
    [all...]
  /prebuilts/go/linux-x86/src/encoding/json/
scanner.go 499 return s.error(c, "in literal true (expecting 'r')")
508 return s.error(c, "in literal true (expecting 'u')")
517 return s.error(c, "in literal true (expecting 'e')")
526 return s.error(c, "in literal false (expecting 'a')")
535 return s.error(c, "in literal false (expecting 'l')")
544 return s.error(c, "in literal false (expecting 's')")
553 return s.error(c, "in literal false (expecting 'e')")
562 return s.error(c, "in literal null (expecting 'u')")
571 return s.error(c, "in literal null (expecting 'l')")
580 return s.error(c, "in literal null (expecting 'l')"
    [all...]
  /external/antlr/antlr-3.4/runtime/C/src/
antlr3baserecognizer.c 539 recognizer->state->exception->expecting = nextt;
651 recognizer->state->exception->expecting = ttype;
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/syntax/
parser.go 101 p.syntax_error("expecting " + tokstring(tok))
143 case strings.HasPrefix(msg, "expecting"):
374 p.syntax_error(fmt.Sprintf("expecting %s or %s", tokstring(sep), tokstring(close)))
533 p.syntax_error("expecting name or (")
656 p.syntax_error("unexpected <-, expecting chan")
665 p.syntax_error(fmt.Sprintf("unexpected %s, expecting chan", String(t)))
791 p.syntax_error("expecting expression")
857 p.syntax_error("expecting name or (")
1006 p.syntax_error("expecting type")
1312 p.syntax_error("expecting field name or embedded type"
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/syntax/
parser.go 101 p.syntax_error("expecting " + tokstring(tok))
143 case strings.HasPrefix(msg, "expecting"):
374 p.syntax_error(fmt.Sprintf("expecting %s or %s", tokstring(sep), tokstring(close)))
533 p.syntax_error("expecting name or (")
656 p.syntax_error("unexpected <-, expecting chan")
665 p.syntax_error(fmt.Sprintf("unexpected %s, expecting chan", String(t)))
791 p.syntax_error("expecting expression")
857 p.syntax_error("expecting name or (")
1006 p.syntax_error("expecting type")
1312 p.syntax_error("expecting field name or embedded type"
    [all...]

Completed in 749 milliseconds

1 2 3 4 56 7 8 91011