OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:follow_set
(Results
1 - 3
of
3
) sorted by null
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
BaseRecognizer.pm
275
my $
follow_set
= $self->compute_error_recovery_set();
277
$self->consume_until($input, $
follow_set
);
309
my $
follow_set
= ANTLR::Runtime::BitSet->new();
312
$
follow_set
|= $local_follow_set;
317
#$
follow_set
->remove(ANTLR::Runtime::Token->EOR_TOKEN_TYPE);
318
return $
follow_set
;
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
recognizers.rb
503
follow_set
= compute_error_recovery_set
505
resync { consume_until(
follow_set
) }
780
follow_set
= Set.new
782
follow_set
|= local_follow_set
785
follow_set
.delete( EOR_TOKEN_TYPE ) if index > 0
791
return
follow_set
[
all
...]
/external/bison/src/
ielr.c
577
* - \c
follow_set
contains the follow set for the goto on nonterminal \c n
583
symbol *n, bitset
follow_set
)
586
bitset_copy (
follow_set
, always_follows[n_goto]);
593
bitset_or (
follow_set
,
follow_set
, s->lookaheads[item]);
[
all
...]
Completed in 255 milliseconds