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

1 2 3 4 5

  /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/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/cloudformation/
template.py 4 class Template(object):
  /external/clang/test/SemaCXX/
nonnull.cpp 3 template<int I>
16 namespace Template {
17 template<typename T> __attribute__((nonnull)) void f(T t);
  /external/autotest/client/cros/image_comparison/
publisher.py 13 from string import Template
57 # Append all of the things we push to the html template
92 @param tags the tags to write into the html template
93 @param html_filename the full path to the html template
97 html = Template(f.read())
  /external/clang/lib/AST/
TemplateName.cpp 1 //===--- TemplateName.cpp - C++ Template Name Representation---------------===//
56 return Template;
72 if (TemplateDecl *Template = Storage.dyn_cast<TemplateDecl *>())
73 return Template;
85 if (TemplateDecl *Template = getAsTemplateDecl()) {
86 if (isa<TemplateTemplateParmDecl>(Template))
88 // FIXME: Hack, getDeclContext() can be null if Template is still
92 return Template->getDeclContext() &&
93 Template->getDeclContext()->isDependentContext();
112 if (TemplateDecl *Template = getAsTemplateDecl())
    [all...]
  /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...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/pyami/installers/ubuntu/
ebs.py 51 from string import Template
152 t = Template(BackupScriptTemplate)
  /external/clang/test/Modules/Inputs/
DebugCXX.h 21 template<typename T> struct traits {};
22 template<typename T,
24 > class Template {
27 extern template class Template<int>;
29 extern template struct traits<float>;
30 typedef class Template<float> FloatInstatiation;
33 Template<long> invisible;
36 // Non-template inside a template
    [all...]
  /external/v8/test/preparser/
testcfg.py 75 def Template(name, source):
84 execfile(pathname, {"Test": Test, "Template": Template})
  /external/autotest/contrib/
modelviz.py 42 from django.template import Template, Context
172 t = Template(body_template)
  /external/v8/src/
messages.h 121 T(DuplicateTemplateProperty, "Object template has duplicate property '%'") \
    [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/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...]
  /system/media/camera/docs/
metadata_parser_xml.py 21 over a Mako template.
24 metadata_parser_xml.py <filename.xml> <template.mako> [<output_file>]
25 - outputs the resulting template to output_file (stdout if none specified)
34 Mako - a template engine for Python, available to download from
45 from mako.template import Template
58 Mako template.
290 def render(self, template, output_name=None):
292 Render the metadata model using a Mako template as the view.
294 The template gets the metadata as an argument, as well as al
    [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/autotest/client/site_tests/firmware_TouchMTB/
report_html.py 15 from string import Template
20 """An html Template."""
25 # Define the template of the doc
26 self.doc = Template('$head $test_version $logs $tail')
27 self.table = Template('<table border="3" width="100%"> $gestures '
31 # Define a template to show a gesture information including
33 self.gesture_template = Template('''
52 self.validator_template = Template('''
61 self.detail_template = Template('<tr><h5> $detail </h5></tr>')
76 self.doc = Template(self.doc.safe_substitute(head=self._html_head()
    [all...]

Completed in 467 milliseconds

1 2 3 4 5