Searched refs:stylesheet (Results 1 - 21 of 21) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/xml/crypto/dsig/spec/
H A DXSLTTransformParameterSpec.java36 * The parameters include a namespace-qualified stylesheet element.
39 * mechanism-dependent (ex: DOM) stylesheet element. For example:
41 * DOMStructure stylesheet = new DOMStructure(element)
42 * XSLTTransformParameterSpec spec = new XSLTransformParameterSpec(stylesheet);
45 * the namespace-qualified stylesheet element.
53 private XMLStructure stylesheet; field in class:XSLTTransformParameterSpec
57 * stylesheet.
59 * @param stylesheet the XSLT stylesheet to be used
60 * @throws NullPointerException if <code>stylesheet</cod
63 XSLTTransformParameterSpec(XMLStructure stylesheet) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/util/
H A DNodeSortRecordFactGenerator.java37 Stylesheet stylesheet) {
39 accessFlags, interfaces, stylesheet);
34 NodeSortRecordFactGenerator(String className, String superClassName, String fileName, int accessFlags, String[] interfaces, Stylesheet stylesheet) argument
H A DFilterGenerator.java44 Stylesheet stylesheet) {
46 accessFlags, interfaces, stylesheet);
41 FilterGenerator(String className, String superClassName, String fileName, int accessFlags, String[] interfaces, Stylesheet stylesheet) argument
H A DNodeCounterGenerator.java46 Stylesheet stylesheet) {
48 accessFlags, interfaces, stylesheet);
41 NodeCounterGenerator(String className, String superClassName, String fileName, int accessFlags, String[] interfaces, Stylesheet stylesheet) argument
H A DNodeSortRecordGenerator.java43 Stylesheet stylesheet) {
45 accessFlags, interfaces, stylesheet);
40 NodeSortRecordGenerator(String className, String superClassName, String fileName, int accessFlags, String[] interfaces, Stylesheet stylesheet) argument
H A DClassGenerator.java66 Stylesheet stylesheet) {
69 _stylesheet = stylesheet;
70 _parser = stylesheet.getParser();
73 if (stylesheet.isMultiDocument()) {
104 * Pretend this is the stylesheet class. Useful when compiling
63 ClassGenerator(String class_name, String super_class_name, String file_name, int access_flags, String[] interfaces, Stylesheet stylesheet) argument
H A DErrorMsg.java255 Stylesheet stylesheet = node.getStylesheet();
256 if (stylesheet != null)
257 return stylesheet.getSystemId();
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/trax/
H A DTemplatesHandlerImpl.java58 * System ID for this stylesheet.
130 * @param id Base URI for this stylesheet
214 Stylesheet stylesheet = null;
220 stylesheet = _parser.makeStylesheet(root);
221 stylesheet.setSystemId(_systemId);
222 stylesheet.setParentStylesheet(null);
225 stylesheet.setTemplateInlining(true);
227 stylesheet.setTemplateInlining(false);
231 stylesheet.setSourceLoader(this);
234 _parser.setCurrentStylesheet(stylesheet);
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DApplyImports.java62 * Determine the lowest import precedence for any stylesheet imported
63 * or included by the stylesheet in which this <xsl:apply-imports/>
64 * element occured. The templates that are imported by the stylesheet in
82 // Indicate to the top-level stylesheet that all templates must be
84 Stylesheet stylesheet = getStylesheet();
85 stylesheet.setTemplateInlining(false);
93 stylesheet = parser.getTopLevelStylesheet();
108 * some template in the stylesheet uses parameters.
111 final Stylesheet stylesheet = classGen.getStylesheet();
125 if (stylesheet
[all...]
H A DCallTemplate.java108 final Stylesheet stylesheet = classGen.getStylesheet();
112 // If there are Params in the stylesheet or WithParams in this call?
113 if (stylesheet.hasLocalParams() || hasContents()) {
134 final String className = stylesheet.getClassName();
175 if (_calleeTemplate == null && (stylesheet.hasLocalParams() || hasContents())) {
H A DParser.java227 public void setCurrentStylesheet(Stylesheet stylesheet) { argument
228 _currentStylesheet = stylesheet;
366 Stylesheet stylesheet;
369 stylesheet = (Stylesheet)element;
372 stylesheet = new Stylesheet();
373 stylesheet.setSimplified();
374 stylesheet.addElement(element);
375 stylesheet.setAttributes((AttributesImpl) element.getAttributes());
382 stylesheet.setParser(this);
383 return stylesheet;
394 createAST(Stylesheet stylesheet) argument
[all...]
H A DApplyTemplates.java114 * some template in the stylesheet uses parameters.
118 final Stylesheet stylesheet = classGen.getStylesheet();
134 if (stylesheet.hasLocalParams() || hasContents()) {
196 if (stylesheet.hasLocalParams() || hasContents()) {
H A DSyntaxTreeNode.java353 * the import precedence of the stylesheet in which this element occured.
357 Stylesheet stylesheet = getStylesheet();
358 if (stylesheet == null) return Integer.MIN_VALUE;
359 return stylesheet.getImportPrecedence();
363 * Get the Stylesheet node that represents the <xsl:stylesheet/> element
634 final Stylesheet stylesheet = classGen.getStylesheet();
660 il.append(new PUSH(cpg, stylesheet.callsNodeset()));
687 if (stylesheet.callsNodeset()
705 if (!stylesheet.callsNodeset()) {
H A DTemplate.java54 private int _position; // Position within stylesheet (prio. resolution)
256 * When the parser realises that it is dealign with a simplified stylesheet
258 * stylesheet (a LiteralElement object) as its only child. The Stylesheet
267 public void parseSimplified(Stylesheet stylesheet, Parser parser) { argument
269 _stylesheet = stylesheet;
270 setParent(stylesheet);
H A DXSLTC.java64 // A reference to the main stylesheet parser object.
73 // A reference to the stylesheet being compiled.
99 // All literal text in the stylesheet
141 * protocols allowed for external references set by the stylesheet processing instruction, Import and Include element.
145 * protocols allowed for external DTD references in source file and/or stylesheet.
185 * Return allowed protocols for accessing external stylesheet.
198 * Set allowed protocols for accessing external stylesheet.
231 * Initializes the compiler to compile a new stylesheet
295 * Set the parameters to use to locate the correct <?xml-stylesheet ...?>
308 * Compiles an XSL stylesheet pointe
674 setStylesheet(Stylesheet stylesheet) argument
[all...]
H A DMode.java68 * The name of this mode as defined in the stylesheet.
73 * A reference to the stylesheet object that owns this mode.
173 * @param stylesheet The Stylesheet in which the mode occured
177 public Mode(QName name, Stylesheet stylesheet, String suffix) { argument
179 _stylesheet = stylesheet;
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/transforms/implementations/
H A DTransformXSLT.java64 static final String XSLTSTYLESHEET = "stylesheet";
102 XSLTSpecNS,"stylesheet", 0);
105 Object exArgs[] = { "xslt:stylesheet", "Transform" };
123 Source stylesheet;
126 * This complicated transformation of the stylesheet itself is necessary
128 * Source stylesheet = new DOMSource(this._xsltElement);
131 * so we convert the stylesheet to byte[] and use this as input stream
141 stylesheet =
145 Transformer transformer = tFactory.newTransformer(stylesheet);
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiGen.java135 File stylesheet = new File(xslFileName);
143 StreamSource stylesource = new StreamSource(stylesheet);
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xslt/
H A DProcess.java108 System.out.println(resbundle.getString("optionPARAM")); //" [-PARAM name expression (Set a stylesheet parameter)]");
150 * the instructions found in an XSL stylesheet.
154 * <p>To set stylesheet parameters from the command line, use
703 // than the stylesheet.
747 Templates stylesheet = null;
772 stylesheet = tfactory.newTemplates(new DOMSource(xslDOM,
778 stylesheet = tfactory.newTemplates(new StreamSource(xslFileName));
813 // Did they pass in a stylesheet, or should we get it from the
815 if (null == stylesheet)
822 stylesheet
[all...]
/openjdk7/jdk/src/share/classes/org/jcp/xml/dsig/internal/dom/
H A DDOMUtils.java356 XMLStructure stylesheet = spec1.getStylesheet();
358 ((javax.xml.crypto.dom.DOMStructure) stylesheet).getNode();
/openjdk7/jdk/make/docs/
H A DMakefile510 cp $(TAGLETAPI_TEMPDIR)/stylesheet.css $(@D)

Completed in 61 milliseconds