Searched defs:templates (Results 76 - 100 of 107) sorted by relevance

12345

/external/clang/test/SemaCXX/
H A Dwarn-unused-private-field.cpp154 namespace templates { namespace
159 } // namespace templates
/external/apache-xml/src/main/java/org/apache/xalan/templates/
H A DElemLiteralResult.java21 package org.apache.xalan.templates;
1195 * @see org.apache.xalan.templates.Constants
1423 * Compiling templates requires that we be able to list the AVTs
H A DElemTemplateElement.java21 package org.apache.xalan.templates;
87 * @see org.apache.xalan.templates.Constants
H A DStylesheet.java21 package org.apache.xalan.templates;
1056 * @param v ElemTemplate to add to list of templates
1343 * @see org.apache.xalan.templates.Constants
1442 // Next comes the templates
H A DStylesheetRoot.java21 package org.apache.xalan.templates;
97 throw new TransformerConfigurationException(XSLMessages.createMessage(XSLTErrorResources.ER_CANNOT_INIT_DEFAULT_TEMPLATES, null), se); //"Can't init default templates!", se);
779 * access templates that have been overridden.
H A DConstants.java21 package org.apache.xalan.templates;
104 ELEMNAME_APPLY_TEMPLATES_STRING = "apply-templates",
/external/chromium_org/third_party/libxslt/libxslt/
H A Dxsltutils.c39 #include "templates.h"
1888 xsltTemplatePtr *templates; local
1899 templates = xmlMalloc(max * sizeof(xsltTemplatePtr));
1900 if (templates == NULL)
1905 template = style->templates;
1911 templates[nb++] = template;
1920 if ((templates[i]->time <= templates[j]->time) ||
1921 ((templates[i]->time == templates[
2006 xsltTemplatePtr *templates; local
[all...]
H A Dxslt.c957 xsltFreeTemplateList(style->templates);
3090 * xsl:apply-templates,
3130 if (xmlStrEqual(name, BAD_CAST "apply-templates") ||
3720 if (IS_XSLT_NAME(node, "apply-templates"))
4394 * xsl:apply-templates, xsl:call-template, xsl:apply-imports,
4730 * Compile attribute value templates (AVT).
5156 templ->next = cctxt->style->templates;
5157 cctxt->style->templates = templ;
5311 ret->next = style->templates;
5312 style->templates
5593 int templates = 0; local
6039 int templates = 0; local
[all...]
H A DxsltInternals.h404 * stylesheet language like xsl:if or xsl:apply-templates.
740 * <xsl:apply-templates
744 * </xsl:apply-templates>
752 const xmlChar *mode; /* apply-templates */
753 const xmlChar *modeURI; /* apply-templates */
754 const xmlChar *select; /* sort, copy-of, value-of, apply-templates */
1027 * Allowed parents: xsl:apply-templates, xsl:for-each
1056 const xmlChar *select; /* sort, copy-of, value-of, apply-templates */
1396 const xmlChar *mode; /* apply-templates */
1397 const xmlChar *modeURI; /* apply-templates */
1508 xsltTemplatePtr templates; /* the ordered list of templates */ member in struct:_xsltStylesheet
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/cso_cache/
H A Dcso_context.c1086 const struct pipe_sampler_state **templates)
1096 temp = single_sampler(ctx, info, i, templates[i]);
1083 cso_set_samplers(struct cso_context *ctx, unsigned shader_stage, unsigned nr, const struct pipe_sampler_state **templates) argument
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant-trax.jar ... .Transformer transformer private javax.xml.transform.Templates templates private long templatesModTime private javax.xml.transform ...
/external/mesa3d/src/gallium/auxiliary/cso_cache/
H A Dcso_context.c1086 const struct pipe_sampler_state **templates)
1096 temp = single_sampler(ctx, info, i, templates[i]);
1083 cso_set_samplers(struct cso_context *ctx, unsigned shader_stage, unsigned nr, const struct pipe_sampler_state **templates) argument
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.text_3.5.0.v20100601-1300.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jface.text_3.6.1.r361_v20100825-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.objectweb.asm_3.2.0.v200909071300.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/chromium_org/third_party/boringssl/src/include/openssl/
H A Dasn1t.h518 const ASN1_TEMPLATE *templates; /* If SEQUENCE or CHOICE this contains the contents */ member in struct:ASN1_ITEM_st
519 long tcount; /* Number of templates if SEQUENCE or CHOICE */
533 * Otherwise templates must contain a single
537 * For SEQUENCE types the templates field points
541 * For CHOICE types the templates field points
/external/chromium_org/third_party/cython/src/Cython/Compiler/
H A DParsing.py40 templates = None variable in class:Ctx
1696 templates = []
1699 templates.append(s.systring)
1703 templates.append(s.systring)
1711 body_ctx.templates = templates
1960 def p_positional_and_keyword_args(s, end_sy_set, templates = None):
1984 base_type = p_c_base_type(s, templates = templates)
1998 base_type = p_c_base_type(s, templates
[all...]
H A DNodes.py470 # Only C++ functions have templates.
573 # templates [TemplatePlaceholderType]
586 templates = None variable in class:CFuncDeclaratorNode
599 self.templates = []
602 self.templates.append(PyrexTypes.TemplatePlaceholderType(template.name))
606 return self.templates
695 templates = self.templates)
953 if self.templates:
954 if not self.name in self.templates
[all...]
/external/gcc-demangle/
H A Dcp-demangle.c239 /* A list of templates. This is used while printing. */
260 /* The list of templates which applies to this modifier. */
261 struct d_print_template *templates; member in struct:d_print_mod
295 /* The current list of templates, if any. */
296 struct d_print_template *templates; member in struct:d_print_info
3302 dpi->templates = NULL;
3465 if (dpi->templates == NULL)
3472 (d_right (dpi->templates->template_decl),
3614 adpm[i].templates = dpi->templates;
[all...]
/external/openssl/crypto/asn1/
H A Dasn1t.h571 const ASN1_TEMPLATE *templates; /* If SEQUENCE or CHOICE this contains the contents */ member in struct:ASN1_ITEM_st
572 long tcount; /* Number of templates if SEQUENCE or CHOICE */
586 * Otherwise templates must contain a single
590 * For SEQUENCE types the templates field points
594 * For CHOICE types the templates field points
/external/openssl/include/openssl/
H A Dasn1t.h571 const ASN1_TEMPLATE *templates; /* If SEQUENCE or CHOICE this contains the contents */ member in struct:ASN1_ITEM_st
572 long tcount; /* Number of templates if SEQUENCE or CHOICE */
586 * Otherwise templates must contain a single
590 * For SEQUENCE types the templates field points
594 * For CHOICE types the templates field points
/external/valgrind/main/coregrind/m_demangle/
H A Dcp-demangle.c254 /* A list of templates. This is used while printing. */
275 /* The list of templates which applies to this modifier. */
276 struct d_print_template *templates; member in struct:d_print_mod
308 /* The current list of templates, if any. */
309 struct d_print_template *templates; member in struct:d_print_info
3436 dpi->templates = NULL;
3600 if (dpi->templates == NULL)
3607 (d_right (dpi->templates->template_decl),
3753 adpm[i].templates = dpi->templates;
[all...]
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dasm-xml-3.3.jarMETA-INF/MANIFEST.MF org/objectweb/asm/xml/ASMContentHandler$AnnotationDefaultRule.class " package org.objectweb ...
/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jar ... templates/CPP/ org/antlr/codegen/templates/CSharp2/ org/antlr/codegen/templates/CSharp3/ org/antlr/codegen/templates/Delphi/ org/antlr/codegen/templates ...
/external/owasp/sanitizer/lib/htmlparser-1.3/
H A Dhtmlparser-1.3-with-transitions.jar ... sax.TemplatesHandler templatesHandler javax.xml.transform.Templates templates java.io.FileOutputStream outputStream org.xml ...

Completed in 1347 milliseconds

12345