Home
last modified time | relevance | path

Searched refs:input_stack (Results 1 – 2 of 2) sorted by relevance

/mirbsd/src/gnu/usr.bin/perl/lib/Pod/
DParser.pm217 use vars qw(%myData %myOpts @input_stack);
1552 local *input_stack = $myData{_INPUT_STREAMS};
1553 push(@input_stack, $input_top);
1556 $self->begin_pod() if (@input_stack == 1);
1584 local *input_stack = $myData{_INPUT_STREAMS};
1587 $self->end_input() if (@input_stack > 0);
1588 $self->end_pod() if (@input_stack == 1);
1592 my $old_top = pop(@input_stack);
1597 if (@input_stack > 0) {
1598 $input_top = $myData{_TOP_STREAM} = $input_stack[-1];
/mirbsd/src/usr.bin/make/
Dlowparse.c68 static LIST input_stack; /* Stack of IFiles waiting to be parsed variable
164 Lst_Push(&input_stack, current); in Parse_FromString()
173 Lst_Push(&input_stack, current); in Parse_FromFile()
182 current = (IFile *)Lst_Pop(&input_stack); in Parse_NextFile()
428 Static_Lst_Init(&input_stack); in LowParse_Init()
435 Lst_Destroy(&input_stack, NOFREE); /* Should be empty now */ in LowParse_End()