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

  /external/chromium_org/third_party/WebKit/Source/core/loader/cache/
XSLStyleSheetResource.h 40 const String& sheet() const { return m_sheet; } function in class:WebCore::XSLStyleSheetResource
  /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/dom/
StyleElement.h 42 CSSStyleSheet* sheet() const { return m_sheet.get(); } function in class:WebCore::StyleElement
DOMImplementation.cpp 238 RefPtr<CSSStyleSheet> sheet = CSSStyleSheet::create(StyleSheetContents::create()); local
239 sheet->setMediaQueries(MediaQuerySet::create(media));
240 return sheet;
ProcessingInstruction.h 48 StyleSheet* sheet() const { return m_sheet.get(); } function in class:WebCore::FINAL
72 virtual void setXSLStyleSheet(const String& href, const KURL& baseURL, const String& sheet);
78 void parseStyleSheet(const String& sheet);
DocumentStyleSheetCollection.cpp 121 // Parse the sheet and cache it.
172 const UserStyleSheet* sheet = sheets[i].get(); local
173 if (sheet->injectedFrames() == InjectInTopFrameOnly && m_document->ownerElement())
175 if (!UserContentURLPattern::matchesPatterns(m_document->url(), sheet->whitelist(), sheet->blacklist()))
177 RefPtr<CSSStyleSheet> groupSheet = CSSStyleSheet::createInline(const_cast<Document*>(m_document), sheet->url());
178 bool isUserStyleSheet = sheet->level() == UserStyleUserLevel;
184 groupSheet->contents()->parseString(sheet->source());
213 // Make sure we knew this sheet was pending, and that our count isn't out of sync.
StyleSheetCollection.cpp 98 StyleSheet* sheet = 0; local
111 sheet = pi->sheet();
112 if (sheet && !sheet->disabled() && sheet->isCSSStyleSheet())
113 activeSheet = static_cast<CSSStyleSheet*>(sheet);
123 // it is loading but we should still decide which style sheet set to use
134 sheet = linkElement->sheet();
    [all...]
  /external/chromium/chrome/browser/ui/cocoa/
constrained_window_mac.h 31 // itself later. Note that you MUST close the sheet belonging to your delegate
40 // Returns true if this delegate's sheet is currently showing.
49 // Subclass this for a dialog delegate that displays a system sheet such as
58 void set_sheet(id sheet);
59 id sheet() { return systemSheet_; } function in class:ConstrainedWindowMacDelegateSystemSheet
62 // Array's contents should be the arguments passed to the system sheet's
67 // Subclasses may override this if they show a system sheet which takes
79 // Subclass this for a dialog delegate that displays a custom sheet, e.g. loaded
90 void init(NSWindow* sheet, id delegate, SEL didEndSelector);
91 void set_sheet(NSWindow* sheet);
92 NSWindow* sheet() { return customSheet_; } function in class:ConstrainedWindowMacDelegateCustomSheet
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSDefaultStyleSheets.cpp 81 StyleSheetContents* sheet = StyleSheetContents::create(CSSParserContext(UASheetMode)).leakRef(); // leak the sheet on purpose local
82 sheet->parseString(str);
83 return sheet;
143 // No need to initialize quirks sheet yet as there are no quirk rules for elements allowed in simple default style.
163 // FIXME: We should assert that the sheet only styles SVG elements.
171 // FIXME: We should assert that this sheet only contains rules for <video> and <audio>.
CSSStyleSheet.cpp 44 StyleSheetCSSRuleList(CSSStyleSheet* sheet) : m_styleSheet(sheet) { }
71 PassRefPtr<CSSStyleSheet> CSSStyleSheet::create(PassRefPtr<StyleSheetContents> sheet, CSSImportRule* ownerRule)
73 return adoptRef(new CSSStyleSheet(sheet, ownerRule));
76 PassRefPtr<CSSStyleSheet> CSSStyleSheet::create(PassRefPtr<StyleSheetContents> sheet, Node* ownerNode)
78 return adoptRef(new CSSStyleSheet(sheet, ownerNode, false, TextPosition::minimumPosition()));
84 RefPtr<StyleSheetContents> sheet = StyleSheetContents::create(baseURL.string(), parserContext); local
85 return adoptRef(new CSSStyleSheet(sheet.release(), ownerNode, true, startPosition));
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLLinkElement.h 83 CSSStyleSheet* sheet() const { return m_sheet.get(); } function in class:WebCore::FINAL
141 CSSStyleSheet* sheet() const { return linkStyle() ? linkStyle()->sheet() : 0; } function in class:WebCore::FINAL
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XSLTProcessorLibxslt.cpp 171 static bool saveResultToString(xmlDocPtr resultDoc, xsltStylesheetPtr sheet, String& resultString)
181 int retval = xsltSaveResultTo(outputBuf, resultDoc, sheet);
260 static inline String resultMIMEType(xmlDocPtr resultDoc, xsltStylesheetPtr sheet)
267 XSLT_GET_IMPORT_PTR(resultType, sheet, method);
284 xsltStylesheetPtr sheet = xsltStylesheetPointer(m_stylesheet, m_stylesheetRootNode.get()); local
285 if (!sheet) {
292 xmlChar* origMethod = sheet->method;
294 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/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);
747 xsltStylesheetPtr sheet; local
756 sheet = tctxt->style;
758 sheet = NULL;
759 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/chromium_org/third_party/WebKit/Source/core/css/resolver/
StyleResolver.cpp 167 StyleSheetContents* sheet = cssSheet->contents(); local
170 resolver->addRulesFromSheet(sheet, *m_medium, this);
410 // First we match rules from the user agent sheet.
418 // In quirks mode, we match rules from the quirks user agent sheet.
422 // If document uses view source styles (in view source mode or in xml viewer mode), then we match rules from the view source style sheet.
444 // Now we check user sheet rules.
    [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/internal/xalan/xalan/2.6.0/
xalan-2.6.0.jar 

Completed in 452 milliseconds