Home
last modified time | relevance | path

Searched refs:fill_in (Results 1 – 25 of 25) sorted by relevance

/openssl/external/perl/Text-Template-1.56/t/
H A Dbasic.t55 my $text = $template->fill_in('package' => 'X');
59 $text = $template->fill_in('package' => 'Y');
73 $text = $template->fill_in('package' => 'X');
77 $text = $template->fill_in('package' => 'Y');
94 $text = $template->fill_in('package' => 'X');
98 $text = $template->fill_in('package' => 'Y');
106 $text = $tmpl->fill_in();
116 $text = $tmpl->fill_in();
142 my $text = $tmpl->fill_in;
157 $text = $template->fill_in('package' => 'X');
[all …]
H A Dprepend.t31 my $t1 = $tmpl1->fill_in(PACKAGE => 'T1');
32 my $t2 = $tmpl2->fill_in(PACKAGE => 'T2');
33 my $t3 = $tmpl2->fill_in(PREPEND => q{$foo = "fillin"}, PACKAGE => 'T3');
52 $t1 = $tmpl1->fill_in(PACKAGE => 'T4');
53 $t2 = $tmpl2->fill_in(PACKAGE => 'T5');
54 $t3 = $tmpl2->fill_in(PREPEND => q{$foo = "fillin"}, PACKAGE => 'T6');
72 $t1 = $tmpl1->fill_in(PACKAGE => 'T4');
73 $t2 = $tmpl2->fill_in(PACKAGE => 'T5');
74 $t3 = $tmpl2->fill_in(PREPEND => q{$foo = "fillin"}, PACKAGE => 'T6');
H A Dsafe.t40 my $text1 = $template1->fill_in();
43 my $text2 = $template1->fill_in(SAFE => $c);
46 my $text3 = $template2->fill_in(SAFE => $c);
78 $text1 = $template1->fill_in();
81 $text2 = $template1->fill_in(SAFE => $c);
84 $text3 = $template2->fill_in(SAFE => $c);
87 my $text4 = $template1->fill_in();
113 $text1 = $template1->fill_in();
114 $text2 = $template1->fill_in(SAFE => Safe->new);
129 $text1 = $templateB->fill_in(
H A Dsafe2.t33 my $text = $t->fill_in();
37 $text = $t->fill_in(PACKAGE => 'Q');
42 $text = $t->fill_in(SAFE => $c);
49 $text = $t->fill_in(SAFE => $c, PACKAGE => 'Q');
59 $text = $t->fill_in(HASH => { H => 'good5' });
66 $text = $t->fill_in(HASH => { H => 'good6' }, PACKAGE => 'Q');
72 $text = $t->fill_in(HASH => { H => 'good7' }, SAFE => $c);
81 $text = $t->fill_in(HASH => { H => 'good8' }, SAFE => $c, PACKAGE => 'Q2');
H A Dbroken.t14 SOURCE => '{1/0}',)->fill_in();
23 BROKEN => sub { '---' },)->fill_in();
31 SOURCE => '{1/0}',)->fill_in(BROKEN => sub { '---' });
43 },)->fill_in();
52 )->fill_in(
63 ->fill_in(BROKEN => sub { undef });
H A Dhash.t25 my $text = $template->fill_in(HASH => $vars);
33 $text = $template->fill_in(HASH => $vars);
38 $text = $template->fill_in(HASH => $vars, PACKAGE => 'Q');
46 $text = $template->fill_in(HASH => $vars);
58 my $text = $template->fill_in(HASH => { 'v' => undef });
68 $text = $template->fill_in(HASH => [ { 'v' => 17 }, { 'v' => undef } ]);
H A Ddelimiters.t23 my $text = $template1->fill_in();
28 $text = $template1->fill_in(DELIMITERS => [ '<<', '>>' ]);
40 $text = $template1->fill_in();
45 $text = $template1->fill_in(DELIMITERS => [ '[', ']' ]);
78 my $text = $tmpl->fill_in;
H A Dwarnings.t34 my $result = $template->fill_in(HASH => { good => 'good' });
41 $template->fill_in(package => 'MY', hash => { include => sub { 'XX' } });
44 $template->fill_in(package => 'MY', hash => { include => sub { 'XX' } });
H A Dsafe3.t48 my $text = $template->fill_in()
50 my $textOUT = $templateOUT->fill_in()
76 my $r = $o->fill_in(SAFE => $s);
H A Dstrict.t32 my $t1 = $tmpl1->fill_in(PACKAGE => 'T1', STRICT => 1, HASH => { bar => 'baz' });
35 my $t2 = $tmpl2->fill_in(PACKAGE => 'T2', HASH => { bar => 'baz' });
38 my $t3 = $tmpl2->fill_in(
H A Dout.t35 my $text = $template->fill_in();
36 my $textOUT = $templateOUT->fill_in();
H A Dtemplate-encoding.t30 )->fill_in(HASH => { name => 'World' });
45 )->fill_in(HASH => { name => 'World' });
H A Dtaint.t38 eval { $obj->fill_in() };
49 eval { $obj->fill_in() };
H A Dinline-comment.t17 is $tmpl->fill_in(HASH => $vars), 'Hello Bob';
H A Dnested-tags.t24 is $tmpl->fill_in, ' {{$NEXT}} ';
H A Drt29928.t22 my $t1 = $tmpl1->fill_in(
H A Dofh.t19 my $text = $template->fill_in(OUTPUT => $of);
H A Dpreprocess.t40 my $o = $tmpl->fill_in(@args, HASH => { x => 119, 'y' => 23, z => 5 });
/openssl/external/perl/Text-Template-1.56/lib/Text/Template/
H A DPreprocess.pm12 sub fill_in { subroutine
29 $self->SUPER::fill_in(@_);
/openssl/util/perl/OpenSSL/
H A DTemplate.pm58 sub fill_in { subroutine
64 $self->SUPER::fill_in(HASH => { quotify1 => \&quotify1,
/openssl/external/perl/Text-Template-1.56/lib/Text/
H A DTemplate.pm293 sub fill_in { subroutine
462 my $result = $templ->fill_in(@_);
483 my $text = $templ->fill_in(@_);
/openssl/external/perl/Text-Template-1.56/
H A DChanges51 - Add "strict" option to fill_in(). This adds "use strict" and "use vars
65 - Fix + document the FILENAME parameter to fill_in() (Thanks VDB) [106093]
105 and the ->fill_in call would fail.
154 you may supply a PREPROCESS option in the constructor or the fill_in
186 you may supply a PREPROCESS option in the fill_in call; this is a
203 or for all templates, or for the duration of only one call to fill_in.
265 - Code added to support HASH option to fill_in. (Incl. `_gensym'
/openssl/test/
H A Dgenerate_ssl_tests.pl126 my $text = $template->fill_in(
/openssl/
H A Dconfigdata.pm.in140 $tmpl->fill_in(FILENAME => $_,
162 $tmpl->fill_in(FILENAME => $_,
H A DConfigure2969 $configdata_tmpl->fill_in(

Completed in 36 milliseconds