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

1 2 3 4 5 6

  /external/webkit/Tools/QueueStatusServer/handlers/
patch.py 30 from google.appengine.ext.webapp import template namespace
53 self.response.out.write(template.render("templates/patch.html", template_values))
releasepatch.py 30 from google.appengine.ext.webapp import template namespace
39 self.response.out.write(template.render("templates/releasepatch.html", None))
statusbubble.py 32 from google.appengine.ext.webapp import template namespace
59 self.response.out.write(template.render("templates/statusbubble.html", template_values))
updatesvnrevision.py 30 from google.appengine.ext.webapp import template namespace
38 self.response.out.write(template.render("templates/updatesvnrevision.html", None))
dashboard.py 32 from google.appengine.ext.webapp import template namespace
64 self.response.out.write(template.render("templates/dashboard.html", template_values))
queuestatus.py 33 from google.appengine.ext.webapp import template namespace
109 self.response.out.write(template.render("templates/queuestatus.html", template_values))
submittoews.py 30 from google.appengine.ext.webapp import template namespace
39 self.response.out.write(template.render("templates/submittoews.html", None))
updatestatus.py 31 from google.appengine.ext.webapp import template namespace
40 self.response.out.write(template.render("templates/updatestatus.html", None))
updateworkitems.py 30 from google.appengine.ext.webapp import template namespace
41 self.response.out.write(template.render("templates/updateworkitems.html", None))
  /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...]
  /external/webkit/Tools/RebaselineQueueServer/handlers/
pages.py 30 from google.appengine.ext.webapp import template namespace
39 template.render("templates/home.html", {
47 template.render("templates/builder-picker.html", {}))
  /external/webkit/Tools/TestResultServer/handlers/
menu.py 31 from google.appengine.ext.webapp import template namespace
63 template.render("templates/menu.html", template_values))
dashboardhandler.py 35 from google.appengine.ext.webapp import template namespace
82 template.render("templates/dashboardfilelist.html",
  /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...]
  /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 10 private X500NameStyle template; field in class:X500NameBuilder
13 public X500NameBuilder(X500NameStyle template)
15 this.template = template;
20 this.addRDN(oid, template.stringToValue(oid, value));
45 vals[i] = template.stringToValue(oids[i], values[i]);
79 return new X500Name(template, vals);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
NewTemplateWizardState.java 55 /** Template handler responsible for instantiating templates and reading resources */
74 /** The minimum API level to use for this template */
77 /** Location of the template being created */
109 /** Sets the current template */
117 /** Returns the current template */
185 TemplateMetadata template = handler.getTemplate(); local
186 if (template != null) {
187 mIconState = template.getIconState(project);
200 TemplateMetadata template = getTemplateHandler().getTemplate(); local
201 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, \

Completed in 225 milliseconds

1 2 3 4 5 6