Home
last modified time | relevance | path

Searched refs:mark_depth (Results 1 – 3 of 3) sorted by relevance

/external/antlr/runtime/Perl5/lib/ANTLR/Runtime/
DANTLRStringStream.pm88 $self->mark_depth(0);
148 $self->mark_depth($self->mark_depth + 1);
150 if ($self->mark_depth >= @{$self->markers}) {
154 $state = $self->markers->[$self->mark_depth];
160 $self->last_marker($self->mark_depth);
162 return $self->mark_depth;
187 $self->mark_depth($marker);
189 $self->mark_depth($self->mark_depth - 1);
/external/antlr/runtime/Ruby/test/unit/
Dtest-streams.rb136 @stream.mark_depth.should == 2
138 @stream.mark_depth.should == 1
152 @stream.mark_depth.should == 2
164 @stream.mark_depth.should == 1
193 @stream.mark_depth.should == 2
222 @stream.mark_depth.should == 2
/external/antlr/runtime/Ruby/lib/antlr3/
Dstreams.rb590 def mark_depth singletonMethod in ANTLR3.StringStream