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

  /dalvik/libcore/xml/src/main/java/org/apache/xalan/processor/
ProcessorStylesheetElement.java 26 import org.apache.xalan.templates.Stylesheet;
33 * TransformerFactory for xsl:stylesheet or xsl:transform markup.
35 * @see <a href="http://www.w3.org/TR/xslt#stylesheet-element">stylesheet-element in XSLT Specification</a>
68 Stylesheet stylesheet; local
74 stylesheet = getStylesheetRoot(handler);
83 Stylesheet parent = handler.getStylesheet();
91 stylesheet = sc;
95 stylesheet = new Stylesheet(parent)
122 StylesheetRoot stylesheet; local
    [all...]
ProcessorLRE.java 35 import org.apache.xalan.templates.Stylesheet;
82 // Literal Result Template as stylesheet.
85 handler.getProcessorFor(Constants.S_XSLNAMESPACEURL, "stylesheet",
86 "xsl:stylesheet");
90 Stylesheet stylesheet; local
93 stylesheet = getStylesheetRoot(handler);
100 // stylesheet.setDOMBackPointer(handler.getOriginatingNode());
111 stylesheet.setLocaterInfo(slocator);
112 stylesheet.setPrefixes(handler.getNamespaceSupport())
321 StylesheetRoot stylesheet; local
    [all...]
  /external/webkit/WebCore/xml/
XSLTProcessorQt.cpp 120 RefPtr<XSLStyleSheet> stylesheet = m_stylesheet; local
121 if (!stylesheet && m_stylesheetRootNode) {
123 stylesheet = XSLStyleSheet::create(node->parent() ? node->parent() : node,
126 stylesheet->parseString(createMarkup(node));
129 if (!stylesheet || stylesheet->sheetString().isEmpty())
156 styleSheetBuffer.setData(QString(stylesheet->sheetString()).toUtf8());
163 query.setQuery(&styleSheetBuffer, QUrl(stylesheet->href()));
XSLTProcessor.idl 40 [Custom] void importStylesheet(in Node stylesheet);
  /dalvik/libcore/xml/src/main/java/org/apache/xalan/templates/
ElemUse.java 116 * @param stylesheet The owning root stylesheet
121 TransformerImpl transformer, StylesheetRoot stylesheet)
124 applyAttrSets(transformer, stylesheet, m_attributeSetsNames);
135 * @param stylesheet The owning root stylesheet
141 TransformerImpl transformer, StylesheetRoot stylesheet, QName attributeSetsNames[])
152 java.util.List attrSets = stylesheet.getAttributeSetComposed(qname);
ElemExtensionCall.java 106 * @param stylesheet Stylesheet root associated with this extension element
111 private ElemExtensionDecl getElemExtensionDecl(StylesheetRoot stylesheet,
116 int n = stylesheet.getGlobalImportCount();
120 Stylesheet imported = stylesheet.getGlobalImport(i);
StylesheetRoot.java 50 * This class represents the root object of the stylesheet tree.
79 * Uses an XSL stylesheet document.
111 * @param schema The schema used to create this stylesheet
122 * Tell if this is the root of the stylesheet tree.
124 * @return True since this is the root of the stylesheet tree.
162 * (i.e., if the stylesheet contains extension functions and/or elements).
174 * namespaces encountered during composition of a stylesheet.
264 // Build the global include list for this stylesheet.
340 Stylesheet included = imported.getIncludeComposed(j);
373 * The combined list of imports. The stylesheet with the highes
    [all...]
ElemLiteralResult.java 60 * that is also the stylesheet element.
68 * that is also the stylesheet element.
72 * represents a root element that is also the stylesheet element.
81 * that is also the stylesheet element.
85 * represents a root element that is also the stylesheet element.
117 * that were present on the element node in the stylesheet tree,
311 // stylesheet compile time.
337 StylesheetRoot stylesheet = getStylesheetRoot(); local
341 NamespaceAlias nsa = stylesheet.getNamespaceAliasComposed(m_namespace);
371 stylesheet.getNamespaceAliasComposed(m_namespace); // %REVIEW% ns
    [all...]
ElemTemplateElement.java 57 * @see Stylesheet
140 * Get the owning "composed" stylesheet. This looks up the
142 * on a Stylesheet object, which will Get the owning
143 * aggregated stylesheet, or that stylesheet if it is aggregated.
145 * @return the owning "composed" stylesheet.
153 * Get the owning stylesheet. This looks up the
155 * on a Stylesheet object, which will return itself.
157 * @return the owning stylesheet
159 public Stylesheet getStylesheet(
1040 StylesheetRoot stylesheet = this.getStylesheetRoot(); local
    [all...]
RedundentExprEliminator.java 96 * Method to be called after the all global expressions within a stylesheet
103 public void eleminateRedundentGlobals(StylesheetRoot stylesheet)
105 eleminateRedundent(stylesheet, m_absPaths);
398 * @param elem An representation of an element in an XSLT stylesheet.
585 * it into the stylesheet, and replace the occurance with a reference to
808 * shared redundent XPath, and add it to the stylesheet.
978 * the search when a xsl:for-each, xsl:template, or xsl:stylesheet is
    [all...]
  /external/webkit/WebCore/css/
CSSMediaRule.cpp 88 // stylesheet() can only return 0 for computed style declarations.
89 stylesheet()->styleSheetChanged();
105 // stylesheet() can only return 0 for computed style declarations.
106 stylesheet()->styleSheetChanged();
StyleBase.cpp 28 #include "StyleSheet.h"
43 StyleSheet* StyleBase::stylesheet() function in class:WebCore::StyleBase
48 return static_cast<StyleSheet*>(b);
56 StyleSheet* sheet = const_cast<StyleBase*>(this)->stylesheet();
StyleBase.h 31 class StyleSheet;
73 StyleSheet* stylesheet();
WebKitCSSKeyframesRule.cpp 32 #include "StyleSheet.h"
63 stylesheet()->styleSheetChanged();
CSSParser.cpp 277 ASSERT(!declaration->stylesheet() || declaration->stylesheet()->isCSSStyleSheet());
278 m_styleSheet = static_cast<CSSStyleSheet*>(declaration->stylesheet());
334 ASSERT(!declaration->stylesheet() || declaration->stylesheet()->isCSSStyleSheet());
335 m_styleSheet = static_cast<CSSStyleSheet*>(declaration->stylesheet());
372 ASSERT(!declaration->stylesheet() || declaration->stylesheet()->isCSSStyleSheet());
373 m_styleSheet = static_cast<CSSStyleSheet*>(declaration->stylesheet());
    [all...]
CSSMutableStyleDeclaration.cpp 737 CSSStyleSheet* sheet = static_cast<CSSStyleSheet*>(stylesheet());
    [all...]
CSSGrammar.y 267 stylesheet: label
    [all...]
  /external/webkit/WebCore/html/
HTMLLinkElement.h 71 StyleSheet* sheet() const;
97 static void tokenizeRelAttribute(const AtomicString& value, bool& stylesheet, bool& alternate, bool& icon, bool& touchIcon, bool& precomposedTouchIcon, bool& dnsPrefetch);
99 static void tokenizeRelAttribute(const AtomicString& value, bool& stylesheet, bool& alternate, bool& icon, bool& dnsPrefetch);
  /external/webkit/WebCore/inspector/front-end/
InjectedScript.js 248 var stylesheet = rule.parentStyleSheet;
249 stylesheet.addRule(newContent);
250 var newRule = stylesheet.cssRules[stylesheet.cssRules.length - 1];
253 var parentRules = stylesheet.cssRules;
275 var stylesheet = ownerDocument.__stylesheet;
276 if (!stylesheet) {
281 stylesheet = ownerDocument.styleSheets[ownerDocument.styleSheets.length - 1];
282 ownerDocument.__stylesheet = stylesheet;
286 stylesheet.addRule(newContent)
    [all...]
StylesSidebarPane.js 434 subtitle = WebInspector.UIString("user agent stylesheet");
436 subtitle = WebInspector.UIString("user stylesheet");
440 subtitle = WebInspector.UIString("inline stylesheet");
517 return (this.styleRule.parentStyleSheet === WebInspector.panels.elements.stylesheet);
    [all...]
  /dalvik/libcore/xml/src/main/java/org/apache/xalan/transformer/
TransformerImpl.java 65 import org.apache.xalan.templates.Stylesheet;
333 * @param stylesheet The root of the stylesheet tree.
335 public TransformerImpl(StylesheetRoot stylesheet)
338 m_optimizer = stylesheet.getOptimizer();
339 m_incremental = stylesheet.getIncremental();
340 m_source_location = stylesheet.getSource_location();
341 setStylesheet(stylesheet);
348 if (stylesheet.isSecureProcessing())
352 getXPathContext().setNamespaceContext(stylesheet);
1200 StylesheetRoot stylesheet = this.getStylesheet(); local
    [all...]
  /external/webkit/WebKitTools/CodeCoverage/
regenerate-coverage-display 80 <link rel="stylesheet" type="text/css" href="gcov.css">
  /external/webkit/WebKit/chromium/src/
WebFrameImpl.cpp 704 RefPtr<Element> stylesheet = document->createElement( local
707 stylesheet->setAttribute(HTMLNames::idAttr, id);
708 stylesheet->setTextContent(css, err);
711 bool success = documentElement->insertBefore(stylesheet, first, err);
    [all...]
  /build/tools/droiddoc/templates-sdk/
sdkpage.cs 10 <link href="<?cs var:toroot ?>assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
  /prebuilt/common/ant/
ant.jar 

Completed in 996 milliseconds