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

  /external/chromium_org/third_party/WebKit/Source/core/xml/
XSLImportRule.cpp 44 if (m_styleSheet)
45 m_styleSheet->setParentStyleSheet(0);
54 if (m_styleSheet)
55 m_styleSheet->setParentStyleSheet(0);
57 m_styleSheet = XSLStyleSheet::create(this, href, baseURL);
61 m_styleSheet->setParentStyleSheet(parent);
63 m_styleSheet->parseString(sheet);
72 return m_loading || (m_styleSheet && m_styleSheet->isLoading());
112 if (!m_styleSheet)
    [all...]
XSLTProcessor.h 51 void setXSLStyleSheet(PassRefPtrWillBeRawPtr<XSLStyleSheet> styleSheet) { m_stylesheet = styleSheet; }
75 XSLStyleSheet* xslStylesheet() const { return m_stylesheet.get(); }
87 RefPtrWillBeMember<XSLStyleSheet> m_stylesheet; member in class:WebCore::XSLTProcessor
XSLImportRule.h 49 XSLStyleSheet* styleSheet() const { return m_styleSheet.get(); }
64 RefPtrWillBeMember<XSLStyleSheet> m_styleSheet;
XSLTProcessor.cpp 59 ASSERT(!m_stylesheetRootNode || !m_stylesheet || m_stylesheet->hasOneRef());
157 m_stylesheet.clear();
164 visitor->trace(m_stylesheet);
XSLTProcessorLibxslt.cpp 281 xsltStylesheetPtr sheet = xsltStylesheetPointer(m_stylesheet, m_stylesheetRootNode.get());
284 m_stylesheet = nullptr;
287 m_stylesheet->clearDocuments();
346 m_stylesheet = nullptr;
  /external/chromium_org/third_party/WebKit/Source/core/css/
StyleRuleImport.cpp 55 if (m_styleSheet)
56 m_styleSheet->clearOwnerRule();
66 visitor->trace(m_styleSheet);
72 if (m_styleSheet)
73 m_styleSheet->clearOwnerRule();
84 m_styleSheet = StyleSheetContents::create(this, href, context);
86 m_styleSheet->parseAuthorStyleSheet(cachedStyleSheet, document ? document->securityOrigin() : 0);
98 return m_loading || (m_styleSheet && m_styleSheet->isLoading());
CSSTestHelper.cpp 52 m_styleSheet = CSSStyleSheet::createInline(m_document.get(), KURL(), position, "UTF-8");
57 RuleSet& ruleSet = m_styleSheet->contents()->ensureRuleSet(MediaQueryEvaluator(), RuleHasNoSpecialState);
65 unsigned sheetLength = m_styleSheet->length();
66 ASSERT_TRUE(m_styleSheet->contents()->parseStringAtPosition(cssText, position, true));
67 ASSERT_TRUE(m_styleSheet->length() > sheetLength);
CSSStyleSheet.h 103 RawPtrWillBeMember<CSSStyleSheet> m_styleSheet;
153 : m_styleSheet(sheet)
155 if (m_styleSheet)
156 m_styleSheet->willMutateRules();
160 : m_styleSheet(rule ? rule->parentStyleSheet() : 0)
162 if (m_styleSheet)
163 m_styleSheet->willMutateRules();
168 if (m_styleSheet)
169 m_styleSheet->didMutateRules();
CSSStyleSheet.cpp 57 visitor->trace(m_styleSheet);
62 StyleSheetCSSRuleList(CSSStyleSheet* sheet) : m_styleSheet(sheet) { }
65 virtual void ref() OVERRIDE { m_styleSheet->ref(); }
66 virtual void deref() OVERRIDE { m_styleSheet->deref(); }
69 virtual unsigned length() const OVERRIDE { return m_styleSheet->length(); }
70 virtual CSSRule* item(unsigned index) const OVERRIDE { return m_styleSheet->item(index); }
72 virtual CSSStyleSheet* styleSheet() const OVERRIDE { return m_styleSheet; }
74 RawPtrWillBeMember<CSSStyleSheet> m_styleSheet;
StyleRuleImport.h 48 StyleSheetContents* styleSheet() const { return m_styleSheet.get(); }
83 RefPtrWillBeMember<StyleSheetContents> m_styleSheet;
CSSTestHelper.h 58 RefPtrWillBePersistent<CSSStyleSheet> m_styleSheet;
CSSGrammar.y 477 if (parser->m_styleSheet)
478 parser->m_styleSheet->parserSetEncodingFromCharsetRule($3);
487 if ($2 && parser->m_styleSheet)
488 parser->m_styleSheet->parserAppendRule($2);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorCSSAgent.cpp 159 , m_styleSheet(styleSheet)
166 if (!m_styleSheet->getText(&m_oldText))
173 return m_styleSheet->setText(m_oldText, exceptionState);
178 return m_styleSheet->setText(m_text, exceptionState);
183 return String::format("SetStyleSheetText %s", m_styleSheet->id().utf8().data());
195 RefPtr<InspectorStyleSheetBase> m_styleSheet;
205 , m_styleSheet(styleSheet)
226 return m_styleSheet->setStyleText(m_cssId, m_oldStyleText);
231 if (!m_styleSheet->getStyleText(m_cssId, &m_oldStyleText))
233 bool result = m_styleSheet->setPropertyText(m_cssId, m_propertyIndex, m_text, m_overwrite, exceptionState)
    [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/css/parser/
BisonCSSParser.h 181 RawPtrWillBeMember<StyleSheetContents> m_styleSheet;
256 void setStyleSheet(StyleSheetContents* styleSheet) { m_styleSheet = styleSheet; }
BisonCSSParser-in.cpp 109 , m_styleSheet(nullptr)
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/processor/
StylesheetHandler.java 765 // String ns = m_stylesheet.getNamespaceFromStack(target);
    [all...]

Completed in 581 milliseconds