HomeSort by: relevance | last modified time | path
    Searched defs:Template (Results 1 - 25 of 44) sorted by relevancy

1 2

  /src/crypto/external/bsd/openssl.old/dist/external/perl/transfer/Text/
Template.pm 8 # Quick transfer to the downloaded Text::Template
10 package transfer::Text::Template;
16 use lib catdir(dirname(__FILE__), "..", "..", "Text-Template-1.46", "lib");
18 use lib catdir(dirname(__FILE__), "..", "..", "Text-Template-1_46", "lib");
19 use Text::Template;
  /src/crypto/external/bsd/openssl/dist/external/perl/Text-Template-1.56/lib/Text/Template/
Preprocess.pm 2 package Text::Template::Preprocess;
3 $Text::Template::Preprocess::VERSION = '1.56';
4 # ABSTRACT: Expand template text with embedded Perl
9 use Text::Template;
10 our @ISA = qw(Text::Template);
52 Text::Template::Preprocess - Expand template text with embedded Perl
60 use Text::Template::Preprocess;
62 my $t = Text::Template::Preprocess->new(...); # identical to Text::Template
    [all...]
  /src/crypto/external/bsd/openssl.old/dist/external/perl/Text-Template-1.46/lib/Text/Template/
Preprocess.pm 2 package Text::Template::Preprocess;
3 use Text::Template;
4 @ISA = qw(Text::Template);
5 $Text::Template::Preprocess::VERSION = 1.46;
33 Text::Template::Preprocess - Expand template text with embedded Perl
37 This file documents C<Text::Template::Preprocess> version B<1.46>
41 use Text::Template::Preprocess;
43 my $t = Text::Template::Preprocess->new(...); # identical to Text::Template
    [all...]
  /src/crypto/external/apache2/openssl/dist/external/perl/Text-Template-1.56/lib/Text/Template/
Preprocess.pm 2 package Text::Template::Preprocess;
3 $Text::Template::Preprocess::VERSION = '1.56';
4 # ABSTRACT: Expand template text with embedded Perl
9 use Text::Template;
10 our @ISA = qw(Text::Template);
52 Text::Template::Preprocess - Expand template text with embedded Perl
60 use Text::Template::Preprocess;
62 my $t = Text::Template::Preprocess->new(...); # identical to Text::Template
    [all...]
  /src/crypto/external/apache2/openssl/dist/util/perl/OpenSSL/
Template.pm 9 # Implements the functionality to read one or more template files and run
10 # them through Text::Template
12 package OpenSSL::Template;
16 OpenSSL::Template - a private extension of Text::Template
20 This provides exactly the functionality from Text::Template, with the
27 The template perl code delimiters (given with the C<DELIMITER> option)
32 A few extra functions are offered to be used by the template perl code, see
41 use Text::Template 1.46;
43 our @ISA = qw(Text::Template); # paren
    [all...]
  /src/crypto/external/bsd/openssl/dist/util/perl/OpenSSL/
Template.pm 9 # Implements the functionality to read one or more template files and run
10 # them through Text::Template
12 package OpenSSL::Template;
16 OpenSSL::Template - a private extension of Text::Template
20 This provides exactly the functionality from Text::Template, with the
27 The template perl code delimiters (given with the C<DELIMITER> option)
32 A few extra functions are offered to be used by the template perl code, see
41 use Text::Template 1.46;
43 our @ISA = qw(Text::Template); # paren
    [all...]
  /src/crypto/external/bsd/openssl.old/dist/util/
dofile.pl 9 # Reads one or more template files and runs it through Text::Template
31 # Make a subclass of Text::Template to override append_text_to_result,
34 # http://search.cpan.org/~mjd/Text-Template-1.46/lib/Text/Template.pm#Automatic_postprocessing_of_template_hunks
36 package OpenSSL::Template;
38 # Because we know that Text::Template isn't a core Perl module, we use
43 use with_fallback "Text::Template 1.46";
45 #use parent qw/Text::Template/;
47 push @ISA, qw/Text::Template/;
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
TemplateArgumentVisitor.h 22 /// A simple visitor class that helps create template argument visitors.
23 template <template <typename> class Ref, typename ImplClass,
40 DISPATCH(Template);
62 VISIT_METHOD(Template);
78 /// A simple visitor class that helps create template argument visitors.
82 template <typename ImplClass, typename RetTy = void, typename... ParamTys>
87 /// A simple visitor class that helps create template argument visitors.
91 template <typename ImplClass, typename RetTy = void, typename... ParamTys>
TemplateName.h 1 //===- TemplateName.h - C++ Template Name Representation --------*- C++ -*-===//
46 /// template names or an already-substituted template template parameter pack.
60 /// The number of stored templates or template arguments,
104 /// overloaded template name.
129 /// A structure for storing an already-substituted template template
132 /// This kind of template names occurs when the parameter pack has been
133 /// provided with a template template argument pack in a context where it
    [all...]
TemplateBase.h 10 // template representation.
42 template <> struct PointerLikeTypeTraits<clang::Expr *> {
61 /// Represents a template argument.
64 /// The kind of template argument we're storing.
66 /// Represents an empty template argument, e.g., one that has not
70 /// The template argument is a type.
73 /// The template argument is a declaration that was provided for a pointer,
74 /// reference, or pointer to member non-type template parameter.
77 /// The template argument is a null pointer or null pointer to member that
78 /// was provided for a non-type template parameter
    [all...]
DeclarationName.h 34 template <typename> class CanQual;
81 /// The template named by the deduction guide.
82 TemplateDecl *Template;
90 : DeclarationNameExtra(CXXDeductionGuideName), Template(TD),
94 void Profile(llvm::FoldingSetNodeID &ID) { ID.AddPointer(Template); }
450 /// template associated with that name.
455 return castAsCXXDeductionGuideNameExtra()->Template;
601 /// from the corresponding template declaration.
623 /// Returns the name of a C++ deduction guide for the given template.
846 /// Determine whether this name involves a template parameter
    [all...]
  /src/crypto/external/bsd/openssl/dist/external/perl/Text-Template-1.56/lib/Text/
Template.pm 2 # Text::Template.pm
9 # If in doubt, write to mjd-perl-template+@plover.com for a license.
12 package Text::Template;
13 $Text::Template::VERSION = '1.56';
14 # ABSTRACT: Expand template text with embedded Perl
26 my %GLOBAL_PREPEND = ('Text::Template' => '');
29 $Text::Template::VERSION;
102 # Convert template objects of various types to type STRING,
103 # in which the template data is embedded in the object itself.
284 $t = $GLOBAL_PREPEND{'Text::Template'};
    [all...]
  /src/crypto/external/bsd/openssl.old/dist/external/perl/Text-Template-1.46/lib/Text/
Template.pm 2 # Text::Template.pm
9 # If in doubt, write to mjd-perl-template+@plover.com for a license.
13 package Text::Template;
21 $Text::Template::VERSION = '1.46';
22 my %GLOBAL_PREPEND = ('Text::Template' => '');
25 $Text::Template::VERSION;
86 # Convert template objects of various types to type STRING,
87 # in which the template data is embedded in the object itself.
230 $t = $GLOBAL_PREPEND{'Text::Template'};
257 my $fi_filename = _param('filename') || $fi_self->{FILENAME} || 'template';
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Tooling/
RefactoringCallbacks.h 58 template <typename T>
89 /// evaluating the template in \c ToTemplate.
106 std::vector<TemplateElement> Template);
108 std::vector<TemplateElement> Template;
  /src/external/apache2/llvm/dist/clang/lib/AST/
TemplateName.cpp 1 //===- TemplateName.cpp - C++ Template Name Representation ----------------===//
68 TemplateName::TemplateName(TemplateDecl *Template) : Storage(Template) {}
84 return Template;
102 if (TemplateDecl *Template = Storage.dyn_cast<TemplateDecl *>())
103 return Template;
159 // Substituting a dependent template name: preserve it as written.
163 // If we have a template declaration, use the most recent non-friend
164 // declaration of that template.
168 assert(Decl && "all declarations of template are friends")
    [all...]
TemplateBase.cpp 1 //===- TemplateBase.cpp - Common template AST class implementation --------===//
9 // This file implements common classes used throughout C++ template
46 /// Print a template integral argument value.
55 /// matches the type of the template argument.
63 // In Sema::CheckTemplateArugment, enum template arguments value are
65 // may create a size difference between the enum value and template
192 llvm_unreachable("Should not have a NULL template argument");
200 case Template:
250 case Template:
283 case TemplateArgument::Template
    [all...]
TypeLoc.cpp 580 case TemplateArgument::Template:
583 TemplateName Template = Args[i].getAsTemplateOrTemplatePattern();
584 if (DependentTemplateName *DTN = Template.getAsDependentTemplateName())
586 else if (QualifiedTemplateName *QTN = Template.getAsQualifiedTemplateName())
591 Args[i].getKind() == TemplateArgument::Template ? SourceLocation()
ODRHash.cpp 100 auto *Template = Name.getCXXDeductionGuideTemplate();
101 AddBoolean(Template);
102 if (Template) {
103 AddDecl(Template);
143 case TemplateName::Template:
173 case TemplateArgument::Template:
  /src/crypto/external/apache2/openssl/dist/external/perl/Text-Template-1.56/lib/Text/
Template.pm 2 # Text::Template.pm
9 # If in doubt, write to mjd-perl-template+@plover.com for a license.
12 package Text::Template;
13 $Text::Template::VERSION = '1.56';
14 # ABSTRACT: Expand template text with embedded Perl
26 my %GLOBAL_PREPEND = ('Text::Template' => '');
29 $Text::Template::VERSION;
102 # Convert template objects of various types to type STRING,
103 # in which the template data is embedded in the object itself.
284 $t = $GLOBAL_PREPEND{'Text::Template'};
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Sema/
ParsedTemplate.h 1 //===--- ParsedTemplate.h - Template Parsing Data Types ---------*- C++ -*-===//
28 /// Represents the parsed form of a C++ template argument.
31 /// Describes the kind of template argument that was parsed.
33 /// A template type parameter, stored as a type.
35 /// A non-type template parameter, stored as an expression.
37 /// A template template argument, stored as a template name.
38 Template
41 /// Build an empty template argument
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Index/
IndexingContext.cpp 213 const auto *Template = SD->getTemplateInstantiationPattern();
214 if (Template)
215 return Template;
216 // Fallback to primary template if no instantiation is available yet (e.g.
IndexDecl.cpp 57 case TemplateArgument::Template:
195 /// Pseudo-overrides occur when a class template specialization declares
197 /// non-specialized template.
209 Template = CTSD->getSpecializedTemplateOrPartial();
210 if (const auto *CTD = Template.dyn_cast<ClassTemplateDecl *>()) {
283 // Template specialization arguments.
644 Template = D->getSpecializedTemplateOrPartial();
646 Template.is<ClassTemplateDecl *>()
647 ? (Decl *)Template.get<ClassTemplateDecl *>()
648 : Template.get<ClassTemplatePartialSpecializationDecl *>()
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Parse/
ParseExprCXX.cpp 31 // template name
81 // a template name.
92 TemplateTy Template;
98 Template, MemberOfUnknownSpecialization))
118 /// nested-name-specifier 'template'[opt] simple-template-id '::'
130 /// When true, diagnostics for missing 'template' keyword will be supressed.
266 // nested-name-specifier 'template'[opt] simple-template-id '::'
268 // Parse the optional 'template' keyword, then make sure we hav
    [all...]
Parser.cpp 689 // Late template parsing can begin.
744 /// [C++0x/GNU] 'extern' 'template' declaration
894 // This must be 'export template'. Parse it so we can diagnose our lack
910 // Parse (then ignore) 'static' prior to a template instantiation. This is
930 // Parse (then ignore) 'inline' prior to a template instantiation. This is
1022 /// TemplateParams, if non-NULL, provides the template parameters when we're
1023 /// parsing a C++ template-declaration.
1220 // In delayed template parsing mode, for function template we consume the
1223 TemplateInfo.Kind == ParsedTemplateInfo::Template &
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Format/
Format.cpp 56 template <> struct ScalarEnumerationTraits<FormatStyle::LanguageKind> {
69 template <> struct ScalarEnumerationTraits<FormatStyle::LanguageStandard> {
88 template <> struct ScalarEnumerationTraits<FormatStyle::UseTabStyle> {
101 template <> struct ScalarEnumerationTraits<FormatStyle::JavaScriptQuoteStyle> {
109 template <> struct ScalarEnumerationTraits<FormatStyle::ShortBlockStyle> {
119 template <> struct ScalarEnumerationTraits<FormatStyle::ShortFunctionStyle> {
131 template <> struct ScalarEnumerationTraits<FormatStyle::AlignConsecutiveStyle> {
146 template <> struct ScalarEnumerationTraits<FormatStyle::ShortIfStyle> {
160 template <> struct ScalarEnumerationTraits<FormatStyle::ShortLambdaStyle> {
171 template <> struct ScalarEnumerationTraits<FormatStyle::BinPackStyle>
    [all...]

Completed in 42 milliseconds

1 2