HomeSort by relevance Sort by last modified time
    Searched refs:expecting (Results 76 - 100 of 140) sorted by null

1 2 34 5 6

  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRMismatchedTokenException.h 35 NSInteger expecting; variable
40 @property (assign, getter=getExpecting, setter=setExpecting:) NSInteger expecting; variable
  /external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
TestCommonTokenStream.java 55 String expecting = "x"; local
56 assertEquals(expecting, result);
76 String expecting = " "; local
77 assertEquals(expecting, result);
106 String expecting = "x = 3 * 0 + 2 * 0;"; local
107 assertEquals(expecting, result);
137 String expecting = "x = 3 * 0 + 2 * 0;"; local
138 assertEquals(expecting, result);
TestInterpretedLexing.java 176 String expecting = "123 139.52"; local
177 assertEquals(expecting, result);
  /external/openssh/contrib/
ssh-copy-id 51 to make sure we haven't added extra keys that you weren't expecting.
  /external/valgrind/main/memcheck/tests/
leak-delta.stderr.exp 0 expecting details 10 bytes reachable
7 expecting to have NO details
8 expecting details +10 bytes lost, +21 bytes reachable
19 expecting details +65 bytes reachable
25 expecting to have NO details
26 expecting details +10 bytes reachable
32 expecting details -10 bytes reachable, +10 bytes lost
43 expecting details -10 bytes lost, +10 bytes reachable
54 expecting details 32 (+32) bytes lost, 33 (-32) bytes reachable
  /external/antlr/antlr-3.4/runtime/Ruby/test/unit/
test-trees.rb 23 expecting = '101'
27 found.should == expecting
29 expecting = '<UNKNOWN: 101>'
32 found.should == expecting
67 expecting = "101 102 103 104"
69 found.should == expecting
71 expecting = "<UNKNOWN: 101> <DOWN> <UNKNOWN: 102> <DOWN> <UNKNOWN: 103> <UP> <UNKNOWN: 104> <UP>"
73 found.should == expecting
90 expecting = '101 102 103 104 105'
92 found.should == expecting
    [all...]
  /external/antlr/antlr-3.4/runtime/C/include/
antlr3exception.h 48 /** Indicates that the recognizer was expecting one token and found a
150 /** Indicates the token we were expecting to see next when the error occurred
152 ANTLR3_UINT32 expecting; member in struct:ANTLR3_EXCEPTION_struct
154 /** Indicates a set of tokens that we were expecting to see one of when the
  /external/antlr/antlr-3.4/runtime/Python/tests/
t006lexer.py 54 assert exc.expecting == 'f', repr(exc.expecting)
t005lexer.py 58 assert exc.expecting == 'f', repr(exc.expecting)
t001lexer.py 52 self.failUnlessEqual(exc.expecting, '0')
t004lexer.py 64 self.failUnlessEqual(exc.expecting, 'f')
t009lexer.py 60 assert exc.expecting is None
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
BaseRecognizer.java 224 if ( ute.expecting== Token.EOF ) {
228 tokenName = tokenNames[ute.expecting];
231 " expecting "+tokenName;
236 if ( mte.expecting== Token.EOF ) {
240 tokenName = tokenNames[mte.expecting];
247 if ( mte.expecting== Token.EOF ) {
251 tokenName = tokenNames[mte.expecting];
254 " expecting "+tokenName;
259 if ( mtne.expecting==Token.EOF ) {
263 tokenName = tokenNames[mtne.expecting];
    [all...]
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/tool/src/main/java/org/antlr/tool/
GrammarSpelunker.java 67 protected void match(String expecting) throws IOException {
68 //System.out.println("match "+expecting+"; is "+token);
69 if ( token.equals(expecting) ) consume();
71 "' not expected '"+expecting+"'");
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
BaseRecognizer.js 299 if ( ute.expecting== org.antlr.runtime.Token.EOF ) {
302 tokenName = tokenNames[ute.expecting];
305 " expecting "+tokenName;
310 if ( mte.expecting== org.antlr.runtime.Token.EOF ) {
313 tokenName = tokenNames[mte.expecting];
320 if ( mte.expecting== org.antlr.runtime.Token.EOF ) {
324 tokenName = tokenNames[mte.expecting];
327 " expecting "+tokenName;
338 " expecting set "+e.expecting;
    [all...]
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/qemu/
json-parser.c 388 parse_error(ctxt, token, "expecting value");
406 parse_error(ctxt, token, "expecting value");
  /external/bison/examples/calc++/
calc++-parser.cc 835 YYCASE_(2, YY_("syntax error, unexpected %s, expecting %s"));
836 YYCASE_(3, YY_("syntax error, unexpected %s, expecting %s or %s"));
837 YYCASE_(4, YY_("syntax error, unexpected %s, expecting %s or %s or %s"));
838 YYCASE_(5, YY_("syntax error, unexpected %s, expecting %s or %s or %s or %s"));
    [all...]
  /external/antlr/antlr-3.4/runtime/Python/antlr3/
recognizers.py 323 if e.expecting == EOF:
327 tokenName = self.tokenNames[e.expecting]
329 msg = "extraneous input %s expecting %s" % (
336 if e.expecting == EOF:
340 tokenName = self.tokenNames[e.expecting]
348 if e.expecting == EOF:
351 tokenName = self.tokenNames[e.expecting]
355 + " expecting " \
360 if e.expecting == EOF:
363 tokenName = self.tokenNames[e.expecting]
    [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/bison/data/
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 "+
  /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...]

Completed in 803 milliseconds

1 2 34 5 6