HomeSort by relevance Sort by last modified time
    Searched refs:template (Results 176 - 200 of 589) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/chromium_org/third_party/WebKit/Source/build/scripts/
template_expander.py 45 template = jinja_env.get_template(basename)
46 return template.render(params)
  /external/chromium_org/third_party/libjingle/source/talk/base/
bind.h.pump 62 // This is needed because the template parameters in Bind can't be resolved
68 template <class T> struct identity { typedef T type; };
76 template <class ObjectT, class MethodT, class R$for j [[,
96 template <class ObjectT, class R$for j [[,
108 template <class ObjectT, class R$for j [[,
  /external/jsilver/src/com/google/clearsilver/jsilver/compiler/
BaseCompiledTemplate.java 29 import com.google.clearsilver.jsilver.template.DefaultRenderingContext;
30 import com.google.clearsilver.jsilver.template.Macro;
31 import com.google.clearsilver.jsilver.template.RenderingContext;
32 import com.google.clearsilver.jsilver.template.Template;
33 import com.google.clearsilver.jsilver.template.TemplateLoader;
44 public abstract class BaseCompiledTemplate implements Template {
93 * Sets the EscapeMode in which this template was generated.
308 * @param ignoreMissingFile {@code true} if any FileNotFound error generated by the template
310 * @param context Rendering context to use for the included template
329 Template template = null; local
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/template/
RenderingContext.java 17 package com.google.clearsilver.jsilver.template;
27 * State that is shared across a template rendering.
76 * Push a new template onto the current execution context. This is to generate stack traces when
81 void pushExecutionContext(Template template);
84 * @see #pushExecutionContext(Template)
89 * Sets the current position in the template. Used to help generate error messages.
111 * Returns the ResourceLoader object to use to fetch files needed to render the current template.
116 * Returns the configured AutoEscapeOptions to be used while rendering the current template.
121 * Push a new auto escaping mode onto the context. Any template loads via include() o
    [all...]
  /frameworks/base/core/java/android/net/
INetworkPolicyManager.aidl 46 /** Snooze limit on policy matching given template. */
47 void snoozeLimit(in NetworkTemplate template);
  /frameworks/base/core/java/android/os/storage/
StorageVolume.java 91 public static StorageVolume fromTemplate(StorageVolume template, File path, UserHandle owner) {
92 return new StorageVolume(path, template.mDescriptionId, template.mPrimary,
93 template.mRemovable, template.mEmulated, template.mMtpReserveSpace,
94 template.mAllowMassStorage, template.mMaxFileSize, owner);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
NewProjectWizardState.java 37 template = TemplateHandler.createFromName(CATEGORY_PROJECTS,
41 /** The template handler instantiating the project */
42 public final TemplateHandler template; field in class:NewProjectWizardState
102 /** State for the template wizard, used to embed an activity template */
NewTemplateWizard.java 44 * Template wizard which creates parameterized templates
47 /** Template name and location under $sdk/templates for the default activity */
49 /** Template name and location under $sdk/templates for the custom view template */
66 File template = TemplateManager.getTemplateLocation(mTemplateName); local
67 if (template != null) {
68 mValues.setTemplateLocation(template);
86 * Hide those parameters that the template requires but that we don't want
88 * the template is written into.
107 TemplateMetadata template = mValues.getTemplateHandler().getTemplate() local
    [all...]
NewProjectWizard.java 166 // Hide those parameters that the template requires but that we don't want to
190 TemplateMetadata template = mValues.activityValues.getTemplateHandler().getTemplate(); local
191 if (template != null
192 && !InstallDependencyPage.isInstalled(template.getDependencies())) {
193 return getDependencyPage(template, true);
217 // to special case the template and icon pages since we want to skip them if
243 return mValues.template.getFilesToOpen();
258 final TemplateHandler template = mValues.template; local
259 // We'll be merging in an activity template, but don't create *~ backup file
281 final TemplateHandler template = mValues.template; local
    [all...]
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...]
ActivityPage.java 86 setDescription("Select which template to use");
118 TemplateManager manager = mValues.template.getManager();
129 File template = templates.get(i); local
130 TemplateMetadata metadata = manager.getTemplate(template);
140 mTemplates.add(template);
142 if (template.equals(current)) {
188 TemplateMetadata template = handler.getTemplate(); local
189 if (template != null) {
190 String thumb = template.getThumbnailPath();
210 title = template.getTitle()
314 File template = mTemplates.get(index); local
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/lib/base/
Preconditions.java 90 * @param errorMessageTemplate a template for the exception message should the
92 * placeholder in the template with an argument. These are matched by
97 * template. Arguments are converted to strings using
145 * @param errorMessageTemplate a template for the exception message should the
147 * placeholder in the template with an argument. These are matched by
152 * template. Arguments are converted to strings using
204 * @param errorMessageTemplate a template for the exception message should the
206 * placeholder in the template with an argument. These are matched by
211 * template. Arguments are converted to strings using
388 * Substitutes each {@code %s} in {@code template} with an argument. Thes
    [all...]
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/
Preconditions.java 90 * @param errorMessageTemplate a template for the exception message should the
92 * placeholder in the template with an argument. These are matched by
97 * template. Arguments are converted to strings using
145 * @param errorMessageTemplate a template for the exception message should the
147 * placeholder in the template with an argument. These are matched by
152 * template. Arguments are converted to strings using
204 * @param errorMessageTemplate a template for the exception message should the
206 * placeholder in the template with an argument. These are matched by
211 * template. Arguments are converted to strings using
388 * Substitutes each {@code %s} in {@code template} with an argument. Thes
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/
JSilver.java 46 import com.google.clearsilver.jsilver.template.DelegatingTemplateLoader;
47 import com.google.clearsilver.jsilver.template.HtmlWhiteSpaceStripper;
48 import com.google.clearsilver.jsilver.template.Template;
49 import com.google.clearsilver.jsilver.template.TemplateLoader;
73 * // Render template to System.out. Writer output = ...;
136 // Loads the template from the resource loader, manipulating the AST as
164 // Do we want to load precompiled Template class objects?
166 // Load precompiled template classes.
239 * Renders a given template and provided data, writing to an arbitrary output
    [all...]
  /external/chromium_org/mojo/public/bindings/generators/
mojom_cpp_generator.py 15 from string import Template
22 """Helper class to maintain list of template expanded lines."""
23 def __init__(self, template, indent = None):
24 self.template = template
33 self.lines.append(self.template.substitute(map))
46 Template(" +\n mojo::internal::ComputeSizeOf($NAME->$FIELD())")
47 struct_serialization_clone_template = Template(
49 struct_serialization_handle_release_template = Template(
51 struct_serialization_encode_template = Template(
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/RebaselineLogServer/
main.py 34 from google.appengine.ext.webapp import template namespace
109 self.response.out.write(template.render("uploadform.html", {
130 self.response.out.write(template.render("logs.html", {
  /external/jsilver/src/com/google/clearsilver/jsilver/interpreter/
InterpretedMacro.java 24 import com.google.clearsilver.jsilver.template.Macro;
25 import com.google.clearsilver.jsilver.template.RenderingContext;
26 import com.google.clearsilver.jsilver.template.Template;
39 private final Template owningTemplate;
45 public InterpretedMacro(PCommand command, Template owningTemplate, String macroName,
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/
sdist.py 47 ('template=', 't',
48 "name of manifest template file [default: MANIFEST.in]"),
103 # 'template' and 'manifest' are, respectively, the names of
104 # the manifest template and manifest file.
105 self.template = None
128 if self.template is None:
129 self.template = "MANIFEST.in"
158 # (process the manifest template, read an existing manifest,
181 reading the manifest template (and writing the manifest), or just
185 # new behavior when using a template
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/
sdist.py 47 ('template=', 't',
48 "name of manifest template file [default: MANIFEST.in]"),
103 # 'template' and 'manifest' are, respectively, the names of
104 # the manifest template and manifest file.
105 self.template = None
128 if self.template is None:
129 self.template = "MANIFEST.in"
158 # (process the manifest template, read an existing manifest,
181 reading the manifest template (and writing the manifest), or just
185 # new behavior when using a template
    [all...]
  /external/chromium_org/chrome/browser/resources/
gesture_config.css 83 #section-row-template,
84 #section-template {
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/
make-hosted 28 open TEMPLATE, "<resources/TEMPLATE.html";
29 my $template = do { local $/; <TEMPLATE> };
30 close TEMPLATE;
32 open DRIVER_TEMPLATE, "<resources/driver-TEMPLATE.html";
36 open RESULTS_TEMPLATE, "<resources/results-TEMPLATE.html";
72 my $output = $template;
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/
Makefile 37 include ../../Makefile.template
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/dri/drm/
Makefile 27 include ../../../Makefile.template
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xorg/
Makefile 23 include ../../Makefile.template
  /external/mesa3d/src/gallium/drivers/softpipe/
Makefile 37 include ../../Makefile.template

Completed in 1103 milliseconds

1 2 3 4 5 6 78 91011>>