/external/chromium_org/third_party/WebKit/Source/core/xml/ |
XSLImportRule.cpp | 43 if (m_styleSheet) 44 m_styleSheet->setParentStyleSheet(0); 52 if (m_styleSheet) 53 m_styleSheet->setParentStyleSheet(0); 55 m_styleSheet = XSLStyleSheet::create(this, href, baseURL); 59 m_styleSheet->setParentStyleSheet(parent); 61 m_styleSheet->parseString(sheet); 70 return (m_loading || (m_styleSheet && m_styleSheet->isLoading())); 110 if (!m_styleSheet) [all...] |
XSLTProcessor.h | 51 void setXSLStyleSheet(PassRefPtr<XSLStyleSheet> styleSheet) { m_stylesheet = styleSheet; } 75 XSLStyleSheet* xslStylesheet() const { return m_stylesheet.get(); } 85 RefPtr<XSLStyleSheet> m_stylesheet; member in class:WebCore::XSLTProcessor
|
XSLImportRule.h | 48 XSLStyleSheet* styleSheet() const { return m_styleSheet.get(); } 63 RefPtr<XSLStyleSheet> m_styleSheet;
|
XSLTProcessor.cpp | 58 ASSERT(!m_stylesheetRootNode || !m_stylesheet || m_stylesheet->hasOneRef()); 155 m_stylesheet.clear();
|
XSLTProcessorLibxslt.cpp | 280 xsltStylesheetPtr sheet = xsltStylesheetPointer(m_stylesheet, m_stylesheetRootNode.get()); 283 m_stylesheet = 0; 286 m_stylesheet->clearDocuments(); 342 m_stylesheet = 0;
|
/external/chromium_org/third_party/WebKit/Source/core/css/ |
StyleRuleImport.cpp | 54 if (m_styleSheet) 55 m_styleSheet->clearOwnerRule(); 62 if (m_styleSheet) 63 m_styleSheet->clearOwnerRule(); 70 m_styleSheet = StyleSheetContents::create(this, href, context); 73 m_styleSheet->parseAuthorStyleSheet(cachedStyleSheet, document ? document->securityOrigin() : 0); 85 return m_loading || (m_styleSheet && m_styleSheet->isLoading());
|
CSSStyleSheet.h | 99 CSSStyleSheet* m_styleSheet; 147 : m_styleSheet(sheet) 149 if (m_styleSheet) 150 m_styleSheet->willMutateRules(); 154 : m_styleSheet(rule ? rule->parentStyleSheet() : 0) 156 if (m_styleSheet) 157 m_styleSheet->willMutateRules(); 162 if (m_styleSheet) 163 m_styleSheet->didMutateRules();
|
StyleRuleImport.h | 47 StyleSheetContents* styleSheet() const { return m_styleSheet.get(); } 79 RefPtr<StyleSheetContents> m_styleSheet;
|
CSSStyleSheet.cpp | 47 StyleSheetCSSRuleList(CSSStyleSheet* sheet) : m_styleSheet(sheet) { } 50 virtual void ref() { m_styleSheet->ref(); } 51 virtual void deref() { m_styleSheet->deref(); } 53 virtual unsigned length() const { return m_styleSheet->length(); } 54 virtual CSSRule* item(unsigned index) const { return m_styleSheet->item(index); } 56 virtual CSSStyleSheet* styleSheet() const { return m_styleSheet; } 58 CSSStyleSheet* m_styleSheet;
|
CSSGrammar.y | 491 if (parser->m_styleSheet) 492 parser->m_styleSheet->parserSetEncodingFromCharsetRule($3); 501 if ($2 && parser->m_styleSheet) 502 parser->m_styleSheet->parserAppendRule($2); [all...] |
CSSParser.h | 383 StyleSheetContents* m_styleSheet; 493 void setStyleSheet(StyleSheetContents* styleSheet) { m_styleSheet = styleSheet; }
|
CSSParser-in.cpp | 191 , m_styleSheet(0) [all...] |
/external/apache-xml/src/main/java/org/apache/xalan/templates/ |
ElemTemplate.java | 110 private Stylesheet m_stylesheet; field in class:ElemTemplate 120 return m_stylesheet.getStylesheetComposed(); 130 return m_stylesheet; 140 m_stylesheet = sheet; 150 return m_stylesheet.getStylesheetRoot();
|
ElemTemplateElement.java | 419 // newChildElem.m_stylesheet = oldChildElem.m_stylesheet; 420 // oldChildElem.m_stylesheet = null; 527 // newChildElem.m_stylesheet = oldChildElem.m_stylesheet; 528 // oldChildElem.m_stylesheet = null; [all...] |
ElemNumber.java | 743 // countMatchPattern = m_stylesheet.createMatchPattern("@"+contextNode.getNodeName(), this); 750 // countMatchPattern = m_stylesheet.createMatchPattern("text()", this); 755 // countMatchPattern = m_stylesheet.createMatchPattern("comment()", this); 760 // countMatchPattern = m_stylesheet.createMatchPattern("/", this); 765 // countMatchPattern = m_stylesheet.createMatchPattern("pi("+contextNode.getNodeName()+")", this); [all...] |
/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
InspectorCSSAgent.cpp | 260 , m_styleSheet(styleSheet) 265 RefPtr<InspectorStyleSheet> m_styleSheet; 320 if (!m_styleSheet->getText(&m_oldText)) 327 if (m_styleSheet->setText(m_oldText, exceptionState)) { 328 m_styleSheet->reparseStyleSheet(m_oldText); 336 if (m_styleSheet->setText(m_text, exceptionState)) { 337 m_styleSheet->reparseStyleSheet(m_text); 345 return String::format("SetStyleSheetText %s", m_styleSheet->id().utf8().data()); 384 return m_styleSheet->setStyleText(m_cssId, m_oldText, &placeholder, exceptionState); 389 return m_styleSheet->setStyleText(m_cssId, m_text, &m_oldText, exceptionState) [all...] |
/external/apache-xml/src/main/java/org/apache/xalan/processor/ |
StylesheetHandler.java | 765 // String ns = m_stylesheet.getNamespaceFromStack(target); [all...] |