HomeSort by relevance Sort by last modified time
    Searched refs:template (Results 101 - 125 of 605) sorted by null

1 2 3 45 6 7 8 91011>>

  /prebuilts/misc/common/swig/include/2.0.11/typemaps/
implicit.swg 35 work because you are passing template types with commas, then use
67 template <> struct traits<Type > {
72 template <> struct traits_asptr< Type > {
103 template <> struct traits< Type > {
108 template <> struct traits_asptr< Type > {
141 template <> struct traits< Type > {
146 template <> struct traits_asptr< Type > {
182 template <> struct traits< Type > {
187 template <> struct traits_asptr< Type > {
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
ElemApplyTemplates.java 48 * @see <a href="http://www.w3.org/TR/xslt#section-Applying-Template-Rules">section-Applying-Template-Rules in XSLT Specification</a>
82 * Tells if this belongs to a default template,
97 * Set if this belongs to a default template,
122 * recomposed, and allows the template to set remaining
143 * @see <a href="http://www.w3.org/TR/xslt#section-Applying-Template-Rules">section-Applying-Template-Rules in XSLT Specification</a>
237 // section of each called template.
277 ElemTemplate template = tl.getTemplateFast(xctxt, child, exNodeType, mode, local
280 // If that didn't locate a node, fall back to a default template rule
    [all...]
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...]
  /external/ceres-solver/internal/ceres/
generate_eliminator_specialization.py 31 # Script for explicitly generating template specialization of the
41 # where, the x indicates the template parameters and
51 # Set of template specializations to generate
101 // Template specialization of SchurEliminator.
122 template class SchurEliminator<%s, %s, %s>;
140 template class SchurEliminator<%s, %s, %s>;
170 VLOG(1) << "Template specializations not found for <"
210 template = SPECIALIZATION_FILE
214 template = DYNAMIC_FILE
216 fptr.write(template % (row_block_size, e_block_size, f_block_size)
    [all...]
generate_partitioned_matrix_view_specializations.py 31 # Script for explicitly generating template specialization of the
39 # where the x indicates the template parameters and
49 # Set of template specializations to generate
99 // Template specialization of PartitionedMatrixView.
120 template class PartitionedMatrixView<%s, %s, %s>;
138 template class PartitionedMatrixView<%s, %s, %s>;
170 VLOG(1) << "Template specializations not found for <"
211 template = SPECIALIZATION_FILE
215 template = DYNAMIC_FILE
217 fptr.write(template % (row_block_size, e_block_size, f_block_size)
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/interpreter/
InterpretedTemplateLoader.java 23 import com.google.clearsilver.jsilver.template.DelegatingTemplateLoader;
24 import com.google.clearsilver.jsilver.template.Template;
25 import com.google.clearsilver.jsilver.template.TemplateLoader;
51 public Template load(String templateName, ResourceLoader resourceLoader, EscapeMode escapeMode) {
58 public Template createTemp(String name, String content, EscapeMode escapingMode) {
InterpretedTemplate.java 27 import com.google.clearsilver.jsilver.template.DefaultRenderingContext;
28 import com.google.clearsilver.jsilver.template.RenderingContext;
29 import com.google.clearsilver.jsilver.template.Template;
30 import com.google.clearsilver.jsilver.template.TemplateLoader;
35 * Template implementation that uses the interpreter to render itself.
37 public class InterpretedTemplate implements Template {
  /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);
  /libcore/luni/src/main/java/java/text/
ChoiceFormat.java 105 * @param template
110 public ChoiceFormat(String template) {
111 applyPattern(template);
118 * @param template
123 public void applyPattern(String template) {
126 int length = template.length(), limitCount = 0, index = 0;
131 index = skipWhitespace(template, index);
147 Number value = format.parse(template, position);
148 index = skipWhitespace(template, position.getIndex());
155 char ch = template.charAt(index++)
    [all...]
  /external/guava/guava/src/com/google/common/base/
Preconditions.java 84 * <p>In {@code Preconditions} error message template strings, only the {@code "%s"} specifier is
133 * @param errorMessageTemplate a template for the exception message should the check fail. The
134 * message is formed by replacing each {@code %s} placeholder in the template with an
138 * @param errorMessageArgs the arguments to be substituted into the message template. Arguments
185 * @param errorMessageTemplate a template for the exception message should the check fail. The
186 * message is formed by replacing each {@code %s} placeholder in the template with an
190 * @param errorMessageArgs the arguments to be substituted into the message template. Arguments
238 * @param errorMessageTemplate a template for the exception message should the check fail. The
239 * message is formed by replacing each {@code %s} placeholder in the template with an
243 * @param errorMessageArgs the arguments to be substituted into the message template. Argument
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/compatibility/
ClearsilverRenderer.java 20 import com.google.clearsilver.jsilver.template.Template;
100 public void render(Template template, Data data, Appendable output, ResourceLoader resourceLoader)
103 + "template names, not Templates");
107 public void render(Template template, Data data, Appendable output) throws IOException,
109 render(template, data, output, defaultResourceLoader);
113 public String render(Template template, Data data) throws IOException, JSilverException
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
StringEvaluator.java 26 import freemarker.template.Configuration;
27 import freemarker.template.DefaultObjectWrapper;
28 import freemarker.template.Template;
38 * A template handler which can evaluate simple strings. Used to evaluate
42 * full template files (from resources, merging into existing files etc) this
62 // Render the instruction list template.
68 Template inputsTemplate = mFreemarker.getTemplate(expression);
  /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...]
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...]
  /external/mesa3d/src/gallium/state_trackers/dri/sw/
Makefile 25 include ../../../Makefile.template
  /external/mesa3d/src/gallium/state_trackers/va/
Makefile 25 include ../../Makefile.template
  /external/mesa3d/src/gallium/state_trackers/vdpau/
Makefile 25 include ../../Makefile.template
  /external/mesa3d/src/gallium/winsys/svga/drm/
Makefile 19 include ../../../Makefile.template
  /external/antlr/antlr-3.4/tool/src/main/antlr3/org/antlr/grammar/v3/
ActionTranslator.g 31 // output=template; TODO: can we make tokens return templates somehow?
167 protected ST template(String name) {
194 st = template("ruleSetPropertyRef_"+$y.text);
216 st = template("parameterSetAttributeRef");
221 st = template("returnSetAttributeRef");
243 st = template("rulePropertyRef_"+$y.text);
256 st = template("parameterAttributeRef");
260 st = template("returnAttributeRef");
310 ST st = template("tokenLabelPropertyRef_"+$y.text);
387 st = template("ruleLabelPropertyRef_"+$y.text)
    [all...]
  /developers/build/buildSrc/src/main/groovy/com/example/android/samples/build/
ApplyTemplates.groovy 21 import freemarker.template.Configuration
22 import freemarker.template.DefaultObjectWrapper
23 import freemarker.template.Template
36 def Configuration cfg = new freemarker.template.Configuration()
74 * The hash which will be passed to the freemarker template engine. This hash
76 * The hash should contain a key named "meta". The template processor will add
88 // Create a list of Freemarker template loaders based on the
90 // file system for freemarker templates; the template language can
93 println "Gathering template load locations:
    [all...]
  /external/antlr/antlr-3.4/runtime/Python/unittests/
testdottreegen.py 30 template=(
38 template="$parent$ -> $child$\n"
  /external/chromium-trace/trace-viewer/third_party/webapp2/webapp2_extras/
mako.py 6 Mako template support for webapp2.
45 # Renders a template and writes the result to the response.
77 """Renders a template and returns a response object.
80 The template filename, related to the templates directory.
82 Keyword arguments used as variables in the rendered template.
85 A rendered template.
87 template = self.environment.get_template(_filename)
88 return template.render_unicode(**context)
  /external/chromium-trace/trace-viewer/tracing/third_party/vinn/third_party/parse5/
CHANGELOG.md 17 * Fix: `<form>` processing in `<template>` (GH [#40](https://github.com/inikulin/parse5/issues/40)).
20 * Fix: text node in `<template>` serialization problem with custom tree adapter (GH [#38](https://github.com/inikulin/parse5/issues/38)).
26 * Add: `<template>` support
27 * `parseFragment` now uses `<template>` as default `contextElement`. This leads to the more "forgiving" parsing manner.
  /external/deqp/scripts/opengl/
gen_wrapper.py 54 template = """
62 return template.format(
  /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...]

Completed in 2499 milliseconds

1 2 3 45 6 7 8 91011>>