properties 930 Source/bindings/templates/interface.cpp {# if have indexed properties, MUST have an indexed property getter #} properties 946 Source/bindings/templates/interface.cpp {# if have named properties, MUST have a named property getter #} properties 695 Source/bindings/v8/Dictionary.cpp v8::Local<v8::Array> properties = options->GetOwnPropertyNames(); properties 696 Source/bindings/v8/Dictionary.cpp if (properties.IsEmpty()) properties 698 Source/bindings/v8/Dictionary.cpp for (uint32_t i = 0; i < properties->Length(); ++i) { properties 699 Source/bindings/v8/Dictionary.cpp v8::Local<v8::String> key = properties->Get(i)->ToString(); properties 722 Source/bindings/v8/Dictionary.cpp v8::Local<v8::Array> properties = options->GetOwnPropertyNames(); properties 723 Source/bindings/v8/Dictionary.cpp if (properties.IsEmpty()) properties 725 Source/bindings/v8/Dictionary.cpp for (uint32_t i = 0; i < properties->Length(); ++i) { properties 726 Source/bindings/v8/Dictionary.cpp v8::Local<v8::String> key = properties->Get(i)->ToString(); properties 696 Source/bindings/v8/V8Binding.h v8::Handle<v8::Array> properties = v8::Array::New(info.GetIsolate(), length); properties 700 Source/bindings/v8/V8Binding.h properties->Set(integer, integer); properties 702 Source/bindings/v8/V8Binding.h v8SetReturnValue(info, properties); properties 373 Source/bindings/v8/V8NPObject.cpp v8::Handle<v8::Array> properties = v8::Array::New(info.GetIsolate(), propertiesCount); properties 379 Source/bindings/v8/V8NPObject.cpp properties->Set(v8::Integer::New(info.GetIsolate(), propertyIndex++), v8AtomicString(info.GetIsolate(), identifier->string())); properties 381 Source/bindings/v8/V8NPObject.cpp properties->Set(v8::Integer::New(info.GetIsolate(), propertyIndex++), v8::Integer::New(info.GetIsolate(), identifier->number())); properties 385 Source/bindings/v8/V8NPObject.cpp v8SetReturnValue(info, properties); properties 60 Source/bindings/v8/custom/V8BlobCustom.cpp V8BlobCustomHelpers::ParsedProperties properties(false); properties 68 Source/bindings/v8/custom/V8BlobCustom.cpp if (!properties.parseBlobPropertyBag(info[1], "Blob", exceptionState, info.GetIsolate())) { properties 75 Source/bindings/v8/custom/V8BlobCustom.cpp blobData->setContentType(properties.contentType()); properties 77 Source/bindings/v8/custom/V8BlobCustom.cpp if (!V8BlobCustomHelpers::processBlobParts(blobParts, length, properties.normalizeLineEndingsToNative(), *blobData, info.GetIsolate())) properties 172 Source/bindings/v8/custom/V8CSSStyleDeclarationCustom.cpp v8::Handle<v8::Array> properties = v8::Array::New(info.GetIsolate(), propertyNamesLength); properties 176 Source/bindings/v8/custom/V8CSSStyleDeclarationCustom.cpp properties->Set(v8::Integer::New(info.GetIsolate(), i), v8String(info.GetIsolate(), key)); properties 179 Source/bindings/v8/custom/V8CSSStyleDeclarationCustom.cpp v8SetReturnValue(info, properties); properties 70 Source/bindings/v8/custom/V8FileCustom.cpp V8BlobCustomHelpers::ParsedProperties properties(true); properties 78 Source/bindings/v8/custom/V8FileCustom.cpp if (!properties.parseBlobPropertyBag(info[2], "File", exceptionState, info.GetIsolate())) { properties 83 Source/bindings/v8/custom/V8FileCustom.cpp properties.setDefaultLastModified(); properties 87 Source/bindings/v8/custom/V8FileCustom.cpp blobData->setContentType(properties.contentType()); properties 89 Source/bindings/v8/custom/V8FileCustom.cpp if (!V8BlobCustomHelpers::processBlobParts(blobParts, length, properties.normalizeLineEndingsToNative(), *blobData, info.GetIsolate())) properties 93 Source/bindings/v8/custom/V8FileCustom.cpp RefPtrWillBeRawPtr<File> file = File::create(fileName, properties.lastModified(), BlobDataHandle::create(blobData.release(), fileSize)); properties 23 Source/core/animation/AnimatableValueKeyframe.cpp PropertySet properties; properties 25 Source/core/animation/AnimatableValueKeyframe.cpp properties.add(*iter.keys()); properties 26 Source/core/animation/AnimatableValueKeyframe.cpp return properties; properties 29 Source/core/animation/AnimatableValueKeyframe.h virtual PropertySet properties() const OVERRIDE; properties 144 Source/core/animation/CompositorAnimations.cpp const PropertySet properties = frames[i]->properties(); // FIXME: properties creates a whole new PropertySet! properties 146 Source/core/animation/CompositorAnimations.cpp if (properties.isEmpty()) properties 151 Source/core/animation/CompositorAnimations.cpp for (PropertySet::const_iterator it = properties.begin(); it != properties.end(); ++it) { properties 455 Source/core/animation/CompositorAnimations.cpp PropertySet properties = effect.properties(); properties 456 Source/core/animation/CompositorAnimations.cpp ASSERT(!properties.isEmpty()); properties 457 Source/core/animation/CompositorAnimations.cpp for (PropertySet::iterator it = properties.begin(); it != properties.end(); ++it) { properties 31 Source/core/animation/Keyframe.h virtual PropertySet properties() const = 0; properties 50 Source/core/animation/KeyframeEffectModel.cpp result = m_keyframes[0]->properties(); properties 52 Source/core/animation/KeyframeEffectModel.cpp PropertySet extras = m_keyframes[i]->properties(); properties 144 Source/core/animation/KeyframeEffectModel.cpp PropertySet keyframeProperties = keyframe->properties(); properties 75 Source/core/animation/KeyframeEffectModel.h PropertySet properties() const; properties 23 Source/core/animation/StringKeyframe.cpp PropertySet properties; properties 25 Source/core/animation/StringKeyframe.cpp properties.add(*iter.keys()); properties 26 Source/core/animation/StringKeyframe.cpp return properties; properties 29 Source/core/animation/StringKeyframe.h virtual PropertySet properties() const OVERRIDE; properties 123 Source/core/animation/css/CSSAnimations.cpp const StylePropertySet& properties = styleKeyframe->properties(); properties 124 Source/core/animation/css/CSSAnimations.cpp for (unsigned j = 0; j < properties.propertyCount(); j++) { properties 125 Source/core/animation/css/CSSAnimations.cpp specifiedPropertiesForUseCounter.add(properties.propertyAt(j).id()); properties 126 Source/core/animation/css/CSSAnimations.cpp CSSPropertyID property = propertyForAnimation(properties.propertyAt(j).id()); properties 179 Source/core/animation/css/CSSAnimations.cpp const PropertySet& keyframeProperties = keyframes[i]->properties(); properties 183 Source/core/animation/css/CSSAnimations.cpp const PropertySet& startKeyframeProperties = startKeyframe->properties(); properties 184 Source/core/animation/css/CSSAnimations.cpp const PropertySet& endKeyframeProperties = endKeyframe->properties(); properties 201 Source/core/animation/css/CSSAnimations.cpp ASSERT(startKeyframe->properties().size() == allProperties.size()); properties 202 Source/core/animation/css/CSSAnimations.cpp ASSERT(endKeyframe->properties().size() == allProperties.size()); properties 548 Source/core/animation/css/CSSAnimations.cpp CSSPropertyID id = propertyList.length() ? propertyList.properties()[j] : anim->property(); properties 823 Source/core/animation/css/CSSAnimations.cpp DEFINE_STATIC_LOCAL(Vector<CSSPropertyID>, properties, ()); properties 825 Source/core/animation/css/CSSAnimations.cpp if (properties.isEmpty()) { properties 829 Source/core/animation/css/CSSAnimations.cpp properties.append(id); properties 831 Source/core/animation/css/CSSAnimations.cpp propertyShorthand = StylePropertyShorthand(CSSPropertyInvalid, properties.begin(), properties.size()); properties 380 Source/core/css/CSSComputedStyleDeclaration.cpp DEFINE_STATIC_LOCAL(Vector<CSSPropertyID>, properties, ()); properties 381 Source/core/css/CSSComputedStyleDeclaration.cpp if (properties.isEmpty()) properties 382 Source/core/css/CSSComputedStyleDeclaration.cpp RuntimeCSSEnabled::filterEnabledCSSPropertiesIntoVector(staticComputableProperties, WTF_ARRAY_LENGTH(staticComputableProperties), properties); properties 383 Source/core/css/CSSComputedStyleDeclaration.cpp return properties; properties 1141 Source/core/css/CSSComputedStyleDeclaration.cpp const Vector<CSSPropertyID>& properties = computableProperties(); properties 1143 Source/core/css/CSSComputedStyleDeclaration.cpp for (unsigned i = 0; i < properties.size(); i++) { properties 1146 Source/core/css/CSSComputedStyleDeclaration.cpp result.append(getPropertyName(properties[i])); properties 1148 Source/core/css/CSSComputedStyleDeclaration.cpp result.append(getPropertyValue(properties[i])); properties 2680 Source/core/css/CSSComputedStyleDeclaration.cpp const CSSPropertyID properties[3] = { CSSPropertyBorderRight, CSSPropertyBorderBottom, properties 2682 Source/core/css/CSSComputedStyleDeclaration.cpp for (size_t i = 0; i < WTF_ARRAY_LENGTH(properties); ++i) { properties 2683 Source/core/css/CSSComputedStyleDeclaration.cpp if (!compareCSSValuePtr<CSSValue>(value, getPropertyCSSValue(properties[i], DoNotUpdateLayout))) properties 2922 Source/core/css/CSSComputedStyleDeclaration.cpp RefPtrWillBeRawPtr<CSSValue> value = getPropertyCSSValue(shorthand.properties()[i], DoNotUpdateLayout); properties 2932 Source/core/css/CSSComputedStyleDeclaration.cpp RefPtrWillBeRawPtr<CSSValue> topValue = getPropertyCSSValue(shorthand.properties()[0], DoNotUpdateLayout); properties 2933 Source/core/css/CSSComputedStyleDeclaration.cpp RefPtrWillBeRawPtr<CSSValue> rightValue = getPropertyCSSValue(shorthand.properties()[1], DoNotUpdateLayout); properties 2934 Source/core/css/CSSComputedStyleDeclaration.cpp RefPtrWillBeRawPtr<CSSValue> bottomValue = getPropertyCSSValue(shorthand.properties()[2], DoNotUpdateLayout); properties 2935 Source/core/css/CSSComputedStyleDeclaration.cpp RefPtrWillBeRawPtr<CSSValue> leftValue = getPropertyCSSValue(shorthand.properties()[3], DoNotUpdateLayout); properties 2960 Source/core/css/CSSComputedStyleDeclaration.cpp RefPtrWillBeRawPtr<CSSValue> value = getPropertyCSSValue(shorthand.properties()[i], DoNotUpdateLayout); properties 2966 Source/core/css/CSSComputedStyleDeclaration.cpp PassRefPtrWillBeRawPtr<MutableStylePropertySet> CSSComputedStyleDeclaration::copyPropertiesInSet(const Vector<CSSPropertyID>& properties) const properties 2969 Source/core/css/CSSComputedStyleDeclaration.cpp list.reserveInitialCapacity(properties.size()); properties 2970 Source/core/css/CSSComputedStyleDeclaration.cpp for (unsigned i = 0; i < properties.size(); ++i) { properties 2971 Source/core/css/CSSComputedStyleDeclaration.cpp RefPtrWillBeRawPtr<CSSValue> value = getPropertyCSSValue(properties[i]); properties 2973 Source/core/css/CSSComputedStyleDeclaration.cpp list.append(CSSProperty(properties[i], value.release(), false)); properties 68 Source/core/css/CSSFilterRule.cpp String descs = m_filterRule->properties().asText(); properties 55 Source/core/css/CSSFontFaceRule.cpp String descs = m_fontFaceRule->properties().asText(); properties 102 Source/core/css/CSSKeyframeRule.cpp void StyleKeyframe::setProperties(PassRefPtr<StylePropertySet> properties) properties 104 Source/core/css/CSSKeyframeRule.cpp ASSERT(properties); properties 105 Source/core/css/CSSKeyframeRule.cpp m_properties = properties; properties 58 Source/core/css/CSSKeyframeRule.h const StylePropertySet& properties() const { return *m_properties; } properties 88 Source/core/css/CSSPageRule.cpp String decls = m_pageRule->properties().asText(); properties 64 Source/core/css/CSSProperty.cpp return shorthand.properties()[logicalSide]; properties 71 Source/core/css/CSSProperty.cpp return shorthand.properties()[LeftSide]; properties 73 Source/core/css/CSSProperty.cpp return shorthand.properties()[RightSide]; properties 75 Source/core/css/CSSProperty.cpp return shorthand.properties()[BottomSide]; properties 77 Source/core/css/CSSProperty.cpp return shorthand.properties()[TopSide]; properties 85 Source/core/css/CSSProperty.cpp return shorthand.properties()[TopSide]; properties 87 Source/core/css/CSSProperty.cpp return shorthand.properties()[BottomSide]; properties 89 Source/core/css/CSSProperty.cpp return shorthand.properties()[LeftSide]; properties 91 Source/core/css/CSSProperty.cpp return shorthand.properties()[RightSide]; properties 98 Source/core/css/CSSProperty.cpp return shorthand.properties()[TopSide]; properties 100 Source/core/css/CSSProperty.cpp return shorthand.properties()[BottomSide]; properties 102 Source/core/css/CSSProperty.cpp return shorthand.properties()[RightSide]; properties 104 Source/core/css/CSSProperty.cpp return shorthand.properties()[LeftSide]; properties 112 Source/core/css/CSSProperty.cpp return shorthand.properties()[RightSide]; properties 114 Source/core/css/CSSProperty.cpp return shorthand.properties()[LeftSide]; properties 116 Source/core/css/CSSProperty.cpp return shorthand.properties()[TopSide]; properties 118 Source/core/css/CSSProperty.cpp return shorthand.properties()[BottomSide]; properties 126 Source/core/css/CSSProperty.cpp return shorthand.properties()[RightSide]; properties 128 Source/core/css/CSSProperty.cpp return shorthand.properties()[LeftSide]; properties 130 Source/core/css/CSSProperty.cpp return shorthand.properties()[BottomSide]; properties 132 Source/core/css/CSSProperty.cpp return shorthand.properties()[TopSide]; properties 140 Source/core/css/CSSProperty.cpp return shorthand.properties()[BottomSide]; properties 142 Source/core/css/CSSProperty.cpp return shorthand.properties()[TopSide]; properties 144 Source/core/css/CSSProperty.cpp return shorthand.properties()[LeftSide]; properties 146 Source/core/css/CSSProperty.cpp return shorthand.properties()[RightSide]; properties 153 Source/core/css/CSSProperty.cpp return shorthand.properties()[BottomSide]; properties 155 Source/core/css/CSSProperty.cpp return shorthand.properties()[TopSide]; properties 157 Source/core/css/CSSProperty.cpp return shorthand.properties()[RightSide]; properties 159 Source/core/css/CSSProperty.cpp return shorthand.properties()[LeftSide]; properties 165 Source/core/css/CSSProperty.cpp static CSSPropertyID resolveToPhysicalProperty(WritingMode writingMode, LogicalExtent logicalSide, const CSSPropertyID* properties) properties 168 Source/core/css/CSSProperty.cpp return properties[logicalSide]; properties 169 Source/core/css/CSSProperty.cpp return logicalSide == LogicalWidth ? properties[1] : properties[0]; properties 174 Source/core/css/CSSProperty.cpp static const CSSPropertyID properties[4] = { CSSPropertyBorderTop, CSSPropertyBorderRight, CSSPropertyBorderBottom, CSSPropertyBorderLeft }; properties 175 Source/core/css/CSSProperty.cpp DEFINE_STATIC_LOCAL(StylePropertyShorthand, borderDirections, (CSSPropertyBorder, properties, WTF_ARRAY_LENGTH(properties))); properties 231 Source/core/css/CSSProperty.cpp const CSSPropertyID properties[2] = { CSSPropertyWidth, CSSPropertyHeight }; properties 232 Source/core/css/CSSProperty.cpp return resolveToPhysicalProperty(writingMode, LogicalWidth, properties); properties 235 Source/core/css/CSSProperty.cpp const CSSPropertyID properties[2] = { CSSPropertyWidth, CSSPropertyHeight }; properties 236 Source/core/css/CSSProperty.cpp return resolveToPhysicalProperty(writingMode, LogicalHeight, properties); properties 239 Source/core/css/CSSProperty.cpp const CSSPropertyID properties[2] = { CSSPropertyMinWidth, CSSPropertyMinHeight }; properties 240 Source/core/css/CSSProperty.cpp return resolveToPhysicalProperty(writingMode, LogicalWidth, properties); properties 243 Source/core/css/CSSProperty.cpp const CSSPropertyID properties[2] = { CSSPropertyMinWidth, CSSPropertyMinHeight }; properties 244 Source/core/css/CSSProperty.cpp return resolveToPhysicalProperty(writingMode, LogicalHeight, properties); properties 247 Source/core/css/CSSProperty.cpp const CSSPropertyID properties[2] = { CSSPropertyMaxWidth, CSSPropertyMaxHeight }; properties 248 Source/core/css/CSSProperty.cpp return resolveToPhysicalProperty(writingMode, LogicalWidth, properties); properties 251 Source/core/css/CSSProperty.cpp const CSSPropertyID properties[2] = { CSSPropertyMaxWidth, CSSPropertyMaxHeight }; properties 252 Source/core/css/CSSProperty.cpp return resolveToPhysicalProperty(writingMode, LogicalHeight, properties); properties 116 Source/core/css/CSSStyleRule.cpp String decls = m_styleRule->properties().asText(); properties 66 Source/core/css/CSSViewportRule.cpp String decls = m_viewportRule->properties().asText(); properties 254 Source/core/css/ElementRuleCollector.cpp m_result.addMatchedProperties(&ruleData->rule()->properties(), ruleData->rule(), ruleData->linkMatchType(), ruleData->propertyWhitelistType(m_matchingUARules)); properties 285 Source/core/css/ElementRuleCollector.cpp const StylePropertySet& properties = rule->properties(); properties 286 Source/core/css/ElementRuleCollector.cpp if (properties.isEmpty() && !matchRequest.includeEmptyRules) properties 181 Source/core/css/FontFace.cpp const StylePropertySet& properties = fontFaceRule->properties(); properties 184 Source/core/css/FontFace.cpp RefPtrWillBeRawPtr<CSSValue> family = properties.getPropertyCSSValue(CSSPropertyFontFamily); properties 187 Source/core/css/FontFace.cpp RefPtrWillBeRawPtr<CSSValue> src = properties.getPropertyCSSValue(CSSPropertySrc); properties 194 Source/core/css/FontFace.cpp && fontFace->setPropertyFromStyle(properties, CSSPropertyFontStyle) properties 195 Source/core/css/FontFace.cpp && fontFace->setPropertyFromStyle(properties, CSSPropertyFontWeight) properties 196 Source/core/css/FontFace.cpp && fontFace->setPropertyFromStyle(properties, CSSPropertyFontStretch) properties 197 Source/core/css/FontFace.cpp && fontFace->setPropertyFromStyle(properties, CSSPropertyUnicodeRange) properties 198 Source/core/css/FontFace.cpp && fontFace->setPropertyFromStyle(properties, CSSPropertyFontVariant) properties 199 Source/core/css/FontFace.cpp && fontFace->setPropertyFromStyle(properties, CSSPropertyWebkitFontFeatureSettings) properties 284 Source/core/css/FontFace.cpp bool FontFace::setPropertyFromStyle(const StylePropertySet& properties, CSSPropertyID propertyID) properties 286 Source/core/css/FontFace.cpp return setPropertyValue(properties.getPropertyCSSValue(propertyID), propertyID); properties 514 Source/core/css/FontFaceSet.cpp CSSPropertyValue properties[] = { properties 523 Source/core/css/FontFaceSet.cpp styleResolver.applyPropertiesToStyle(properties, WTF_ARRAY_LENGTH(properties), style.get()); properties 84 Source/core/css/PageRuleCollector.cpp m_result.addMatchedProperties(&matchedPageRules[i]->properties()); properties 116 Source/core/css/PageRuleCollector.cpp const StylePropertySet& properties = rule->properties(); properties 117 Source/core/css/PageRuleCollector.cpp if (properties.isEmpty()) properties 40 Source/core/css/RuntimeCSSEnabled.cpp static void setCSSPropertiesEnabled(CSSPropertyID* properties, size_t length, bool featureFlag) properties 43 Source/core/css/RuntimeCSSEnabled.cpp RuntimeCSSEnabled::setCSSPropertyEnabled(properties[i], featureFlag); properties 165 Source/core/css/RuntimeCSSEnabled.cpp void RuntimeCSSEnabled::filterEnabledCSSPropertiesIntoVector(const CSSPropertyID* properties, size_t propertyCount, Vector<CSSPropertyID>& outVector) properties 168 Source/core/css/RuntimeCSSEnabled.cpp CSSPropertyID property = properties[i]; properties 43 Source/core/css/StylePropertySerializer.cpp StylePropertySerializer::StylePropertySerializer(const StylePropertySet& properties) properties 44 Source/core/css/StylePropertySerializer.cpp : m_propertySet(properties) properties 338 Source/core/css/StylePropertySerializer.cpp RefPtrWillBeRawPtr<CSSValue> horizontalValue = m_propertySet.getPropertyCSSValue(shorthand.properties()[0]); properties 339 Source/core/css/StylePropertySerializer.cpp RefPtrWillBeRawPtr<CSSValue> verticalValue = m_propertySet.getPropertyCSSValue(shorthand.properties()[1]); properties 421 Source/core/css/StylePropertySerializer.cpp int topValueIndex = m_propertySet.findPropertyIndex(shorthand.properties()[0]); properties 422 Source/core/css/StylePropertySerializer.cpp int rightValueIndex = m_propertySet.findPropertyIndex(shorthand.properties()[1]); properties 423 Source/core/css/StylePropertySerializer.cpp int bottomValueIndex = m_propertySet.findPropertyIndex(shorthand.properties()[2]); properties 424 Source/core/css/StylePropertySerializer.cpp int leftValueIndex = m_propertySet.findPropertyIndex(shorthand.properties()[3]); properties 482 Source/core/css/StylePropertySerializer.cpp values[i] = m_propertySet.getPropertyCSSValue(shorthand.properties()[i]); properties 512 Source/core/css/StylePropertySerializer.cpp if (shorthand.properties()[j] == CSSPropertyBackgroundColor) { properties 525 Source/core/css/StylePropertySerializer.cpp if ((shorthand.properties()[j] == CSSPropertyBackgroundRepeatX && m_propertySet.isPropertyImplicit(shorthand.properties()[j])) properties 526 Source/core/css/StylePropertySerializer.cpp || (shorthand.properties()[j] == CSSPropertyWebkitMaskRepeatX && m_propertySet.isPropertyImplicit(shorthand.properties()[j]))) { properties 529 Source/core/css/StylePropertySerializer.cpp if ((j < size - 1 && shorthand.properties()[j + 1] == CSSPropertyBackgroundRepeatY && value) properties 530 Source/core/css/StylePropertySerializer.cpp || (j < size - 1 && shorthand.properties()[j + 1] == CSSPropertyWebkitMaskRepeatY && value)) { properties 570 Source/core/css/StylePropertySerializer.cpp && (shorthand.properties()[j] == CSSPropertyBackgroundSize || shorthand.properties()[j] == CSSPropertyWebkitMaskSize)) properties 573 Source/core/css/StylePropertySerializer.cpp && (shorthand.properties()[j] == CSSPropertyBackgroundSize || shorthand.properties()[j] == CSSPropertyWebkitMaskSize)) properties 589 Source/core/css/StylePropertySerializer.cpp if (shorthand.properties()[j] == CSSPropertyBackgroundPositionY properties 590 Source/core/css/StylePropertySerializer.cpp || shorthand.properties()[j] == CSSPropertyWebkitMaskPositionY) { properties 627 Source/core/css/StylePropertySerializer.cpp if (!m_propertySet.isPropertyImplicit(shorthand.properties()[i])) { properties 628 Source/core/css/StylePropertySerializer.cpp RefPtrWillBeRawPtr<CSSValue> value = m_propertySet.getPropertyCSSValue(shorthand.properties()[i]); properties 657 Source/core/css/StylePropertySerializer.cpp RefPtrWillBeRawPtr<CSSValue> value = m_propertySet.getPropertyCSSValue(shorthand.properties()[i]); properties 669 Source/core/css/StylePropertySerializer.cpp bool currentPropertyIsImportant = m_propertySet.propertyIsImportant(shorthand.properties()[i]); properties 679 Source/core/css/StylePropertySerializer.cpp const StylePropertyShorthand properties[3] = { borderWidthShorthand(), borderStyleShorthand(), borderColorShorthand() }; properties 682 Source/core/css/StylePropertySerializer.cpp for (size_t i = 0; i < WTF_ARRAY_LENGTH(properties); ++i) { properties 683 Source/core/css/StylePropertySerializer.cpp String value = getCommonValue(properties[i]); properties 821 Source/core/css/StylePropertySerializer.cpp bool isImportant = m_propertySet.propertyIsImportant(shorthand.properties()[0]); properties 823 Source/core/css/StylePropertySerializer.cpp RefPtrWillBeRawPtr<CSSValue> value = m_propertySet.getPropertyCSSValue(shorthand.properties()[i]); properties 826 Source/core/css/StylePropertySerializer.cpp if (isImportant != m_propertySet.propertyIsImportant(shorthand.properties()[i])) properties 835 Source/core/css/StylePropertySerializer.cpp bool isImportant = m_propertySet.propertyIsImportant(shorthand.properties()[0]); properties 839 Source/core/css/StylePropertySerializer.cpp RefPtrWillBeRawPtr<CSSValue> value = m_propertySet.getPropertyCSSValue(shorthand.properties()[i]); properties 846 Source/core/css/StylePropertySerializer.cpp if (isImportant != m_propertySet.propertyIsImportant(shorthand.properties()[i])) properties 50 Source/core/css/StylePropertySet.cpp PassRefPtr<ImmutableStylePropertySet> ImmutableStylePropertySet::create(const CSSProperty* properties, unsigned count, CSSParserMode cssParserMode) properties 58 Source/core/css/StylePropertySet.cpp return adoptRefWillBeRefCountedGarbageCollected(new (slot) ImmutableStylePropertySet(properties, count, cssParserMode)); properties 74 Source/core/css/StylePropertySet.cpp MutableStylePropertySet::MutableStylePropertySet(const CSSProperty* properties, unsigned length) properties 79 Source/core/css/StylePropertySet.cpp m_propertyVector.uncheckedAppend(properties[i]); properties 82 Source/core/css/StylePropertySet.cpp ImmutableStylePropertySet::ImmutableStylePropertySet(const CSSProperty* properties, unsigned length, CSSParserMode cssParserMode) properties 88 Source/core/css/StylePropertySet.cpp metadataArray[i] = properties[i].metadata(); properties 89 Source/core/css/StylePropertySet.cpp valueArray[i] = properties[i].value(); properties 180 Source/core/css/StylePropertySet.cpp bool ret = removePropertiesInSet(shorthand.properties(), shorthand.length()); properties 187 Source/core/css/StylePropertySet.cpp return removePropertiesInSet(shorthandPrefixingVariant.properties(), shorthandPrefixingVariant.length()); properties 237 Source/core/css/StylePropertySet.cpp if (!propertyIsImportant(shorthand.properties()[i])) properties 279 Source/core/css/StylePropertySet.cpp removePropertiesInSet(shorthand.properties(), shorthand.length()); properties 283 Source/core/css/StylePropertySet.cpp m_propertyVector.append(CSSProperty(shorthand.properties()[i], value, important)); properties 354 Source/core/css/StylePropertySet.cpp void MutableStylePropertySet::addParsedProperties(const WillBeHeapVector<CSSProperty, 256>& properties) properties 356 Source/core/css/StylePropertySet.cpp m_propertyVector.reserveCapacity(m_propertyVector.size() + properties.size()); properties 357 Source/core/css/StylePropertySet.cpp for (unsigned i = 0; i < properties.size(); ++i) properties 358 Source/core/css/StylePropertySet.cpp addParsedProperty(properties[i]); properties 423 Source/core/css/StylePropertySet.cpp DEFINE_STATIC_LOCAL(Vector<CSSPropertyID>, properties, ()); properties 424 Source/core/css/StylePropertySet.cpp if (properties.isEmpty()) properties 425 Source/core/css/StylePropertySet.cpp RuntimeCSSEnabled::filterEnabledCSSPropertiesIntoVector(staticBlockProperties, WTF_ARRAY_LENGTH(staticBlockProperties), properties); properties 426 Source/core/css/StylePropertySet.cpp return properties; properties 522 Source/core/css/StylePropertySet.cpp PassRefPtrWillBeRawPtr<MutableStylePropertySet> StylePropertySet::copyPropertiesInSet(const Vector<CSSPropertyID>& properties) const properties 525 Source/core/css/StylePropertySet.cpp list.reserveInitialCapacity(properties.size()); properties 526 Source/core/css/StylePropertySet.cpp for (unsigned i = 0; i < properties.size(); ++i) { properties 527 Source/core/css/StylePropertySet.cpp RefPtrWillBeRawPtr<CSSValue> value = getPropertyCSSValue(properties[i]); properties 529 Source/core/css/StylePropertySet.cpp list.append(CSSProperty(properties[i], value.release(), false)); properties 593 Source/core/css/StylePropertySet.cpp PassRefPtrWillBeRawPtr<MutableStylePropertySet> MutableStylePropertySet::create(const CSSProperty* properties, unsigned count) properties 595 Source/core/css/StylePropertySet.cpp return adoptRefWillBeRefCountedGarbageCollected(new MutableStylePropertySet(properties, count)); properties 157 Source/core/css/StylePropertySet.h static PassRefPtr<ImmutableStylePropertySet> create(const CSSProperty* properties, unsigned count, CSSParserMode); properties 199 Source/core/css/StylePropertySet.h static PassRefPtrWillBeRawPtr<MutableStylePropertySet> create(const CSSProperty* properties, unsigned count); properties 237 Source/core/css/StylePropertySet.h MutableStylePropertySet(const CSSProperty* properties, unsigned count); properties 276 Source/core/css/StyleRule.cpp void StyleRule::setProperties(PassRefPtr<StylePropertySet> properties) properties 278 Source/core/css/StyleRule.cpp m_properties = properties; properties 304 Source/core/css/StyleRule.cpp void StyleRulePage::setProperties(PassRefPtr<StylePropertySet> properties) properties 306 Source/core/css/StyleRule.cpp m_properties = properties; properties 331 Source/core/css/StyleRule.cpp void StyleRuleFontFace::setProperties(PassRefPtr<StylePropertySet> properties) properties 333 Source/core/css/StyleRule.cpp m_properties = properties; properties 421 Source/core/css/StyleRule.cpp void StyleRuleViewport::setProperties(PassRefPtr<StylePropertySet> properties) properties 423 Source/core/css/StyleRule.cpp m_properties = properties; properties 450 Source/core/css/StyleRule.cpp void StyleRuleFilter::setProperties(PassRefPtr<StylePropertySet> properties) properties 452 Source/core/css/StyleRule.cpp m_properties = properties; properties 109 Source/core/css/StyleRule.h const StylePropertySet& properties() const { return *m_properties; } properties 136 Source/core/css/StyleRule.h const StylePropertySet& properties() const { return *m_properties; } properties 159 Source/core/css/StyleRule.h const StylePropertySet& properties() const { return *m_properties; } properties 242 Source/core/css/StyleRule.h const StylePropertySet& properties() const { return *m_properties; } properties 266 Source/core/css/StyleRule.h const StylePropertySet& properties() const { return *m_properties; } properties 488 Source/core/css/StyleSheetContents.cpp if (toStyleRule(rule)->properties().hasFailedOrCanceledSubresources()) properties 492 Source/core/css/StyleSheetContents.cpp if (toStyleRuleFontFace(rule)->properties().hasFailedOrCanceledSubresources()) properties 970 Source/core/css/parser/BisonCSSParser-in.cpp static bool parseTranslateTransform(MutableStylePropertySet* properties, CSSPropertyID propertyID, const String& string, bool important) properties 990 Source/core/css/parser/BisonCSSParser-in.cpp properties->addParsedProperty(CSSProperty(propertyID, transformList.release(), important)); properties 436 Source/core/css/parser/CSSPropertyParser.cpp const CSSPropertyID* longhands = shorthand.properties(); properties 1283 Source/core/css/parser/CSSPropertyParser.cpp if (!parseValue(webkitMarginCollapseShorthand().properties()[0], important)) properties 1286 Source/core/css/parser/CSSPropertyParser.cpp addProperty(webkitMarginCollapseShorthand().properties()[1], value, important); properties 1291 Source/core/css/parser/CSSPropertyParser.cpp if (!parseValue(webkitMarginCollapseShorthand().properties()[0], important) || !parseValue(webkitMarginCollapseShorthand().properties()[1], important)) properties 1379 Source/core/css/parser/CSSPropertyParser.cpp const CSSPropertyID properties[] = { CSSPropertyBackgroundImage, CSSPropertyBackgroundRepeat, properties 1382 Source/core/css/parser/CSSPropertyParser.cpp return parseFillShorthand(propId, properties, WTF_ARRAY_LENGTH(properties), important); properties 1385 Source/core/css/parser/CSSPropertyParser.cpp const CSSPropertyID properties[] = { CSSPropertyWebkitMaskImage, CSSPropertyWebkitMaskRepeat, properties 1387 Source/core/css/parser/CSSPropertyParser.cpp return parseFillShorthand(propId, properties, WTF_ARRAY_LENGTH(properties), important); properties 1425 Source/core/css/parser/CSSPropertyParser.cpp return parse4Values(propId, borderColorShorthand().properties(), important); properties 1428 Source/core/css/parser/CSSPropertyParser.cpp return parse4Values(propId, borderWidthShorthand().properties(), important); properties 1431 Source/core/css/parser/CSSPropertyParser.cpp return parse4Values(propId, borderStyleShorthand().properties(), important); properties 1434 Source/core/css/parser/CSSPropertyParser.cpp return parse4Values(propId, marginShorthand().properties(), important); properties 1437 Source/core/css/parser/CSSPropertyParser.cpp return parse4Values(propId, paddingShorthand().properties(), important); properties 1689 Source/core/css/parser/CSSPropertyParser.cpp bool CSSPropertyParser::parseFillShorthand(CSSPropertyID propId, const CSSPropertyID* properties, int numProperties, bool important) properties 1716 Source/core/css/parser/CSSPropertyParser.cpp if (properties[i] == CSSPropertyBackgroundColor && parsedProperty[i]) properties 1721 Source/core/css/parser/CSSPropertyParser.cpp if (!parsedProperty[i] && properties[i] != CSSPropertyBackgroundColor) { properties 1723 Source/core/css/parser/CSSPropertyParser.cpp if (properties[i] == CSSPropertyBackgroundPosition || properties[i] == CSSPropertyWebkitMaskPosition) properties 1725 Source/core/css/parser/CSSPropertyParser.cpp if (properties[i] == CSSPropertyBackgroundRepeat || properties[i] == CSSPropertyWebkitMaskRepeat) properties 1727 Source/core/css/parser/CSSPropertyParser.cpp if ((properties[i] == CSSPropertyBackgroundOrigin || properties[i] == CSSPropertyWebkitMaskOrigin) && !parsedProperty[i]) { properties 1748 Source/core/css/parser/CSSPropertyParser.cpp if (sizeCSSPropertyExpected && (properties[i] != CSSPropertyBackgroundSize && properties[i] != CSSPropertyWebkitMaskSize)) properties 1750 Source/core/css/parser/CSSPropertyParser.cpp if (!sizeCSSPropertyExpected && (properties[i] == CSSPropertyBackgroundSize || properties[i] == CSSPropertyWebkitMaskSize)) properties 1760 Source/core/css/parser/CSSPropertyParser.cpp if (parseFillProperty(properties[i], propId1, propId2, val1, val2)) { properties 1763 Source/core/css/parser/CSSPropertyParser.cpp if (properties[i] == CSSPropertyBackgroundPosition || properties[i] == CSSPropertyWebkitMaskPosition) properties 1765 Source/core/css/parser/CSSPropertyParser.cpp if (properties[i] == CSSPropertyBackgroundRepeat || properties[i] == CSSPropertyWebkitMaskRepeat) properties 1767 Source/core/css/parser/CSSPropertyParser.cpp if (properties[i] == CSSPropertyBackgroundOrigin || properties[i] == CSSPropertyWebkitMaskOrigin) { properties 1774 Source/core/css/parser/CSSPropertyParser.cpp if (properties[i] == CSSPropertyBackgroundClip || properties[i] == CSSPropertyWebkitMaskClip) { properties 1779 Source/core/css/parser/CSSPropertyParser.cpp if (properties[i] == CSSPropertyBackgroundPosition || properties[i] == CSSPropertyWebkitMaskPosition) properties 1798 Source/core/css/parser/CSSPropertyParser.cpp if (properties[i] == CSSPropertyBackgroundPosition || properties[i] == CSSPropertyWebkitMaskPosition) properties 1800 Source/core/css/parser/CSSPropertyParser.cpp if (properties[i] == CSSPropertyBackgroundRepeat || properties[i] == CSSPropertyWebkitMaskRepeat) properties 1802 Source/core/css/parser/CSSPropertyParser.cpp if (properties[i] == CSSPropertyBackgroundOrigin || properties[i] == CSSPropertyWebkitMaskOrigin) { properties 1807 Source/core/css/parser/CSSPropertyParser.cpp if (properties[i] == CSSPropertyBackgroundPosition) { properties 1811 Source/core/css/parser/CSSPropertyParser.cpp } else if (properties[i] == CSSPropertyWebkitMaskPosition) { properties 1815 Source/core/css/parser/CSSPropertyParser.cpp } else if (properties[i] == CSSPropertyBackgroundRepeat) { properties 1819 Source/core/css/parser/CSSPropertyParser.cpp } else if (properties[i] == CSSPropertyWebkitMaskRepeat) { properties 1823 Source/core/css/parser/CSSPropertyParser.cpp } else if ((properties[i] == CSSPropertyBackgroundClip || properties[i] == CSSPropertyWebkitMaskClip) && !foundClip) properties 1826 Source/core/css/parser/CSSPropertyParser.cpp else if (properties[i] == CSSPropertyBackgroundSize && !parsedProperty[i] && m_context.useLegacyBackgroundSizeShorthandBehavior()) properties 1829 Source/core/css/parser/CSSPropertyParser.cpp addProperty(properties[i], values[i].release(), important); properties 1832 Source/core/css/parser/CSSPropertyParser.cpp if (properties[i] == CSSPropertyBackgroundOrigin && !foundClip) properties 1834 Source/core/css/parser/CSSPropertyParser.cpp else if (properties[i] == CSSPropertyWebkitMaskOrigin && !foundClip) properties 1900 Source/core/css/parser/CSSPropertyParser.cpp if (parseAnimationProperty(animationProperties.properties()[i], val, context)) { properties 1920 Source/core/css/parser/CSSPropertyParser.cpp addPropertyWithPrefixingVariant(animationProperties.properties()[i], values[i].release(), important); properties 1922 Source/core/css/parser/CSSPropertyParser.cpp addProperty(animationProperties.properties()[i], values[i].release(), important); properties 1964 Source/core/css/parser/CSSPropertyParser.cpp if (parseAnimationProperty(shorthand.properties()[i], val, context)) { properties 1989 Source/core/css/parser/CSSPropertyParser.cpp addPropertyWithPrefixingVariant(shorthand.properties()[i], values[i].release(), important); properties 2089 Source/core/css/parser/CSSPropertyParser.cpp if (!propertyFound[propIndex] && parseValue(shorthand.properties()[propIndex], important)) { properties 2114 Source/core/css/parser/CSSPropertyParser.cpp addProperty(initProperties.properties()[propIndex], cssValuePool().createImplicitInitialValue(), important); properties 2116 Source/core/css/parser/CSSPropertyParser.cpp addProperty(shorthand.properties()[i], cssValuePool().createImplicitInitialValue(), important); properties 2122 Source/core/css/parser/CSSPropertyParser.cpp bool CSSPropertyParser::parse4Values(CSSPropertyID propId, const CSSPropertyID *properties, bool important) properties 2139 Source/core/css/parser/CSSPropertyParser.cpp if (!parseValue(properties[0], important)) properties 2143 Source/core/css/parser/CSSPropertyParser.cpp addProperty(properties[1], value, important); properties 2144 Source/core/css/parser/CSSPropertyParser.cpp addProperty(properties[2], value, important); properties 2145 Source/core/css/parser/CSSPropertyParser.cpp addProperty(properties[3], value, important); properties 2149 Source/core/css/parser/CSSPropertyParser.cpp if (!parseValue(properties[0], important) || !parseValue(properties[1], important)) properties 2153 Source/core/css/parser/CSSPropertyParser.cpp addProperty(properties[2], value, important); properties 2155 Source/core/css/parser/CSSPropertyParser.cpp addProperty(properties[3], value, important); properties 2159 Source/core/css/parser/CSSPropertyParser.cpp if (!parseValue(properties[0], important) || !parseValue(properties[1], important) || !parseValue(properties[2], important)) properties 2163 Source/core/css/parser/CSSPropertyParser.cpp addProperty(properties[3], value, important); properties 2167 Source/core/css/parser/CSSPropertyParser.cpp if (!parseValue(properties[0], important) || !parseValue(properties[1], important) || properties 2168 Source/core/css/parser/CSSPropertyParser.cpp !parseValue(properties[2], important) || !parseValue(properties[3], important)) properties 3480 Source/core/css/parser/CSSPropertyParser.cpp addProperty(shorthand.properties()[0], startValue, important); properties 3481 Source/core/css/parser/CSSPropertyParser.cpp addProperty(shorthand.properties()[1], endValue, important); properties 101 Source/core/css/parser/CSSPropertyParser.h bool parse4Values(CSSPropertyID, const CSSPropertyID* properties, bool important); properties 126 Source/core/css/parser/CSSPropertyParser.h bool parseFillShorthand(CSSPropertyID, const CSSPropertyID* properties, int numProperties, bool important); properties 46 Source/core/css/resolver/MatchResult.cpp void MatchResult::addMatchedProperties(const StylePropertySet* properties, StyleRule* rule, unsigned linkMatchType, PropertyWhitelistType propertyWhitelistType) properties 50 Source/core/css/resolver/MatchResult.cpp newProperties.properties = const_cast<StylePropertySet*>(properties); properties 94 Source/core/css/resolver/MatchResult.h RefPtr<StylePropertySet> properties; properties 114 Source/core/css/resolver/MatchResult.h void addMatchedProperties(const StylePropertySet* properties, StyleRule* = 0, unsigned linkMatchType = SelectorChecker::MatchAll, PropertyWhitelistType = PropertyWhitelistNone); properties 129 Source/core/css/resolver/MatchResult.h return a.properties == b.properties && a.linkMatchType == b.linkMatchType; properties 136 Source/core/css/resolver/MatchedPropertiesCache.cpp if (matchedProperties[i].properties->hasOneRef()) { properties 739 Source/core/css/resolver/StyleResolver.cpp result.addMatchedProperties(&keyframe->properties()); properties 1179 Source/core/css/resolver/StyleResolver.cpp void StyleResolver::applyProperties(StyleResolverState& state, const StylePropertySet* properties, StyleRule* rule, bool isImportant, bool inheritedOnly, PropertyWhitelistType propertyWhitelistType) properties 1183 Source/core/css/resolver/StyleResolver.cpp unsigned propertyCount = properties->propertyCount(); properties 1185 Source/core/css/resolver/StyleResolver.cpp StylePropertySet::PropertyReference current = properties->propertyAt(i); properties 1222 Source/core/css/resolver/StyleResolver.cpp applyProperties<pass>(state, matchedProperties.properties.get(), matchResult.matchedRules[i], isImportant, inheritedOnly, static_cast<PropertyWhitelistType>(matchedProperties.whitelistType)); properties 1230 Source/core/css/resolver/StyleResolver.cpp applyProperties<pass>(state, matchedProperties.properties.get(), matchResult.matchedRules[i], isImportant, inheritedOnly, static_cast<PropertyWhitelistType>(matchedProperties.whitelistType)); properties 1234 Source/core/css/resolver/StyleResolver.cpp static unsigned computeMatchedPropertiesHash(const MatchedProperties* properties, unsigned size) properties 1236 Source/core/css/resolver/StyleResolver.cpp return StringHasher::hashMemory(properties, sizeof(MatchedProperties) * size); properties 1377 Source/core/css/resolver/StyleResolver.cpp void StyleResolver::applyPropertiesToStyle(const CSSPropertyValue* properties, size_t count, RenderStyle* style) properties 1385 Source/core/css/resolver/StyleResolver.cpp if (properties[i].value) { properties 1389 Source/core/css/resolver/StyleResolver.cpp switch (properties[i].property) { properties 1397 Source/core/css/resolver/StyleResolver.cpp StyleBuilder::applyProperty(properties[i].property, state, properties[i].value); properties 185 Source/core/css/resolver/StyleResolver.h void applyPropertiesToStyle(const CSSPropertyValue* properties, size_t count, RenderStyle*); properties 278 Source/core/css/resolver/StyleResolver.h void applyProperties(StyleResolverState&, const StylePropertySet* properties, StyleRule*, bool isImportant, bool inheritedOnly, PropertyWhitelistType = PropertyWhitelistNone); properties 962 Source/core/editing/ApplyStyleCommand.cpp Vector<CSSPropertyID> properties; properties 963 Source/core/editing/ApplyStyleCommand.cpp if (!style->conflictsWithInlineStyleOfElement(element, extractedStyle, properties)) properties 967 Source/core/editing/ApplyStyleCommand.cpp for (size_t i = 0; i < properties.size(); i++) properties 968 Source/core/editing/ApplyStyleCommand.cpp removeCSSProperty(element, properties[i]); properties 99 Source/core/editing/EditingStyle.cpp DEFINE_STATIC_LOCAL(Vector<CSSPropertyID>, properties, ()); properties 100 Source/core/editing/EditingStyle.cpp if (properties.isEmpty()) { properties 101 Source/core/editing/EditingStyle.cpp RuntimeCSSEnabled::filterEnabledCSSPropertiesIntoVector(staticEditingProperties, WTF_ARRAY_LENGTH(staticEditingProperties), properties); properties 103 Source/core/editing/EditingStyle.cpp properties.remove(properties.find(CSSPropertyTextDecoration)); properties 105 Source/core/editing/EditingStyle.cpp return properties; properties 110 Source/core/editing/EditingStyle.cpp DEFINE_STATIC_LOCAL(Vector<CSSPropertyID>, properties, ()); properties 111 Source/core/editing/EditingStyle.cpp if (properties.isEmpty()) { properties 112 Source/core/editing/EditingStyle.cpp RuntimeCSSEnabled::filterEnabledCSSPropertiesIntoVector(staticEditingProperties, WTF_ARRAY_LENGTH(staticEditingProperties), properties); properties 113 Source/core/editing/EditingStyle.cpp for (size_t index = 0; index < properties.size();) { properties 114 Source/core/editing/EditingStyle.cpp if (!CSSProperty::isInheritedProperty(properties[index])) { properties 115 Source/core/editing/EditingStyle.cpp properties.remove(index); properties 121 Source/core/editing/EditingStyle.cpp return properties; properties 1124 Source/core/editing/EditingStyle.cpp style->mergeAndOverrideOnConflict(&matchedRules->m_list[i]->properties()); properties 555 Source/core/frame/DOMWindow.cpp Vector<DOMWindowProperty*> properties; properties 556 Source/core/frame/DOMWindow.cpp copyToVector(m_properties, properties); properties 557 Source/core/frame/DOMWindow.cpp for (size_t i = 0; i < properties.size(); ++i) properties 558 Source/core/frame/DOMWindow.cpp properties[i]->willDestroyGlobalObjectInFrame(); properties 565 Source/core/frame/DOMWindow.cpp Vector<DOMWindowProperty*> properties; properties 566 Source/core/frame/DOMWindow.cpp copyToVector(m_properties, properties); properties 567 Source/core/frame/DOMWindow.cpp for (size_t i = 0; i < properties.size(); ++i) properties 568 Source/core/frame/DOMWindow.cpp properties[i]->willDetachGlobalObjectFromFrame(); properties 2054 Source/core/html/canvas/CanvasRenderingContext2D.cpp CSSPropertyValue properties[] = { properties 2064 Source/core/html/canvas/CanvasRenderingContext2D.cpp styleResolver.applyPropertiesToStyle(properties, WTF_ARRAY_LENGTH(properties), newStyle.get()); properties 180 Source/core/inspector/InjectedScript.cpp void InjectedScript::getProperties(ErrorString* errorString, const String& objectId, bool ownProperties, bool accessorPropertiesOnly, RefPtr<Array<PropertyDescriptor> >* properties) properties 193 Source/core/inspector/InjectedScript.cpp *properties = Array<PropertyDescriptor>::runtimeCast(result); properties 196 Source/core/inspector/InjectedScript.cpp void InjectedScript::getInternalProperties(ErrorString* errorString, const String& objectId, RefPtr<Array<InternalPropertyDescriptor> >* properties) properties 209 Source/core/inspector/InjectedScript.cpp *properties = array; properties 38 Source/core/inspector/InspectorState.cpp InspectorState::InspectorState(InspectorStateUpdateListener* listener, PassRefPtr<JSONObject> properties) properties 40 Source/core/inspector/InspectorState.cpp , m_properties(properties) properties 50 Source/core/inspector/InspectorState.cpp void InspectorState::setFromCookie(PassRefPtr<JSONObject> properties) properties 52 Source/core/inspector/InspectorState.cpp m_properties = properties; properties 537 Source/core/inspector/InspectorStyleSheet.cpp WillBeHeapVector<InspectorStyleProperty> properties; properties 538 Source/core/inspector/InspectorStyleSheet.cpp populateAllProperties(properties); properties 540 Source/core/inspector/InspectorStyleSheet.cpp for (WillBeHeapVector<InspectorStyleProperty>::iterator it = properties.begin(), itEnd = properties.end(); it != itEnd; ++it) { properties 672 Source/core/inspector/InspectorStyleSheet.cpp WillBeHeapVector<InspectorStyleProperty> properties; properties 673 Source/core/inspector/InspectorStyleSheet.cpp populateAllProperties(properties); properties 675 Source/core/inspector/InspectorStyleSheet.cpp for (WillBeHeapVector<InspectorStyleProperty>::iterator it = properties.begin(), itEnd = properties.end(); it != itEnd; ++it) { properties 279 Source/core/page/PageSerializer.cpp retrieveResourcesForProperties(&toCSSFontFaceRule(rule)->styleRule()->properties(), document); properties 281 Source/core/page/PageSerializer.cpp retrieveResourcesForProperties(&toCSSStyleRule(rule)->styleRule()->properties(), document); properties 40 Source/core/rendering/compositing/CompositingPropertyUpdater.cpp RenderLayer::AncestorDependentProperties properties; properties 43 Source/core/rendering/compositing/CompositingPropertyUpdater.cpp properties.clippedAbsoluteBoundingBox = enclosingIntRect(m_geometryMap.absoluteRect(layer->overlapBounds())); properties 47 Source/core/rendering/compositing/CompositingPropertyUpdater.cpp if (properties.clippedAbsoluteBoundingBox.isEmpty()) properties 48 Source/core/rendering/compositing/CompositingPropertyUpdater.cpp properties.clippedAbsoluteBoundingBox.setSize(IntSize(1, 1)); properties 51 Source/core/rendering/compositing/CompositingPropertyUpdater.cpp properties.clippedAbsoluteBoundingBox.intersect(clipRect); properties 54 Source/core/rendering/compositing/CompositingPropertyUpdater.cpp layer->updateAncestorDependentProperties(properties); properties 93 Source/core/rendering/style/KeyframeList.cpp for (HashSet<CSSPropertyID>::const_iterator it = currKeyframe.properties().begin(); it != currKeyframe.properties().end(); ++it) properties 97 Source/core/rendering/style/KeyframeList.cpp for (HashSet<CSSPropertyID>::const_iterator it = keyframe.properties().begin(); it != keyframe.properties().end(); ++it) properties 53 Source/core/rendering/style/KeyframeList.h const HashSet<CSSPropertyID>& properties() const { return m_properties; } properties 1387 Source/core/rendering/style/RenderStyle.h void setWillChangeProperties(const Vector<CSSPropertyID>& properties) { SET_VAR(rareNonInheritedData.access()->m_willChange, m_properties, properties); } properties 261 Source/core/svg/SVGFontFaceElement.cpp return m_fontFaceRule->properties().getPropertyValue(CSSPropertyFontFamily); properties 301 Source/core/svg/SVGFontFaceElement.cpp RefPtrWillBeRawPtr<CSSValue> src = m_fontFaceRule->properties().getPropertyCSSValue(CSSPropertySrc);