HomeSort by relevance Sort by last modified time
    Searched defs:Template (Results 1 - 25 of 174) sorted by null

1 2 3 4 5 6 7

  /device/linaro/bootloader/edk2/EmbeddedPkg/Ebl/
CmdTemplate.c 44 GLOBAL_REMOVE_IF_UNREFERENCED const EBL_COMMAND_TABLE mCmd%CommandName%Template[] =
63 EblAddCommands (mCmd%CommandName%Template, sizeof (mCmd%CommandName%Template)/sizeof (EBL_COMMAND_TABLE));
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
TemplateParserRuleReturnScope`2.cs 39 public TTemplate Template
52 object ITemplateRuleReturnScope.Template
56 return Template;
ITemplateRuleReturnScope.cs 37 object Template
ITemplateRuleReturnScope`1.cs 37 new TTemplate Template
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/template/
group-file.rb 7 purpose: Loads the ANTLR recognition code for ANTLR Template Group files
10 require 'antlr3/template/group-file-lexer'
11 require 'antlr3/template/group-file-parser'
14 module Template
parameter.rb 4 module Template
group-file-parser.rb 64 module Template
80 :TEMPLATE => 6, :T__11 => 11, :T__14 => 14, :T__13 => 13,
89 register_names( "CONSTANT", "ID", "TEMPLATE", "STRING", "COMMENT", "WS",
120 unless group.is_a?( ANTLR3::Template::Group )
124 group = ANTLR3::Template::Group.new
153 when TEMPLATE
204 group = ANTLR3::Template::Group.new
322 # 96:1: member[ group ] : name= ID ( parameter_declaration )? '::=' (aliased= ID | TEMPLATE | STRING ) ;
336 # at line 98:5: name= ID ( parameter_declaration )? '::=' (aliased= ID | TEMPLATE | STRING )
357 # at line 99:5: (aliased= ID | TEMPLATE | STRING
    [all...]
group-file-lexer.rb 64 module Template
80 :TEMPLATE => 6, :T__11 => 11, :T__14 => 14, :T__13 => 13,
99 "TEMPLATE", "STRING", "COMMENT", "WS" ].freeze
102 :template!, :string!, :comment!, :ws! ].freeze
460 # lexer rule template! (TEMPLATE)
462 def template!
466 type = TEMPLATE
838 # at line 1:8: ( T__10 | T__11 | T__12 | T__13 | T__14 | T__15 | T__16 | T__17 | T__18 | T__19 | CONSTANT | ID | TEMPLATE | STRING | COMMENT | WS )
891 # at line 1:82: TEMPLATE
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
TemplateTreeRuleReturnScope`2.cs 39 public TTemplate Template
52 object ITemplateRuleReturnScope.Template
56 return Template;
  /external/clang/test/SemaCXX/
nonnull.cpp 3 template<int I>
16 namespace Template {
17 template<typename T> __attribute__((nonnull)) void f(T t);
  /external/jsilver/src/com/google/clearsilver/jsilver/template/
Template.java 17 package com.google.clearsilver.jsilver.template;
26 * Represents a template that can be rendered with data.
28 public interface Template {
31 * Render the template.
33 * @param data Data to merge with template.
35 * @param resourceLoader ResourceLoader to use instead of the default template one when loading
41 * Render the template with a custom RenderingContext.
50 * @param data Data to merge with template.
57 * Name of template (e.g. mytemplate.cs).
68 * Return the EscapeMode in which this template was generated
    [all...]
  /prebuilts/go/darwin-x86/src/text/template/
template.go 5 package template package
10 "text/template/parse"
15 tmpl map[string]*Template // Map from name to defined templates.
25 // Template is the representation of a parsed template. The *parse.Tree
26 // field is exported only for use by html/template and should be treated
28 type Template struct {
36 // New allocates a new, undefined template with the given name.
37 func New(name string) *Template {
38 t := &Template{
    [all...]
  /prebuilts/go/linux-x86/src/text/template/
template.go 5 package template package
10 "text/template/parse"
15 tmpl map[string]*Template // Map from name to defined templates.
25 // Template is the representation of a parsed template. The *parse.Tree
26 // field is exported only for use by html/template and should be treated
28 type Template struct {
36 // New allocates a new, undefined template with the given name.
37 func New(name string) *Template {
38 t := &Template{
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
pipes.py 14 The module lets you construct a pipeline template by sticking one or
17 data. You can then use the template to do conversions from many
19 file names used are different each time the template is used.
29 To create a template:
30 t = Template()
32 To add a conversion step to a template:
44 To convert a file to another file using a template:
55 To create a new template object initialized to a given one:
67 __all__ = ["Template"]
82 class Template:
    [all...]
  /external/clang/lib/AST/
TemplateName.cpp 1 //===--- TemplateName.cpp - C++ Template Name Representation---------------===//
58 TemplateName::TemplateName(TemplateDecl *Template) : Storage(Template) {}
72 return Template;
88 if (TemplateDecl *Template = Storage.dyn_cast<TemplateDecl *>())
89 return Template;
135 if (TemplateDecl *Template = getAsTemplateDecl()) {
136 if (isa<TemplateTemplateParmDecl>(Template))
138 // FIXME: Hack, getDeclContext() can be null if Template is still
142 return Template->getDeclContext() &
    [all...]
  /external/clang/unittests/AST/
ASTImporterTest.cpp 47 template<typename NodeType, typename MatcherType>
250 const NamedDecl *Template = Node.getTemplatedDecl();
251 return Template && InnerMatcher.matches(*Template, Finder, Builder);
258 "template<typename T> class dummy { void f() { dummy X(*this); } };"
260 "template class dummy<int>;",
  /external/python/cpython2/Lib/
pipes.py 14 The module lets you construct a pipeline template by sticking one or
17 data. You can then use the template to do conversions from many
19 file names used are different each time the template is used.
29 To create a template:
30 t = Template()
32 To add a conversion step to a template:
44 To convert a file to another file using a template:
55 To create a new template object initialized to a given one:
65 __all__ = ["Template"]
80 class Template
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
pipes.py 14 The module lets you construct a pipeline template by sticking one or
17 data. You can then use the template to do conversions from many
19 file names used are different each time the template is used.
29 To create a template:
30 t = Template()
32 To add a conversion step to a template:
44 To convert a file to another file using a template:
55 To create a new template object initialized to a given one:
65 __all__ = ["Template"]
80 class Template
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
pipes.py 14 The module lets you construct a pipeline template by sticking one or
17 data. You can then use the template to do conversions from many
19 file names used are different each time the template is used.
29 To create a template:
30 t = Template()
32 To add a conversion step to a template:
44 To convert a file to another file using a template:
55 To create a new template object initialized to a given one:
65 __all__ = ["Template"]
80 class Template
    [all...]
  /prebuilts/go/darwin-x86/src/html/template/
template.go 5 package template package
13 "text/template"
14 "text/template/parse"
17 // Template is a specialized Template from "text/template" that produces a safe
19 type Template struct {
22 // We could embed the text/template field, but it's safer not to because
24 // template's in sync.
25 text *template.Templat
    [all...]
  /prebuilts/go/linux-x86/src/html/template/
template.go 5 package template package
13 "text/template"
14 "text/template/parse"
17 // Template is a specialized Template from "text/template" that produces a safe
19 type Template struct {
22 // We could embed the text/template field, but it's safer not to because
24 // template's in sync.
25 text *template.Templat
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
pipes.py 14 The module lets you construct a pipeline template by sticking one or
17 data. You can then use the template to do conversions from many
19 file names used are different each time the template is used.
29 To create a template:
30 t = Template()
32 To add a conversion step to a template:
44 To convert a file to another file using a template:
55 To create a new template object initialized to a given one:
65 __all__ = ["Template"]
80 class Template
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
pipes.py 14 The module lets you construct a pipeline template by sticking one or
17 data. You can then use the template to do conversions from many
19 file names used are different each time the template is used.
29 To create a template:
30 t = Template()
32 To add a conversion step to a template:
44 To convert a file to another file using a template:
55 To create a new template object initialized to a given one:
65 __all__ = ["Template"]
80 class Template
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
template.rb 8 module Template
16 @template_library ||= ANTLR3::Template::Group.new
20 super.push( :template )
25 ANTLR3::Template::Group.load( group_file )
40 self.class.template_library or ANTLR3::Template::Group.new
88 autoload :GroupFile, 'antlr3/template/group-file'
91 autoload :Lexer, 'antlr3/template/group-file'
92 autoload :Parser, 'antlr3/template/group-file'
105 end or raise( LoadError, "no such template group file to load %s" % group_file )
124 template = Context.new( values
    [all...]
  /external/clang/include/clang/Sema/
ParsedTemplate.h 1 //===--- ParsedTemplate.h - Template Parsing Data Types ---------*- C++ -*-===//
29 /// \brief Represents the parsed form of a C++ template argument.
32 /// \brief Describes the kind of template argument that was parsed.
34 /// \brief A template type parameter, stored as a type.
36 /// \brief A non-type template parameter, stored as an expression.
38 /// \brief A template template argument, stored as a template name.
39 Template
42 /// \brief Build an empty template argument.
    [all...]

Completed in 677 milliseconds

1 2 3 4 5 6 7