HomeSort by relevance Sort by last modified time
    Searched refs:CSSMutableStyleDeclaration (Results 26 - 50 of 64) sorted by null

12 3

  /external/webkit/Source/WebCore/editing/
markup.cpp 31 #include "CSSMutableStyleDeclaration.h"
136 void removeExteriorStyles(CSSMutableStyleDeclaration*);
239 static PassRefPtr<CSSMutableStyleDeclaration> styleFromMatchedRulesForElement(Element* element, bool authorOnly = true)
241 RefPtr<CSSMutableStyleDeclaration> style = CSSMutableStyleDeclaration::create();
246 RefPtr<CSSMutableStyleDeclaration> s = static_cast<CSSStyleRule*>(matchedRules->item(i))->style();
271 RefPtr<CSSMutableStyleDeclaration> style = toHTMLElement(element)->getInlineStyleDecl()->copy();
273 RefPtr<CSSMutableStyleDeclaration> styleFromMatchedRules = styleFromMatchedRulesForElement(const_cast<Element*>(element));
280 RefPtr<CSSMutableStyleDeclaration> fromComputedStyle = CSSMutableStyleDeclaration::create()
    [all...]
ReplaceSelectionCommand.h 80 void copyStyleToChildren(Node* parentNode, const CSSMutableStyleDeclaration* parentStyle);
SelectionController.h 40 class CSSMutableStyleDeclaration;
173 PassRefPtr<CSSMutableStyleDeclaration> copyTypingStyle() const;
EditorCommand.cpp 32 #include "CSSMutableStyleDeclaration.h"
100 static bool applyCommandToFrame(Frame* frame, EditorCommandSource source, EditAction action, CSSMutableStyleDeclaration* style)
118 RefPtr<CSSMutableStyleDeclaration> style = CSSMutableStyleDeclaration::create();
125 RefPtr<CSSMutableStyleDeclaration> style = CSSMutableStyleDeclaration::create();
153 RefPtr<CSSMutableStyleDeclaration> newMutableStyle = CSSMutableStyleDeclaration::create();
176 RefPtr<CSSMutableStyleDeclaration> style = CSSMutableStyleDeclaration::create()
    [all...]
ApplyStyleCommand.cpp 30 #include "CSSMutableStyleDeclaration.h"
78 CSSMutableStyleDeclaration* inlineStyleDecl = elem->inlineStyleDecl();
379 CSSMutableStyleDeclaration* inlineStyleDecl = element->getInlineStyleDecl();
507 RefPtr<CSSMutableStyleDeclaration> inlineStyle = element->getInlineStyleDecl()->copy();
724 RefPtr<CSSMutableStyleDeclaration> inlineStyle = element->getInlineStyleDecl()->copy();
    [all...]
DeleteButtonController.cpp 30 #include "CSSMutableStyleDeclaration.h"
192 CSSMutableStyleDeclaration* style = container->getInlineStyleDecl();
ReplaceSelectionCommand.cpp 33 #include "CSSMutableStyleDeclaration.h"
685 void ReplaceSelectionCommand::copyStyleToChildren(Node* parentNode, const CSSMutableStyleDeclaration* parentStyle)
708 RefPtr<CSSMutableStyleDeclaration> newStyle = parentStyle->copy();
710 RefPtr<CSSMutableStyleDeclaration> existingStyles = childElement->getInlineStyleDecl()->copy();
    [all...]
Editor.h 50 class CSSMutableStyleDeclaration;
  /external/webkit/Source/WebCore/css/
WebKitCSSKeyframesRule.cpp 29 #include "CSSMutableStyleDeclaration.h"
51 if (CSSMutableStyleDeclaration* style = static_cast<WebKitCSSKeyframeRule*>(m_lstCSSRules->item(i))->style())
98 if (CSSMutableStyleDeclaration* style = rule->style())
CSSRuleList.cpp 25 #include "CSSMutableStyleDeclaration.h"
82 if (CSSMutableStyleDeclaration* style = static_cast<WebKitCSSKeyframeRule*>(m_lstCSSRules[index].get())->style())
CSSStyleRule.cpp 25 #include "CSSMutableStyleDeclaration.h"
104 void CSSStyleRule::setDeclaration(PassRefPtr<CSSMutableStyleDeclaration> style)
WebKitCSSKeyframeRule.cpp 29 #include "CSSMutableStyleDeclaration.h"
61 void WebKitCSSKeyframeRule::setDeclaration(PassRefPtr<CSSMutableStyleDeclaration> style)
WebKitCSSMatrix.cpp 31 #include "CSSMutableStyleDeclaration.h"
55 RefPtr<CSSMutableStyleDeclaration> styleDeclaration = CSSMutableStyleDeclaration::create();
CSSStyleSelector.h 39 class CSSMutableStyleDeclaration;
209 void addMatchedDeclaration(CSSMutableStyleDeclaration* decl);
330 Vector<CSSMutableStyleDeclaration*, 64> m_matchedDecls;
360 Vector<CSSMutableStyleDeclaration*> m_additionalAttributeStyleDecls;
CSSParser.h 39 class CSSMutableStyleDeclaration;
66 static bool parseValue(CSSMutableStyleDeclaration*, int propId, const String&, bool important, bool strict);
69 bool parseColor(CSSMutableStyleDeclaration*, const String&);
70 bool parseDeclaration(CSSMutableStyleDeclaration*, const String&, RefPtr<CSSStyleSourceData>* styleSourceData = 0);
294 bool parseValue(CSSMutableStyleDeclaration*, int propId, const String&, bool important);
  /external/webkit/Source/WebCore/html/
HTMLBodyElement.h 97 RefPtr<CSSMutableStyleDeclaration> m_linkDecl;
HTMLTableColElement.cpp 81 void HTMLTableColElement::additionalAttributeStyleDecls(Vector<CSSMutableStyleDeclaration*>& results)
HTMLTableSectionElement.cpp 51 void HTMLTableSectionElement::additionalAttributeStyleDecls(Vector<CSSMutableStyleDeclaration*>& results)
HTMLTableElement.cpp 449 void HTMLTableElement::additionalAttributeStyleDecls(Vector<CSSMutableStyleDeclaration*>& results)
501 void HTMLTableElement::addSharedCellDecls(Vector<CSSMutableStyleDeclaration*>& results)
507 void HTMLTableElement::addSharedCellBordersDecl(Vector<CSSMutableStyleDeclaration*>& results)
565 void HTMLTableElement::addSharedCellPaddingDecl(Vector<CSSMutableStyleDeclaration*>& results)
593 void HTMLTableElement::addSharedGroupDecls(bool rows, Vector<CSSMutableStyleDeclaration*>& results)
HTMLTableCellElement.cpp 122 void HTMLTableCellElement::additionalAttributeStyleDecls(Vector<CSSMutableStyleDeclaration*>& results)
  /external/webkit/Source/WebCore/bindings/v8/
V8GCController.cpp 298 CSSMutableStyleDeclaration* cssMutableStyleDeclaration = static_cast<CSSMutableStyleDeclaration*>(current);
299 if (cssMutableStyleDeclaration->isInlineStyleDeclaration()) {
300 ASSERT(cssMutableStyleDeclaration->parent()->isStyleSheet());
301 return calculateGroupId(cssMutableStyleDeclaration->node());
304 ASSERT(cssMutableStyleDeclaration->parent() == cssMutableStyleDeclaration->parentRule());
367 CSSMutableStyleDeclaration* cssMutableStyleDeclaration = static_cast<CSSMutableStyleDeclaration*>(cssStyleDeclaration)
    [all...]
  /external/webkit/Source/WebCore/dom/
StyledElement.cpp 28 #include "CSSMutableStyleDeclaration.h"
130 m_inlineStyleDecl = CSSMutableStyleDeclaration::create();
250 CSSMutableStyleDeclaration* StyledElement::getInlineStyleDecl()
437 if (CSSMutableStyleDeclaration* style = inlineStyleDecl())
  /external/webkit/Source/WebCore/bindings/js/
JSNodeCustom.cpp 116 if (CSSMutableStyleDeclaration* style = static_cast<StyledElement*>(node)->inlineStyleDecl()) {
  /external/webkit/Source/WebCore/svg/
SVGFontFaceElement.cpp 52 , m_styleDeclaration(CSSMutableStyleDeclaration::create())
  /external/webkit/Source/WebCore/inspector/
InspectorStyleSheet.cpp 198 RefPtr<CSSMutableStyleDeclaration> tempMutableStyle = CSSMutableStyleDeclaration::create();
    [all...]

Completed in 1545 milliseconds

12 3