HomeSort by relevance Sort by last modified time
    Searched defs:sheet (Results 1 - 17 of 17) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/dom/
StyleElement.h 44 CSSStyleSheet* sheet() const { return m_sheet.get(); } function in class:blink::StyleElement
DocumentStyleSheetCollection.cpp 67 // it is loading but we should still decide which style sheet set to use
73 StyleSheet* sheet = candidate.sheet(); local
74 if (!sheet)
79 collector.appendSheetForList(sheet);
81 collector.appendActiveStyleSheet(toCSSStyleSheet(sheet));
ShadowTreeStyleSheetCollection.cpp 53 StyleSheet* sheet = 0; local
63 sheet = element->sheet();
64 if (sheet && !sheet->disabled() && sheet->isCSSStyleSheet())
65 activeSheet = toCSSStyleSheet(sheet);
70 if (!enabledViaScript && sheet && !title.isEmpty()) {
83 if (sheet)
84 collection.appendSheetForList(sheet);
    [all...]
StyleSheetCandidate.cpp 83 ASSERT(isEnabledAndLoading() || sheet());
89 StyleSheet* sheet = this->sheet(); local
90 if (!sheet || sheet->disabled() || !sheet->isCSSStyleSheet())
123 StyleSheet* StyleSheetCandidate::sheet() const function in class:blink::StyleSheetCandidate
127 return toHTMLLinkElement(node()).sheet();
129 return toHTMLStyleElement(node()).sheet();
131 return toSVGStyleElement(node()).sheet();
    [all...]
ProcessingInstruction.h 47 StyleSheet* sheet() const { return m_sheet.get(); } function in class:blink::FINAL
70 virtual void setXSLStyleSheet(const String& href, const KURL& baseURL, const String& sheet) OVERRIDE;
74 void parseStyleSheet(const String& sheet);
  /external/chromium_org/third_party/WebKit/Source/core/fetch/
XSLStyleSheetResource.h 41 const String& sheet() const { return m_sheet; } function in class:blink::FINAL
  /external/chromium_org/chrome/browser/ui/cocoa/constrained_window/
constrained_window_sheet_info.h 14 // Information about a single sheet managed by
25 @property(nonatomic, readonly) id<ConstrainedWindowSheet> sheet; variable
30 // Initializes a info object with for the given |sheet| and associated
32 - (id)initWithSheet:(id<ConstrainedWindowSheet>)sheet
36 // Hides the sheet and the associated overlay window. Hiding is done in such
40 // Shows the sheet and the associated overlay window.
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSDefaultStyleSheets.cpp 67 RefPtrWillBeRawPtr<StyleSheetContents> sheet = StyleSheetContents::create(CSSParserContext(UASheetMode, 0)); local
68 sheet->parseString(str);
71 WTF_ANNOTATE_LEAKING_OBJECT_PTR(sheet.get());
72 return sheet.release();
155 // FIXME: We should assert that the sheet only styles SVG elements.
163 // FIXME: We should assert that the sheet only styles MathML elements.
172 // FIXME: We should assert that this sheet only contains rules for <video> and <audio>.
181 // FIXME: This only works because we Force recalc the entire document so the new sheet
CSSStyleSheet.cpp 50 static PassOwnPtrWillBeRawPtr<StyleSheetCSSRuleList> create(CSSStyleSheet* sheet)
52 return adoptPtrWillBeNoop(new StyleSheetCSSRuleList(sheet));
62 StyleSheetCSSRuleList(CSSStyleSheet* sheet) : m_styleSheet(sheet) { }
82 // Destruction of the style sheet counts as being "moved out of the
94 PassRefPtrWillBeRawPtr<CSSStyleSheet> CSSStyleSheet::create(PassRefPtrWillBeRawPtr<StyleSheetContents> sheet, CSSImportRule* ownerRule)
96 return adoptRefWillBeNoop(new CSSStyleSheet(sheet, ownerRule));
99 PassRefPtrWillBeRawPtr<CSSStyleSheet> CSSStyleSheet::create(PassRefPtrWillBeRawPtr<StyleSheetContents> sheet, Node* ownerNode)
101 return adoptRefWillBeNoop(new CSSStyleSheet(sheet, ownerNode, false, TextPosition::minimumPosition()));
104 PassRefPtrWillBeRawPtr<CSSStyleSheet> CSSStyleSheet::createInline(PassRefPtrWillBeRawPtr<StyleSheetContents> sheet, Node* ownerNode, const TextPosition& startPosition
113 RefPtrWillBeRawPtr<StyleSheetContents> sheet = StyleSheetContents::create(baseURL.string(), parserContext); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
ScopedStyleResolver.cpp 45 TreeScope* ScopedStyleResolver::treeScopeFor(Document& document, const CSSStyleSheet* sheet)
47 ASSERT(sheet);
49 if (!sheet->ownerDocument())
52 Node* ownerNode = sheet->ownerNode();
75 StyleSheetContents* sheet = cssSheet->contents(); local
77 AddRuleFlags addRuleFlags = resolver->document().securityOrigin()->canRequest(sheet->baseURL()) ? RuleHasDocumentSecurityOrigin : RuleHasNoSpecialState;
78 const RuleSet& ruleSet = sheet->ensureRuleSet(medium, addRuleFlags);
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLLinkElement.h 85 CSSStyleSheet* sheet() const { return m_sheet.get(); } function in class:blink::FINAL
138 CSSStyleSheet* sheet() const { return linkStyle() ? linkStyle()->sheet() : 0; } function in class:blink::FINAL
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XSLTProcessorLibxslt.cpp 165 static bool saveResultToString(xmlDocPtr resultDoc, xsltStylesheetPtr sheet, String& resultString)
175 int retval = xsltSaveResultTo(outputBuf, resultDoc, sheet);
259 static inline String resultMIMEType(xmlDocPtr resultDoc, xsltStylesheetPtr sheet)
266 XSLT_GET_IMPORT_PTR(resultType, sheet, method);
283 xsltStylesheetPtr sheet = xsltStylesheetPointer(m_document.get(), m_stylesheet, m_stylesheetRootNode.get()); local
284 if (!sheet) {
291 xmlChar* origMethod = sheet->method;
293 sheet->method = (xmlChar*)"html";
301 sheet->omitXmlDeclaration = true;
303 xsltTransformContextPtr transformContext = xsltNewTransformContext(sheet, sourceDoc)
    [all...]
  /external/chromium_org/third_party/libxslt/libxslt/
functions.c 597 xsltStylesheetPtr sheet; local
605 sheet = tctxt->style;
606 if (sheet == NULL)
608 formatValues = sheet->decimalFormat;
614 formatValues = xsltDecimalFormatGetByName(sheet, decimalObj->stringval);
765 xsltStylesheetPtr sheet; local
774 sheet = tctxt->style;
776 sheet = NULL;
777 if ((sheet != NULL) && (sheet->doc != NULL) &
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
ElemTemplateElement.java 727 Stylesheet sheet=getStylesheet(); local
728 return (sheet==null) ? null : sheet.getHref();
    [all...]
Stylesheet.java 1318 Stylesheet sheet = this; local
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.ui.views_3.5.0.I20100527-0800.jar 
  /prebuilts/tools/common/m2/repository/xalan/xalan/2.6.0/
xalan-2.6.0.jar 

Completed in 2247 milliseconds