HomeSort by relevance Sort by last modified time
    Searched refs:Templates (Results 1 - 25 of 83) sorted by null

1 2 3 4

  /libcore/luni/src/main/java/javax/xml/transform/
Templates.java 18 // $Id: Templates.java 570103 2007-08-27 13:24:55Z mrglavas $
28 * <p>Templates must be thread-safe for a given instance
32 public interface Templates {
35 * Create a new transformation context for this Templates object.
47 * without mutating the Templates object, and then handed in to
64 * <a href="http://www.w3.org/TR/xslt#attribute-value-templates">Attribute
65 * Value Templates</a> attribute values will
67 * namespace prefixes inside Attribute Value Templates will be unexpanded,
TransformerFactory.java 25 * {@link javax.xml.transform.Templates} objects.</p>
159 * Process the Source into a Templates object, which is a
160 * a compiled representation of the source. This Templates object
162 * a Templates object allows the TransformerFactory to do detailed
168 * @return A Templates object capable of being used for transformation
172 * parse when it is constructing the Templates object and fails.
174 public abstract Templates newTemplates(Source source)
188 * case the preferred templates will be used (i.e. alternate = no).
  /libcore/luni/src/main/java/javax/xml/transform/sax/
TemplatesHandler.java 22 import javax.xml.transform.Templates;
27 * parse events (parsing transformation instructions) into a Templates object.
35 * for the parsing of transformation instructions, it creates a Templates object,
38 * @return The Templates object that was created during
39 * the SAX event process, or null if no Templates object has
43 public Templates getTemplates();
46 * Set the base ID (URI or system ID) for the Templates object
SAXTransformerFactory.java 23 import javax.xml.transform.Templates;
31 * one for creating Transformers, the other for creating Templates
53 * and {@link #newXMLFilter(Templates templates)} methods are supported.
80 * ContentHandler events into a Result, based on the Templates argument.
82 * @param templates The compiled transformation instructions.
90 Templates templates) throws TransformerConfigurationException;
109 * ContentHandler events into a Templates object.
135 * Create an XMLFilter, based on the Templates argument.
    [all...]
  /external/clang/test/CodeGenCXX/
mangle-variadic-templates.cpp 10 template<template<typename> class ...Templates> struct template_tuple { };
64 template<template<typename> class ...Templates>
65 template_tuple<Templates...> f7() {}
debug-info-use-after-free.cpp 25 NoneT > struct Templates;
27 template < typename > class T2 > struct Templates <T1, T2 >
67 typedef Templates < A >::type gtest_AllTests_;
80 typedef Templates < A >::type gtest_AllTests_;
  /external/clang/test/SemaCXX/
local-classes.cpp 35 namespace Templates {
format-strings.cpp 80 namespace Templates {
  /external/clang/test/SemaTemplate/
temp_arg_template.cpp 59 template <typename Primitive, template <Primitive...> class F> // expected-warning {{variadic templates are a C++11 extension}}
64 template <template <typename> class... Templates> // expected-warning {{variadic templates are a C++11 extension}}
68 template <template <typename> class... Templates> // expected-warning {{variadic templates are a C++11 extension}}
69 template_tuple<Templates...> f7() {}
  /external/chromium_org/third_party/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
SkPdfFDFPageDictionary_autogen.cpp 11 SkPdfArray* SkPdfFDFPageDictionary::Templates(SkPdfNativeDoc* doc) {
12 SkPdfNativeObject* ret = get("Templates", "");
20 return get("Templates", "") != NULL;
  /external/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
SkPdfFDFPageDictionary_autogen.cpp 11 SkPdfArray* SkPdfFDFPageDictionary::Templates(SkPdfNativeDoc* doc) {
12 SkPdfNativeObject* ret = get("Templates", "");
20 return get("Templates", "") != NULL;
  /external/clang/test/CXX/temp/temp.param/
p11-0x.cpp 41 template<template<typename> class ...Templates, // expected-error{{template parameter pack must be the last template parameter}}
44 template<template<typename> class ...Templates, // expected-error{{template parameter pack must be the last template parameter}}
48 // [ Note: These are not requirements for function templates or class
p9-0x.cpp 13 template<template<class> class ...Templates = vector> // expected-error{{template parameter pack cannot have a default argument}}
  /external/apache-xml/src/main/java/org/apache/xalan/transformer/
TrAXFilter.java 27 import javax.xml.transform.Templates;
44 private Templates m_templates;
57 public TrAXFilter (Templates templates)
60 m_templates = templates;
61 m_transformer = (TransformerImpl)templates.newTransformer();
  /external/apache-xml/src/main/java/org/apache/xalan/processor/
TransformerFactoryImpl.java 32 import javax.xml.transform.Templates;
70 * interface, processes XSLT stylesheets into a Templates object
108 public javax.xml.transform.Templates processFromNode(Node node)
219 * @return A Templates object capable of being used for transformation purposes.
223 javax.xml.transform.Templates processFromNode(Node node, String systemID)
247 * case the prefered templates will be used (i.e. alternate = no).
251 * @return A Source object capable of being used to create a Templates object.
371 * Templates object and fails.
622 Templates templates = newTemplates(src) local
682 Templates templates = newTemplates(src); local
    [all...]
  /external/stlport/test/eh/
como.mak 67 -rm -fr ${TEST_EXE} *.o *.rpo *.obj *.out core *~ Templates.DB
deccxx.mak 73 -rm -fr ${TEST_EXE} *.o *.rpo *.obj *.out core *~ Templates.DB SunWS_cache cxx_repository
sgi_mipspro.mak 62 -rm -fr ${TEST_EXE} *.o *.rpo *.obj *.out core *~ Templates.DB SunWS_cache cxx_repository
  /external/chromium_org/testing/gtest/include/gtest/
gtest-typed-test.h 241 typedef ::testing::internal::Templates<__VA_ARGS__>::type gtest_AllTests_; \
  /external/chromium_org/third_party/mesa/src/src/gtest/include/gtest/
gtest-typed-test.h 241 typedef ::testing::internal::Templates<__VA_ARGS__>::type gtest_AllTests_; \
  /external/gtest/include/gtest/
gtest-typed-test.h 241 typedef ::testing::internal::Templates<__VA_ARGS__>::type gtest_AllTests_; \
  /external/llvm/utils/unittest/googletest/include/gtest/
gtest-typed-test.h 243 typedef ::testing::internal::Templates<__VA_ARGS__>::type gtest_AllTests_; \
  /external/mesa3d/src/gtest/include/gtest/
gtest-typed-test.h 241 typedef ::testing::internal::Templates<__VA_ARGS__>::type gtest_AllTests_; \
  /ndk/sources/third_party/googletest/googletest/include/gtest/
gtest-typed-test.h 241 typedef ::testing::internal::Templates<__VA_ARGS__>::type gtest_AllTests_; \
  /external/chromium_org/third_party/WebKit/Source/devtools/scripts/
CodeGeneratorFrontend.py 149 class Templates:
283 backend_js_file.write(Templates.backend_js.substitute(None,

Completed in 931 milliseconds

1 2 3 4