/external/chromium_org/third_party/WebKit/Source/core/css/ |
D | StylePropertySet.h | 75 …CSSProperty toCSSProperty() const { return CSSProperty(propertyMetadata(), const_cast<CSSValue*>(p… in toCSSProperty() 153 …static PassRefPtr<ImmutableStylePropertySet> create(const CSSProperty* properties, unsigned count,… 163 ImmutableStylePropertySet(const CSSProperty*, unsigned count, CSSParserMode); 187 … static PassRefPtr<MutableStylePropertySet> create(const CSSProperty* properties, unsigned count); 192 void addParsedProperties(const Vector<CSSProperty, 256>&); 193 void addParsedProperty(const CSSProperty&); 202 void appendPrefixingVariantProperty(const CSSProperty&); 203 void setPrefixingVariantProperty(const CSSProperty&); 204 void setProperty(const CSSProperty&, CSSProperty* slot = 0); 226 Vector<CSSProperty, 4> m_propertyVector; [all …]
|
D | StylePropertySet.cpp | 50 PassRefPtr<ImmutableStylePropertySet> ImmutableStylePropertySet::create(const CSSProperty* properti… in create() 70 MutableStylePropertySet::MutableStylePropertySet(const CSSProperty* properties, unsigned length) in MutableStylePropertySet() 78 ImmutableStylePropertySet::ImmutableStylePropertySet(const CSSProperty* properties, unsigned length… in ImmutableStylePropertySet() 247 setProperty(CSSProperty(propertyID, prpValue, important)); in setProperty() 255 m_propertyVector.append(CSSProperty(shorthand.properties()[i], value, important)); in setProperty() 258 void MutableStylePropertySet::setProperty(const CSSProperty& property, CSSProperty* slot) in setProperty() 261 CSSProperty* toReplace = slot ? slot : findCSSPropertyWithID(property.id()); in setProperty() 271 unsigned getIndexInShorthandVectorForPrefixingVariant(const CSSProperty& property, CSSPropertyID pr… in getIndexInShorthandVectorForPrefixingVariant() 295 CSSProperty property(CSSPropertyVariable, CSSVariableValue::create(name, value), important); in setVariableValue() 304 void MutableStylePropertySet::appendPrefixingVariantProperty(const CSSProperty& property) in appendPrefixingVariantProperty() [all …]
|
D | CSSProperty.h | 55 class CSSProperty { 57 …CSSProperty(CSSPropertyID propertyID, PassRefPtr<CSSValue> value, bool important = false, bool isS… 65 CSSProperty(StylePropertyMetadata metadata, CSSValue* value) in CSSProperty() function 193 template <> struct VectorTraits<WebCore::CSSProperty> : VectorTraitsBase<false, WebCore::CSSPropert…
|
D | CSSProperty.cpp | 35 COMPILE_ASSERT(sizeof(CSSProperty) == sizeof(SameSizeAsCSSProperty), CSSProperty_should_stay_small); 48 void CSSProperty::wrapValueInCommaSeparatedList() in wrapValueInCommaSeparatedList() 179 CSSPropertyID CSSProperty::resolveDirectionAwareProperty(CSSPropertyID propertyID, TextDirection di… in resolveDirectionAwareProperty() 259 bool CSSProperty::isInheritedProperty(CSSPropertyID propertyID) in isInheritedProperty()
|
D | CSSStyleDeclaration.h | 33 class CSSProperty; variable
|
D | PropertySetCSSStyleDeclaration.h | 35 class CSSProperty; variable
|
D | CSSParser-in.cpp | 341 declaration->addParsedProperty(CSSProperty(propertyId, value.release(), important)); in parseColorValue() 348 declaration->addParsedProperty(CSSProperty(propertyId, value.release(), important)); in parseColorValue() 447 declaration->addParsedProperty(CSSProperty(propertyId, value.release(), important)); in parseSimpleLengthValue() 978 declaration->addParsedProperty(CSSProperty(propertyId, value.release(), important)); in parseKeywordValue() 1046 …properties->addParsedProperty(CSSProperty(CSSPropertyWebkitTransform, result.release(), important)… in parseTranslateTransformValue() 1274 …s(bool important, const CSSParser::ParsedPropertyVector& input, Vector<CSSProperty, 256>& output, … in filterProperties() argument 1278 const CSSProperty& property = input[i]; in filterProperties() 1300 Vector<CSSProperty, 256> results(unusedEntries); in createStylePropertySet() 1338 …m_parsedProperties.append(CSSProperty(propId, value, important, false, CSSPropertyInvalid, m_impli… in addProperty() 1346 …m_parsedProperties.append(CSSProperty(propId, value, important, true, CSSPropertyInvalid, m_implic… in addProperty() [all …]
|
D | StylePropertySerializer.cpp | 229 if (value == "initial" && !CSSProperty::isInheritedProperty(propertyID)) in asText()
|
D | CSSParser.h | 390 typedef Vector<CSSProperty, 256> ParsedPropertyVector;
|
D | CSSComputedStyleDeclaration.cpp | 1683 …propertyID = CSSProperty::resolveDirectionAwareProperty(propertyID, style->direction(), style->wri… in getPropertyCSSValue() 3091 Vector<CSSProperty, 256> list; in copyPropertiesInSet() 3096 list.append(CSSProperty(properties[i], value.release(), false)); in copyPropertiesInSet()
|
/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
D | InspectorStyleSheet.cpp | 689 …RefPtr<Array<TypeBuilder::CSS::CSSProperty> > propertiesObject = Array<TypeBuilder::CSS::CSSProper… in styleWithProperties() 691 HashMap<String, RefPtr<TypeBuilder::CSS::CSSProperty> > propertyNameToPreviousActiveProperty; in styleWithProperties() 707 …Builder::CSS::CSSProperty::Status::Enum status = disabled ? TypeBuilder::CSS::CSSProperty::Status:… in styleWithProperties() 709 RefPtr<TypeBuilder::CSS::CSSProperty> property = TypeBuilder::CSS::CSSProperty::create() in styleWithProperties() 743 …HashMap<String, RefPtr<TypeBuilder::CSS::CSSProperty> >::iterator activeIt = propertyNameToPreviou… in styleWithProperties() 746 …bool successPriority = activeIt->value->getString(TypeBuilder::CSS::CSSProperty::Priority, &previo… in styleWithProperties() 747 …bool successStatus = activeIt->value->getString(TypeBuilder::CSS::CSSProperty::Status, &previousSt… in styleWithProperties() 751 else if (status == TypeBuilder::CSS::CSSProperty::Status::Active) { in styleWithProperties() 753 status = TypeBuilder::CSS::CSSProperty::Status::Inactive; in styleWithProperties() 758 …bool success = activeIt->value->getBoolean(TypeBuilder::CSS::CSSProperty::ParsedOk, &previousParse… in styleWithProperties() [all …]
|
/external/chromium_org/third_party/WebKit/Source/core/html/ |
D | HTMLTablePartElement.cpp | 56 …style->setProperty(CSSProperty(CSSPropertyBackgroundImage, CSSImageValue::create(document().comple… in collectStyleForPresentationAttribute()
|
D | HTMLFontElement.cpp | 197 style->setProperty(CSSProperty(CSSPropertyFontFamily, fontFaceValue.release())); in collectStyleForPresentationAttribute()
|
D | HTMLBodyElement.cpp | 73 style->setProperty(CSSProperty(CSSPropertyBackgroundImage, imageValue.release())); in collectStyleForPresentationAttribute()
|
D | HTMLTableElement.cpp | 321 …style->setProperty(CSSProperty(CSSPropertyBackgroundImage, CSSImageValue::create(document().comple… in collectStyleForPresentationAttribute()
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
D | RenderTableCell.cpp | 516 …int startColorProperty = includeColor ? CSSProperty::resolveDirectionAwareProperty(CSSPropertyWebk… in computeCollapsedStartBorder() 517 …int endColorProperty = includeColor ? CSSProperty::resolveDirectionAwareProperty(CSSPropertyWebkit… in computeCollapsedStartBorder() 619 …int startColorProperty = includeColor ? CSSProperty::resolveDirectionAwareProperty(CSSPropertyWebk… in computeCollapsedEndBorder() 620 …int endColorProperty = includeColor ? CSSProperty::resolveDirectionAwareProperty(CSSPropertyWebkit… in computeCollapsedEndBorder() 718 …int beforeColorProperty = includeColor ? CSSProperty::resolveDirectionAwareProperty(CSSPropertyWeb… in computeCollapsedBeforeBorder() 719 …int afterColorProperty = includeColor ? CSSProperty::resolveDirectionAwareProperty(CSSPropertyWebk… in computeCollapsedBeforeBorder() 804 …int beforeColorProperty = includeColor ? CSSProperty::resolveDirectionAwareProperty(CSSPropertyWeb… in computeCollapsedAfterBorder() 805 …int afterColorProperty = includeColor ? CSSProperty::resolveDirectionAwareProperty(CSSPropertyWebk… in computeCollapsedAfterBorder()
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
D | CSSStyleModel.js | 767 var property = WebInspector.CSSProperty.parsePayload(this, i, payload.cssProperties[i]); 915 return new WebInspector.CSSProperty(this, index, "", "", "", "active", true, false, ""); 1118 WebInspector.CSSProperty = function(ownerStyle, index, name, value, priority, status, parsedOk, imp… class in WebInspector 1138 WebInspector.CSSProperty.parsePayload = function(ownerStyle, index, payload) 1145 var result = new WebInspector.CSSProperty( 1150 WebInspector.CSSProperty.prototype = {
|
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
D | CSSSelectorWatch.cpp | 147 …const CSSProperty callbackProperty(CSSPropertyInternalCallback, CSSPrimitiveValue::createIdentifie… in watchCSSSelectors()
|
/external/chromium_org/third_party/WebKit/Source/core/svg/ |
D | SVGFontFaceElement.cpp | 303 m_fontFaceRule->mutableProperties()->addParsedProperty(CSSProperty(CSSPropertySrc, list)); in rebuildFontFace()
|
/external/chromium_org/third_party/WebKit/Source/core/editing/ |
D | EditingStyle.cpp | 114 if (!CSSProperty::isInheritedProperty(properties[index])) { in inheritableEditingProperties() 1174 … fromComputedStyle->addParsedProperty(CSSProperty(property.id(), computedPropertyValue)); in mergeStyleFromRulesForSerialization()
|
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/ |
D | StyleBuilderCustom.cpp | 1183 …if (isInherit && !state.parentStyle()->hasExplicitlyInheritedProperties() && !CSSProperty::isInher… in applyProperty() 1537 …CSSPropertyID newId = CSSProperty::resolveDirectionAwareProperty(id, state.style()->direction(), s… in oldApplyProperty()
|
/external/chromium_org/third_party/WebKit/Source/core/ |
D | webcore_remaining.target.linux-arm.mk | 135 third_party/WebKit/Source/core/css/CSSProperty.cpp \
|
D | webcore_remaining.target.linux-x86.mk | 135 third_party/WebKit/Source/core/css/CSSProperty.cpp \
|
D | webcore_remaining.target.linux-mips.mk | 135 third_party/WebKit/Source/core/css/CSSProperty.cpp \
|
D | webcore_remaining.target.darwin-arm.mk | 135 third_party/WebKit/Source/core/css/CSSProperty.cpp \
|