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

1 2 3 4 5 6 7 8 910

  /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...]
  /external/python/cpython3/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/tensorflow/tensorflow/python/ops/
template.py 43 This wraps `func_` in a Template and partially evaluates it. Templates are
45 thereafter. In order for `func_` to be compatible with a `Template` it must
82 If all of these are true, then 2 properties are enforced by the template:
84 1. Calling the same template multiple times will share all non-local
87 same variable scope as the initial definition of a template and redefine
102 # Creates a template that reuses the variables above.
112 template will have an extra trailing _N+1 to their name, as the first time the
113 scope is entered in the Template constructor no Tensors are created.
119 name_: A name for the scope created by this template. If necessary, the name
123 when the template is constructed or when the template is called. Defaul
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/clang/Tooling/
RefactoringCallbacks.h 59 template <typename T>
90 /// evaluating the template in \c ToTemplate.
107 std::vector<TemplateElement> Template);
109 std::vector<TemplateElement> Template;
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/clang/Tooling/
RefactoringCallbacks.h 59 template <typename T>
90 /// evaluating the template in \c ToTemplate.
107 std::vector<TemplateElement> Template);
109 std::vector<TemplateElement> Template;
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/clang/Tooling/
RefactoringCallbacks.h 59 template <typename T>
90 /// evaluating the template in \c ToTemplate.
107 std::vector<TemplateElement> Template);
109 std::vector<TemplateElement> Template;
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/clang/Tooling/
RefactoringCallbacks.h 59 template <typename T>
90 /// evaluating the template in \c ToTemplate.
107 std::vector<TemplateElement> Template);
109 std::vector<TemplateElement> Template;
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/clang/Tooling/
RefactoringCallbacks.h 59 template <typename T>
90 /// evaluating the template in \c ToTemplate.
107 std::vector<TemplateElement> Template);
109 std::vector<TemplateElement> Template;
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/clang/Tooling/
RefactoringCallbacks.h 59 template <typename T>
90 /// evaluating the template in \c ToTemplate.
107 std::vector<TemplateElement> Template);
109 std::vector<TemplateElement> Template;

Completed in 730 milliseconds

1 2 3 4 5 6 7 8 910