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

1 2 3 4 5 6 7

  /external/chromium_org/third_party/WebKit/Tools/TestResultServer/handlers/
menu.py 32 from google.appengine.ext.webapp import template namespace
70 template.render("templates/menu.html", template_values))
  /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...]
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...]
  /cts/tools/signature-tools/src/signature/io/html/
ApiOverviewPage.java 64 StringTemplate template = TemplateStore local
66 template.setArgumentContext(commonInfos);
67 template.setAttribute("removed_packages", removedPackages);
68 template.setAttribute("added_packages", addedPackages);
69 template.setAttribute("changed_packages", changedPackages);
70 b.append(template.toString());
PackageOverviewPage.java 64 StringTemplate template = TemplateStore.getStringTemplate(PACGE); local
65 template.setArgumentContext(commonInfos);
66 template.setAttribute("package_delta", delta);
67 template.setAttribute("removed_classes", removedClasses);
68 template.setAttribute("added_classes", addedClasses);
69 template.setAttribute("changed_classes", changedClasses);
70 b.append(template.toString());
ClassOverviewPage.java 167 StringTemplate template = TemplateStore.getStringTemplate(PAGE); local
169 template.setAttribute("class_delta", classDelta);
178 template.setAttribute("has_class_signature_delta", hasSignatureDelta);
180 template.setAttribute("removed_fields", removedFields);
181 template.setAttribute("added_fields", addedFields);
182 template.setAttribute("changed_fields", changedFields);
184 template.setAttribute("removed_annotation_fields",
186 template.setAttribute("added_annotation_fields", addedAnnotationFields);
187 template.setAttribute("changed_annotation_fields",
190 template.setAttribute("removed_enum_constants", removedEnumConstants)
    [all...]
  /external/chromium_org/chrome/browser/resources/
crashes.js 68 template: 'Crash Report',
  /external/chromium_org/chrome/browser/resources/media/
webrtc_logs.js 68 template: 'Defect report from user',
  /sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/
NdkManager.java 63 // Launch our template to set up the project contents
64 TemplateCore template = TemplateEngine.getDefault().getTemplateById("AddNdkSupport"); //$NON-NLS-1$ local
65 Map<String, String> valueStore = template.getValueStore();
68 template.executeTemplateProcesses(monitor, false);
  /external/antlr/antlr-3.4/runtime/Python/antlr3/
dottreegen.py 52 template=( variable in class:DOTTreeGenerator
65 template="$name$ [label=\"$text$\"];\n"
69 template="$parent$ -> $child$ // \"$parentText$\" -> \"$childText$\"\n" variable in class:DOTTreeGenerator
  /external/apache-xml/src/main/java/org/apache/xalan/transformer/
KeyManager.java 63 ElemTemplateElement template = (ElemTemplateElement) nscontext; // yuck -sb local
65 if ((null != template)
66 && null != template.getStylesheetRoot().getKeysComposed())
100 template.getStylesheetRoot().getKeysComposed(),
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x500/
X500NameBuilder.java 11 private X500NameStyle template; field in class:X500NameBuilder
19 public X500NameBuilder(X500NameStyle template)
21 this.template = template;
26 this.addRDN(oid, template.stringToValue(oid, value));
51 vals[i] = template.stringToValue(oids[i], values[i]);
85 return new X500Name(template, vals);
  /external/chromium_org/third_party/mesa/src/src/mapi/glapi/
glapi_entrypoint.c 140 static const unsigned int template[] = { local
206 code[0] = template[0] | (dispatch >> 10);
207 code[1] = template[1];
209 code[2] = template[2] | (dispatch & 0x3ff);
210 code[3] = template[3];
212 code[4] = template[4];
213 code[5] = template[5];
215 code[6] = template[6];
219 code[0] = template[0] | (dispatch >> (32 + 10));
220 code[1] = template[1] | ((dispatch & 0xffffffff) >> 10)
270 static const unsigned int template[] = { local
    [all...]
  /external/mesa3d/src/mapi/glapi/
glapi_entrypoint.c 140 static const unsigned int template[] = { local
206 code[0] = template[0] | (dispatch >> 10);
207 code[1] = template[1];
209 code[2] = template[2] | (dispatch & 0x3ff);
210 code[3] = template[3];
212 code[4] = template[4];
213 code[5] = template[5];
215 code[6] = template[6];
219 code[0] = template[0] | (dispatch >> (32 + 10));
220 code[1] = template[1] | ((dispatch & 0xffffffff) >> 10)
270 static const unsigned int template[] = { local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
NewTemplateWizardState.java 57 /** Template handler responsible for instantiating templates and reading resources */
76 /** The minimum API level to use for this template */
79 /** Location of the template being created */
111 /** Sets the current template */
119 /** Returns the current template */
190 TemplateMetadata template = handler.getTemplate(); local
191 if (template != null) {
192 mIconState = template.getIconState(project);
205 TemplateMetadata template = getTemplateHandler().getTemplate(); local
206 if (template != null)
    [all...]
  /docs/source.android.com/scripts/
build.py 44 # Step 1, concatenate the template pieces into a single template string
48 template = string.Template(t) variable
115 final = template.safe_substitute(main=main, sidebar=sidebar, sidebar2=sidebar2, \
  /external/chromium/chrome/common/extensions/docs/examples/apps/hello-python/
main.py 10 from google.appengine.ext.webapp import template namespace
141 # Render a simple template
143 self.response.out.write(template.render(path, template_data))
  /external/chromium_org/chrome/common/extensions/docs/examples/apps/hello-python/
main.py 10 from google.appengine.ext.webapp import template namespace
144 # Render a simple template
146 self.response.out.write(template.render(path, template_data))
  /external/chromium_org/chrome/tools/build/
version.py 62 Returns the template with substituted values from the specified dictionary.
87 template = open(file_name, 'r').read()
88 return subst_template(template, values);
115 Usage: version.py [-h] [-f FILE] ([[-i] FILE] | -t TEMPLATE) [[-o] FILE]
120 -t TEMPLATE, --template=TEMPLATE Use TEMPLATE as the strings to substitute.
131 template = None variable
150 elif o in ('-t', '--template')
151 template = a variable
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/common/xmlpool/
gen_xmlpool.py 156 # Process the options template and generate options.h with all
158 template = file ("t_options.h", "r") variable
160 for line in template:
  /external/mesa3d/src/mesa/drivers/dri/common/xmlpool/
gen_xmlpool.py 156 # Process the options template and generate options.h with all
158 template = file ("t_options.h", "r") variable
160 for line in template:
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
TemplateList.java 41 * Encapsulates a template list, and helps locate individual templates.
58 * Add a template to the table of named templates and/or the table of templates
62 * @param template
64 public void setTemplate(ElemTemplate template)
66 XPath matchXPath = template.getMatch();
68 if (null == template.getName() && null == matchXPath)
70 template.error(XSLTErrorResources.ER_NEED_NAME_OR_MATCH_ATTRIB,
71 new Object[]{ "xsl:template" });
74 if (null != template.getName())
76 ElemTemplate existingTemplate = (ElemTemplate) m_namedTemplates.get(template.getName())
79 m_namedTemplates.put(template.getName(), template); local
89 m_namedTemplates.put(template.getName(), template); local
556 ElemTemplate template = head.getTemplate(); local
614 ElemTemplate template = head.getTemplate(); local
    [all...]
  /development/samples/SampleSyncAdapter/samplesyncadapter_server/
dashboard.py 28 from google.appengine.ext.webapp import template namespace
63 self.response.out.write(template.render(path, template_values))
150 self.response.out.write(template.render(path, template_values))
192 self.response.out.write(template.render(path, template_values))

Completed in 536 milliseconds

1 2 3 4 5 6 7