Home
last modified time | relevance | path

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

123

/openssl/Configurations/
H A D50-nonstop.conf5 template => 1,
49 template => 1,
60 template => 1,
71 template => 1,
82 template => 1,
91 template => 1,
100 template => 1,
110 template => 1,
115 template => 1,
120 template => 1,
[all …]
H A D00-base-templates.conf4 template => 1,
43 template => 1,
66 template => 1,
90 template => 1,
124 template => 1,
H A D10-main.conf211 template => 1,
220 template => 1,
229 template => 1,
387 template => 1,
474 template => 1,
1259 template => 1,
1374 template => 1,
1416 template => 1,
1455 template => 1,
1551 template => 1,
[all …]
H A D15-ios.conf10 template => 1,
H A D50-haiku.conf3 template => 1,
/openssl/external/perl/Text-Template-1.56/t/
H A Dbasic.t41 ok(defined $template) or diag $Text::Template::ERROR;
55 my $text = $template->fill_in('package' => 'X');
59 $text = $template->fill_in('package' => 'Y');
70 ok defined $template or diag $Text::Template::ERROR;
73 $text = $template->fill_in('package' => 'X');
77 $text = $template->fill_in('package' => 'Y');
83 $template = Text::Template->new(
94 $text = $template->fill_in('package' => 'X');
98 $text = $template->fill_in('package' => 'Y');
157 $text = $template->fill_in('package' => 'X');
[all …]
H A Dhash.t12 my $template = 'We will put value of $v (which is "good") here -> {$v}';
20 $template = Text::Template->new('type' => 'STRING', 'source' => $template);
21 isa_ok $template, 'Text::Template';
25 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);
57 my $template = Text::Template->new('type' => 'STRING', 'source' => $template8);
58 my $text = $template->fill_in(HASH => { 'v' => undef });
68 $text = $template->fill_in(HASH => [ { 'v' => 17 }, { 'v' => undef } ]);
H A Dwarnings.t23 my $template = <<'EOT';
31 $template = Text::Template->new(type => 'STRING', source => $template);
32 isa_ok $template, 'Text::Template';
34 my $result = $template->fill_in(HASH => { good => 'good' });
40 $template = Text::Template->new(type => 'STRING', package => 'MY', source => '');
41 $template->fill_in(package => 'MY', hash => { include => sub { 'XX' } });
43 $template = Text::Template->new(type => 'STRING', package => 'MY', source => '');
44 $template->fill_in(package => 'MY', hash => { include => sub { 'XX' } });
H A Dsafe3.t20 my $template = q{
37 $template = Text::Template->new(
39 source => $template,
48 my $text = $template->fill_in()
68 my $template = q{{$OUT = 'x'}y{$OUT .= 'z'}};
73 source => $template);
H A Ddelimiters.t15 my $template = q{The value of $V is <<$V>>.};
19 SOURCE => $template,
27 $template1 = Text::Template->new(TYPE => 'STRING', SOURCE => $template);
33 $template = q{The value of $V is [$V].};
36 SOURCE => $template,
44 $template1 = Text::Template->new(TYPE => 'STRING', SOURCE => $template);
H A Dtaint.t30 my $template = 'The value of $n is {$n}.';
33 print $fh $template, "\n";
91 my $ttemplate = $template;
94 should_be_clean($template);
97 should_work TYPE => 'string', SOURCE => $template;
98 should_work TYPE => 'string', SOURCE => $template, UNTAINT => 1;
101 my $array = [$template];
H A Dout.t28 my $template = Text::Template->new('type' => 'STRING', 'source' => $templateIN);
29 isa_ok $template, 'Text::Template';
35 my $text = $template->fill_in();
H A Dofh.t13 my $template = Text::Template->new(
19 my $text = $template->fill_in(OUTPUT => $of);
H A Dsafe.t105 my $template = q{{$x=1}{$x+1}};
107 $template1 = Text::Template->new('type' => 'STRING', 'source' => $template);
110 $template2 = Text::Template->new('type' => 'STRING', 'source' => $template);
/openssl/crypto/store/
H A Dstore_register.c219 template.scheme = scheme; in ossl_store_get0_loader_int()
220 template.open = NULL; in ossl_store_get0_loader_int()
221 template.load = NULL; in ossl_store_get0_loader_int()
222 template.eof = NULL; in ossl_store_get0_loader_int()
223 template.closefn = NULL; in ossl_store_get0_loader_int()
224 template.open_ex = NULL; in ossl_store_get0_loader_int()
250 template.scheme = scheme; in ossl_store_unregister_loader_int()
251 template.open = NULL; in ossl_store_unregister_loader_int()
252 template.load = NULL; in ossl_store_unregister_loader_int()
253 template.eof = NULL; in ossl_store_unregister_loader_int()
[all …]
/openssl/external/perl/Text-Template-1.56/
H A DREADME5 filling in templates generally. A `template' is a piece of text that
7 `fill in' a template, you evaluate the little programs and replace
10 Here's an example of a template:
24 The result of filling in this template is a string, which might look
39 You can store a template in a file outside your program. People can
40 modify the template without modifying the program. You can separate
42 parts of the program into the template. That prevents code bloat and
45 You can fill in the template in a `Safe' compartment. This means that
46 if you don't trust the person who wrote the code in the template, you
H A DMETA.yml2 abstract: 'Expand template text with embedded Perl'
41 bugtracker: https://github.com/mschout/perl-text-template/issues
42 homepage: https://github.com/mschout/perl-text-template
43 repository: https://github.com/mschout/perl-text-template.git
H A DChanges18 - Add support for decoding template files via ENCODING constructor arg
30 - Turn off strict+warnings in sections where template code is eval'ed
36 https://github.com/mschout/perl-text-template/issues/8). Will revisit
159 line number of the template at which the error occurred:
161 Illegal division by zero at template line 37.
177 line number of the template at which the error occurred:
179 Illegal division by zero at template line 37.
202 beginning of every program fragment in a template, either per template,
240 - Fragments may now output data directly to the template, rather than
287 - Better support for filling out the same template more than once
[all …]
/openssl/crypto/aes/asm/
H A Daes-riscv64-zkn.pl97 my $template = 0b0011101_00000_00000_000_00000_0110011;
102 return ".word ".($template | ($rs2 << 20) | ($rs1 << 15) | ($rd << 7));
108 my $template = 0b0011111_00000_00000_000_00000_0110011;
113 return ".word ".($template | ($rs2 << 20) | ($rs1 << 15) | ($rd << 7));
119 my $template = 0b0011001_00000_00000_000_00000_0110011;
124 return ".word ".($template | ($rs2 << 20) | ($rs1 << 15) | ($rd << 7));
130 my $template = 0b0011011_00000_00000_000_00000_0110011;
141 my $template = 0b001100000000_00000_001_00000_0010011;
145 return ".word ".($template | ($rs1 << 15) | ($rd << 7));
151 my $template = 0b00110001_0000_00000_001_00000_0010011;
[all …]
/openssl/crypto/modes/asm/
H A Dghash-riscv64.pl44 my $template = 0b011010111000_00000_101_00000_0010011;
48 return ".word ".($template | ($rs << 15) | ($rd << 7));
54 my $template = 0b0000101_00000_00000_001_00000_0110011;
59 return ".word ".($template | ($rs2 << 20) | ($rs1 << 15) | ($rd << 7));
65 my $template = 0b0000101_00000_00000_011_00000_0110011;
70 return ".word ".($template | ($rs2 << 20) | ($rs1 << 15) | ($rd << 7));
/openssl/doc/man3/
H A DOSSL_CRMF_MSG_get0_tmpl.pod47 OSSL_CRMF_MSG_get0_tmpl() retrieves the certificate template of I<crm>.
50 given certificate template I<tmpl>.
53 given certificate template I<tmpl>.
56 given certificate template I<tmpl>.
59 given certificate template I<tmpl>.
62 of the given certificate template I<tmpl>, or NULL if not present.
H A DASN1_item_d2i_bio.pod32 I<len> which must be a DER-encoded ASN.1 structure, using the ASN.1 template
46 which must be a DER-encoded ASN.1 structure, using the ASN.1 template I<it>
66 using the ASN.1 template I<it> and returns the result in a memory BIO.
/openssl/test/
H A Dgenerate_ssl_tests.pl47 my $template = Text::Template->new(TYPE => 'FILE', SOURCE => $source);
126 my $text = $template->fill_in(
H A Dendecoder_legacy_test.c241 EVP_PKEY *template = NULL; in make_key() local
252 || EVP_PKEY_generate(ctx, &template) <= 0)) in make_key()
261 template != NULL in make_key()
262 ? EVP_PKEY_CTX_new(template, NULL) in make_key()
270 EVP_PKEY_free(template); in make_key()
/openssl/util/
H A Ddofile.pl80 my $template = OpenSSL::Template->new(%$_);

Completed in 81 milliseconds

123