Searched refs:bracket_count (Results 1 - 4 of 4) sorted by relevance

/openbsd-current/gnu/usr.bin/perl/cpan/Pod-Simple/lib/Pod/Simple/
H A DJustPod.pm190 my $bracket_count = (exists $flags->{'~bracket_count'})
191 ? $flags->{'~bracket_count'}
193 $self->handle_text($type . ( "<" x $bracket_count));
196 if ($bracket_count > 1) {
209 push @{$self->{'fcode_end'}}, [ $bracket_count, $rspacer ];
224 my $bracket_count = 1;
232 $bracket_count = $fcode_end->[0];
236 $self->handle_text($rspacer) if $bracket_count > 1;
237 $self->handle_text(">" x $bracket_count);
[all...]
H A DBlackBox.pm2143 my $bracket_count; # How many '<<<' in a row this has. Needed for
2147 $bracket_count = length($2) + 1;
2148 push @stack, $bracket_count; # length of the necessary complex
2153 $bracket_count = 1;
2179 if ($self->{'_output_is_for_JustPod'} && $bracket_count > 1) {
2180 $lineage[-1][1]{'~bracket_count'} = $bracket_count;
2181 my $lspacer = substr($1, 1 + $bracket_count);
/openbsd-current/gnu/usr.bin/gcc/gcc/java/
H A Dparse-scan.c324 static int bracket_count; variable
2475 while (bracket_count-- > 0)
2483 while (bracket_count-- > 0)
2567 { bracket_count = 0; USE_ABSORBER; }
2572 { ++bracket_count; }
2632 if (bracket_count)
2635 char *n = xmalloc (bracket_count + 1 + strlen (yyval.node));
2636 for (i = 0; i < bracket_count; ++i)
2638 strcpy (n + bracket_count, yyval.node);
2649 if (bracket_count)
[all...]
H A Dparse-scan.y82 static int bracket_count;
268 while (bracket_count-- > 0)
273 while (bracket_count-- > 0)
442 { bracket_count = 0; USE_ABSORBER; }
444 { ++bracket_count; }
501 if (bracket_count)
504 char *n = xmalloc (bracket_count + 1 + strlen ($$));
505 for (i = 0; i < bracket_count; ++i)
507 strcpy (n + bracket_count, $$);
515 if (bracket_count)
[all...]

Completed in 180 milliseconds