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

1 2 3 4 5 6 7 8 91011>>

  /external/mesa3d/src/mesa/main/
format_pack.py 3 from mako.template import Template
1001 template = Template(string); variable
1003 print template.render(argv = argv[0:])
format_unpack.py 3 from mako.template import Template
892 template = Template(string); variable
894 print template.render(argv = argv[0:])
  /prebuilts/go/darwin-x86/src/html/template/
doc.go 6 Package template (html/template) implements data-driven templates for
8 same interface as package text/template and should be used instead of
9 text/template whenever the output is HTML.
13 documentation for text/template.
17 This package wraps package text/template so you can share its template API
20 tmpl, err := template.New("name").Parse(...)
31 The security model used by this package assumes that template authors are
37 import "text/template"
193 package template package
    [all...]
attr.go 5 package template package
transition_test.go 5 package template package
html_test.go 5 package template package
  /prebuilts/go/darwin-x86/src/text/template/
doc.go 6 Package template implements data-driven templates for generating textual output.
8 To generate HTML output, see package html/template, which has the same interface
12 template refer to elements of the data structure (typically a field of a struct
14 Execution of the template walks the structure and sets the cursor, represented
18 The input text for a template is UTF-8-encoded text in any format.
23 Once parsed, a template may be executed safely in parallel, although if parallel
33 tmpl, err := template.New("test").Parse("{{.Count}} items are made of {{.Material}}")
42 By default, all text between actions is copied verbatim when the template is
46 However, to aid in formatting template source code, if an action's left delimiter
54 For instance, when executing the template whose source i
444 package template package
    [all...]
helper.go 7 package template package
17 // Must is a helper that wraps a call to a function returning (*Template, error)
20 // var t = template.Must(template.New("name").Parse("text"))
21 func Must(t *Template, err error) *Template {
28 // ParseFiles creates a new Template and parses the template definitions from
29 // the named files. The returned template's name will have the base name and
31 // If an error occurs, parsing stops and the returned *Template is nil
    [all...]
  /prebuilts/go/linux-x86/src/html/template/
doc.go 6 Package template (html/template) implements data-driven templates for
8 same interface as package text/template and should be used instead of
9 text/template whenever the output is HTML.
13 documentation for text/template.
17 This package wraps package text/template so you can share its template API
20 tmpl, err := template.New("name").Parse(...)
31 The security model used by this package assumes that template authors are
37 import "text/template"
193 package template package
    [all...]
attr.go 5 package template package
transition_test.go 5 package template package
html_test.go 5 package template package
  /prebuilts/go/linux-x86/src/text/template/
doc.go 6 Package template implements data-driven templates for generating textual output.
8 To generate HTML output, see package html/template, which has the same interface
12 template refer to elements of the data structure (typically a field of a struct
14 Execution of the template walks the structure and sets the cursor, represented
18 The input text for a template is UTF-8-encoded text in any format.
23 Once parsed, a template may be executed safely in parallel, although if parallel
33 tmpl, err := template.New("test").Parse("{{.Count}} items are made of {{.Material}}")
42 By default, all text between actions is copied verbatim when the template is
46 However, to aid in formatting template source code, if an action's left delimiter
54 For instance, when executing the template whose source i
444 package template package
    [all...]
helper.go 7 package template package
17 // Must is a helper that wraps a call to a function returning (*Template, error)
20 // var t = template.Must(template.New("name").Parse("text"))
21 func Must(t *Template, err error) *Template {
28 // ParseFiles creates a new Template and parses the template definitions from
29 // the named files. The returned template's name will have the base name and
31 // If an error occurs, parsing stops and the returned *Template is nil
    [all...]
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue5162.go 17 const template = ` const
72 src := template
  /prebuilts/go/linux-x86/test/fixedbugs/
issue5162.go 17 const template = ` const
72 src := template
  /external/toybox/toys/lsb/
mktemp.c 13 usage: mktemp [-dqu] [-p DIR] [TEMPLATE]
15 Safely create a new file "DIR/TEMPLATE" and print its name.
22 Each X in TEMPLATE is replaced with a random printable character. The
23 default TEMPLATE is tmp.XXXXXX, and the default DIR is $TMPDIR if set,
37 char *template = *toys.optargs; local
39 if (!template) template = "tmp.XXXXXX";
44 template = strchr(template, '/') ? xstrdup(template)
    [all...]
  /external/valgrind/none/tests/
nocwd.c 12 char template[] = "/tmp/wd_test_XXXXXX"; local
13 char *tmpdir = mkdtemp(template);
  /frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/template/
Mixin.java 17 package com.android.setupwizardlib.template;
  /external/capstone/bindings/
const_generator.py 10 template = { variable
70 templ = template[lang]
  /external/jsilver/src/com/google/clearsilver/jsilver/template/
DelegatingTemplateLoader.java 17 package com.google.clearsilver.jsilver.template;
Macro.java 17 package com.google.clearsilver.jsilver.template;
22 * An executable macro. This exhibits all the same characteristics of a Template.
24 public interface Macro extends Template {
TemplateLoader.java 17 package com.google.clearsilver.jsilver.template;
23 * Loads a Template.
28 * Load a template from a named resource, with the provided escape mode. If the mode is
30 * template. If the mode is ESCAPE_AUTO, enable <a href="http://go/autoescapecs">auto escaping</a>
31 * on templates. For each variable in the template, this will determine what type of escaping
34 * @param templateName e.g. some/path/to/template.cs
37 * @param escapeMode the type of escaping to apply to the entire template.
39 Template load(String templateName, ResourceLoader resourceLoader, EscapeMode escapeMode);
42 * Create a temporary template from content, with the provided escape mode. If the mode is
44 * template. If the mode is ESCAPE_AUTO, enable <a href="http://go/autoescapecs">auto escaping</a
    [all...]
  /external/jcommander/src/test/java/com/beust/jcommander/
ArgsValidate2.java 16 public static final String POSSIBLE_TEMPLATE_FILE = "mayOrMayNotExist.template";
18 @Parameter(names = { "-template"},
23 public File template = new File(POSSIBLE_TEMPLATE_FILE); field in class:ArgsValidate2
  /external/wayland/cursor/
os-compatibility.c 106 static const char template[] = "/weston-shared-XXXXXX"; local
118 name = malloc(strlen(path) + sizeof(template));
123 strcat(name, template);

Completed in 862 milliseconds

1 2 3 4 5 6 7 8 91011>>