/external/webkit/Source/WebCore/css/ |
D | CSSMutableStyleDeclaration.h | 38 …CSSMutableStyleDeclarationConstIterator(const CSSMutableStyleDeclaration* decl, CSSProperty* curre… 42 const CSSProperty& operator*() const { return *m_current; } 43 const CSSProperty* operator->() const { return m_current; } 55 CSSProperty* m_current; 68 …static PassRefPtr<CSSMutableStyleDeclaration> create(CSSRule* parentRule, const CSSProperty* const… in create() 72 static PassRefPtr<CSSMutableStyleDeclaration> create(const Vector<CSSProperty>& properties) in create() 125 void addParsedProperties(const CSSProperty* const *, int numProperties); 127 void addParsedProperty(const CSSProperty&); 149 CSSMutableStyleDeclaration(CSSRule* parentRule, const Vector<CSSProperty>&); 150 CSSMutableStyleDeclaration(CSSRule* parentRule, const CSSProperty* const *, int numProperties); [all …]
|
D | CSSProperty.h | 32 class CSSProperty { 35 …CSSProperty(int propID, PassRefPtr<CSSValue> value, bool important = false, int shorthandID = 0, b… 44 CSSProperty& operator=(const CSSProperty& other) 66 friend bool operator==(const CSSProperty&, const CSSProperty&); 81 template<> struct VectorTraits<WebCore::CSSProperty> : SimpleClassVectorTraits { };
|
D | CSSMutableStyleDeclaration.cpp | 62 CSSMutableStyleDeclaration::CSSMutableStyleDeclaration(CSSRule* parent, const Vector<CSSProperty>& … in CSSMutableStyleDeclaration() 75 CSSMutableStyleDeclaration::CSSMutableStyleDeclaration(CSSRule* parent, const CSSProperty* const * … in CSSMutableStyleDeclaration() 86 const CSSProperty *property = properties[i]; in CSSMutableStyleDeclaration() 450 const CSSProperty* property = findPropertyWithId(propertyID); in getPropertyCSSValue() 473 CSSProperty* foundProperty = findPropertyWithId(propertyID); in removeProperty() 521 const CSSProperty* property = findPropertyWithId(propertyID); in getPropertyPriority() 527 const CSSProperty* property = findPropertyWithId(propertyID); in getPropertyShorthand() 533 const CSSProperty* property = findPropertyWithId(propertyID); in isPropertyImplicit() 572 void CSSMutableStyleDeclaration::setPropertyInternal(const CSSProperty& property, CSSProperty* slot) in setPropertyInternal() 577 CSSProperty* toReplace = slot ? slot : findPropertyWithId(property.id()); in setPropertyInternal() [all …]
|
D | CSSStyleDeclaration.cpp | 125 bool CSSStyleDeclaration::cssPropertyMatches(const CSSProperty* property) const in cssPropertyMatches() 140 const CSSProperty& property = *it; in diff() 153 Vector<CSSProperty> list; in copyPropertiesInSet() 158 list.append(CSSProperty(set[i], value.release(), false)); in copyPropertiesInSet()
|
D | CSSStyleDeclaration.h | 30 class CSSProperty; variable 78 virtual bool cssPropertyMatches(const CSSProperty*) const;
|
D | CSSProperty.cpp | 30 String CSSProperty::cssText() const in cssText() 35 bool operator==(const CSSProperty& a, const CSSProperty& b) in operator ==() 157 int CSSProperty::resolveDirectionAwareProperty(int propertyID, TextDirection direction, WritingMode… in resolveDirectionAwareProperty()
|
D | CSSComputedStyleDeclaration.h | 67 virtual bool cssPropertyMatches(const CSSProperty*) const;
|
D | CSSParser.h | 42 class CSSProperty; variable 240 CSSProperty** m_parsedProperties;
|
D | CSSStyleSelector.h | 42 class CSSProperty; variable
|
D | CSSParser.cpp | 140 , m_parsedProperties(static_cast<CSSProperty**>(fastMalloc(32 * sizeof(CSSProperty*)))) in CSSParser() 313 …CSSProperty property(propertyId, stylesheet->document()->cssPrimitiveValueCache()->createIdentifie… in parseColorValue() 320 …CSSProperty property(propertyId, stylesheet->document()->cssPrimitiveValueCache()->createColorValu… in parseColorValue() 404 …CSSProperty property(propertyId, stylesheet->document()->cssPrimitiveValueCache()->createValue(num… in parseSimpleLengthValue() 584 …OwnPtr<CSSProperty> prop(new CSSProperty(propId, value, important, m_currentShorthand, m_implicitS… in addProperty() 587 if (m_maxParsedProperties > UINT_MAX / sizeof(CSSProperty*)) in addProperty() 589 m_parsedProperties = static_cast<CSSProperty**>(fastRealloc(m_parsedProperties, in addProperty() 590 m_maxParsedProperties * sizeof(CSSProperty*))); in addProperty() 6350 CSSProperty* property = m_parsedProperties[i]; in createFontFaceRule() 6454 CSSProperty* property = m_parsedProperties[i]; in deleteFontFaceOnlyValues()
|
D | CSSComputedStyleDeclaration.cpp | 830 …propertyID = CSSProperty::resolveDirectionAwareProperty(propertyID, style->direction(), style->wri… in getPropertyCSSValue() 1909 bool CSSComputedStyleDeclaration::cssPropertyMatches(const CSSProperty* property) const in cssPropertyMatches()
|
D | CSSStyleSelector.cpp | 3359 const CSSProperty& current = *it; in applyDeclarations() 3567 … id = CSSProperty::resolveDirectionAwareProperty(id, m_style->direction(), m_style->writingMode()); in applyProperty()
|
/external/webkit/Source/WebCore/inspector/front-end/ |
D | CSSStyleModel.js | 236 var property = new WebInspector.CSSProperty.parsePayload(this, i, payload.cssProperties[i]); 379 …return new WebInspector.CSSProperty(this, this.pastLastSourcePropertyIndex(), "", "", "", "active"… 446 WebInspector.CSSProperty = function(ownerStyle, index, name, value, priority, status, parsedOk, imp… class in WebInspector 460 WebInspector.CSSProperty.parsePayload = function(ownerStyle, index, payload) 468 var result = new WebInspector.CSSProperty( 473 WebInspector.CSSProperty.prototype = {
|
D | StylesSidebarPane.js | 788 …property = new WebInspector.CSSProperty(style, style.allProperties.length, shorthand, style.getSho…
|
/external/webkit/Source/WebCore/rendering/ |
D | RenderTableCell.cpp | 406 …int start = CSSProperty::resolveDirectionAwareProperty(CSSPropertyWebkitBorderStartColor, table->s… in collapsedStartBorder() 407 …int end = CSSProperty::resolveDirectionAwareProperty(CSSPropertyWebkitBorderEndColor, table->style… in collapsedStartBorder() 469 …int start = CSSProperty::resolveDirectionAwareProperty(CSSPropertyWebkitBorderStartColor, table->s… in collapsedEndBorder() 470 …int end = CSSProperty::resolveDirectionAwareProperty(CSSPropertyWebkitBorderEndColor, table->style… in collapsedEndBorder() 534 …int before = CSSProperty::resolveDirectionAwareProperty(CSSPropertyWebkitBorderBeforeColor, table-… in collapsedBeforeBorder() 535 …int after = CSSProperty::resolveDirectionAwareProperty(CSSPropertyWebkitBorderAfterColor, table->s… in collapsedBeforeBorder() 612 …int before = CSSProperty::resolveDirectionAwareProperty(CSSPropertyWebkitBorderBeforeColor, table-… in collapsedAfterBorder() 613 …int after = CSSProperty::resolveDirectionAwareProperty(CSSPropertyWebkitBorderAfterColor, table->s… in collapsedAfterBorder()
|
/external/webkit/Source/WebCore/svg/ |
D | SVGFontFaceElement.cpp | 300 CSSProperty srcProperty(CSSPropertySrc, list); in rebuildFontFace() 301 const CSSProperty* srcPropertyRef = &srcProperty; in rebuildFontFace()
|
/external/webkit/Source/WebCore/editing/ |
D | markup.cpp | 285 const CSSProperty& property = *it; in appendElement() 293 … fromComputedStyle->addParsedProperty(CSSProperty(property.id(), computedPropertyValue)); in appendElement()
|
/external/webkit/Source/WebCore/ |
D | Android.mk | 57 css/CSSProperty.cpp \
|
D | WebCore.pro | 411 css/CSSProperty.cpp \ 1395 css/CSSProperty.h \
|
D | CMakeLists.txt | 489 css/CSSProperty.cpp
|
D | ChangeLog-2005-12-19 | 685 (DOM::CSSProperty::CSSProperty): 686 (DOM::CSSProperty::operator=): 687 (DOM::CSSProperty::~CSSProperty): 688 (DOM::CSSProperty::setValue): 689 (DOM::CSSProperty::value): 1916 (DOM::CSSProperty::cssText): 1919 (DOM::CSSProperty::CSSProperty): 1920 (DOM::CSSProperty::operator=): 1921 (DOM::CSSProperty::~CSSProperty): 1922 (DOM::CSSProperty::setValue): [all …]
|
D | ChangeLog-2010-12-06 | 6151 (WebInspector.CSSProperty.prototype.setText): 6152 (WebInspector.CSSProperty.prototype.setDisabled.callback): 6153 (WebInspector.CSSProperty.prototype.setDisabled): 6694 (WebInspector.CSSProperty.prototype.setText): 6695 (WebInspector.CSSProperty.prototype.setDisabled.callback): 6696 (WebInspector.CSSProperty.prototype.setDisabled): 11661 * css/CSSProperty.cpp: 11662 (WebCore::CSSProperty::cssText): 11772 (WebInspector.CSSProperty.prototype.get propertyText): 11773 (WebInspector.CSSProperty.prototype.setText): [all …]
|
D | GNUmakefile.list.am | 964 Source/WebCore/css/CSSProperty.cpp \ 965 Source/WebCore/css/CSSProperty.h \
|
D | GNUmakefile.am | 1018 Source/WebCore/css/CSSProperty.cpp \ 1019 Source/WebCore/css/CSSProperty.h \
|
D | ChangeLog | 7419 (WebInspector.CSSProperty.prototype.setText.callback): 7420 (WebInspector.CSSProperty.prototype.setText): 15199 (WebInspector.CSSProperty.prototype.setText.callback): 15200 (WebInspector.CSSProperty.prototype.setText): 15201 (WebInspector.CSSProperty.prototype.setValue): 15202 (WebInspector.CSSProperty.prototype.setDisabled.callback): 15203 (WebInspector.CSSProperty.prototype.setDisabled): 18029 (WebInspector.CSSProperty.prototype.setText.callback): 18030 (WebInspector.CSSProperty.prototype.setText): 20019 (WebInspector.CSSProperty.prototype.setText): [all …]
|