HomeSort by relevance Sort by last modified time
    Searched refs:expected_token_type (Results 1 - 5 of 5) sorted by null

  /external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
Parser.pm 33 my $expected_token_type = $arg_ref->{expected_token_type};
37 if ($expected_token_type == ANTLR::Runtime::Token->EOF) {
41 $token_text = '<missing ' . $self->get_token_names()->[$expected_token_type] . '>';
45 type => $expected_token_type,
BaseRecognizer.pm 345 expected_token_type => $ttype,
373 expected_token_type => ANTLR::Runtime::Token->INVALID_TOKEN_TYPE,
411 my $expected_token_type = $arg_ref->{expected_token_type};
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
tree.rb 123 def missing_symbol( error, expected_token_type, follow )
124 name = token_name( expected_token_type ).to_s
128 t.type = expected_token_type
    [all...]
recognizers.rb 684 def missing_symbol( error, expected_token_type, follow )
    [all...]
  /external/chromium/testing/gmock/scripts/generator/cpp/
ast.py 848 def _GetTokensUpTo(self, expected_token_type, expected_token):
849 return self._GetVarTokensUpTo(expected_token_type, expected_token)[0]
851 def _GetVarTokensUpTo(self, expected_token_type, *expected_tokens):
854 while (last_token.token_type != expected_token_type or
    [all...]

Completed in 131 milliseconds