HomeSort by relevance Sort by last modified time
    Searched defs:propertyID (Results 1 - 11 of 11) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/css/
DOMWindowCSS.cpp 61 CSSPropertyID propertyID = cssPropertyID(property.stripWhiteSpace());
62 if (propertyID == CSSPropertyInvalid)
65 if (!RuntimeCSSEnabled::isCSSPropertyEnabled(propertyID))
78 return CSSParser::parseValue(dummyStyle.get(), propertyID, normalizedValue, false, CSSStrictMode, 0);
PropertySetCSSStyleDeclaration.cpp 167 CSSPropertyID propertyID = cssPropertyID(propertyName);
168 if (!propertyID)
170 return cloneAndCacheForCSSOM(m_propertySet->getPropertyCSSValue(propertyID).get());
175 CSSPropertyID propertyID = cssPropertyID(propertyName);
176 if (!propertyID)
178 return m_propertySet->getPropertyValue(propertyID);
183 CSSPropertyID propertyID = cssPropertyID(propertyName);
184 if (!propertyID)
186 return m_propertySet->propertyIsImportant(propertyID) ? "important" : "";
191 CSSPropertyID propertyID = cssPropertyID(propertyName)
    [all...]
StylePropertySerializer.cpp 64 CSSPropertyID propertyID = property.id();
66 ASSERT(RuntimeCSSEnabled::isCSSPropertyEnabled(propertyID));
71 switch (propertyID) {
223 propertyID = shorthandPropertyID;
229 if (value == "initial" && !CSSProperty::isInheritedProperty(propertyID))
234 result.append(getPropertyName(propertyID));
311 String StylePropertySerializer::getPropertyValue(CSSPropertyID propertyID) const
314 switch (propertyID) {
418 void StylePropertySerializer::appendFontLonghandValueIfExplicit(CSSPropertyID propertyID, StringBuilder& result, String& commonValue) const
420 int foundPropertyIndex = m_propertySet.findPropertyIndex(propertyID);
    [all...]
CSSPrimitiveValue.h 202 static PassRefPtr<CSSPrimitiveValue> createIdentifier(CSSPropertyID propertyID) { return adoptRef(new CSSPrimitiveValue(propertyID)); }
305 CSSPropertyID getPropertyID() const { return m_primitiveUnitType == CSS_PROPERTY_ID ? m_value.propertyID : CSSPropertyInvalid; }
366 CSSPropertyID propertyID;
CSSComputedStyleDeclaration.cpp 590 static PassRefPtr<CSSValueList> createPositionListForLayer(CSSPropertyID propertyID, const FillLayer* layer, const RenderStyle* style)
594 ASSERT_UNUSED(propertyID, propertyID == CSSPropertyBackgroundPosition || propertyID == CSSPropertyWebkitMaskPosition);
599 ASSERT(propertyID == CSSPropertyBackgroundPosition || propertyID == CSSPropertyWebkitMaskPosition);
606 static PassRefPtr<CSSValue> getPositionOffsetValue(RenderStyle* style, CSSPropertyID propertyID, const RenderObject* renderer, RenderView* renderView)
612 switch (propertyID) {
630 LayoutUnit containingBlockSize = (propertyID == CSSPropertyLeft || propertyID == CSSPropertyRight)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8CSSStyleDeclarationCustom.cpp 135 CSSPropertyID propertyID = cssPropertyID(propName);
136 if (propertyID && RuntimeCSSEnabled::isCSSPropertyEnabled(propertyID)) {
138 propInfo->propID = propertyID;
153 CSSPropertyID propertyId = static_cast<CSSPropertyID>(id);
154 if (RuntimeCSSEnabled::isCSSPropertyEnabled(propertyId))
155 propertyNames.append(getJSPropertyName(propertyId));
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGElement.cpp 66 CSSPropertyID propertyId = cssPropertyID(attrName.localName());
67 if (!propertyId && attrName == transform_originAttr)
68 propertyId = CSSPropertyWebkitTransformOrigin; // cssPropertyID("-webkit-transform-origin")
69 ASSERT(propertyId > 0);
70 propertyNameToIdMap->set(attrName.localName().impl(), propertyId);
289 CSSPropertyID propertyID = SVGElement::cssPropertyIdForSVGAttributeName(attr->name());
290 style->setProperty(propertyID, attr->value());
291 RefPtr<CSSValue> cssValue = style->getPropertyCSSValue(propertyID);
718 CSSPropertyID propertyID = cssPropertyIdForSVGAttributeName(name);
719 if (propertyID > 0
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/editing/
EditingStyle.cpp 144 static PassOwnPtr<HTMLElementEquivalent> create(CSSPropertyID propertyID, CSSValueID primitiveValue, const QualifiedName& tagName)
146 return adoptPtr(new HTMLElementEquivalent(propertyID, primitiveValue, tagName));
230 static PassOwnPtr<HTMLAttributeEquivalent> create(CSSPropertyID propertyID, const QualifiedName& tagName, const QualifiedName& attrName)
232 return adoptPtr(new HTMLAttributeEquivalent(propertyID, tagName, attrName));
234 static PassOwnPtr<HTMLAttributeEquivalent> create(CSSPropertyID propertyID, const QualifiedName& attrName)
236 return adoptPtr(new HTMLAttributeEquivalent(propertyID, attrName));
356 EditingStyle::EditingStyle(CSSPropertyID propertyID, const String& value)
361 setProperty(propertyID, value);
473 void EditingStyle::setProperty(CSSPropertyID propertyID, const String& value, bool important)
478 m_mutableStyle->setProperty(propertyID, value, important)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/animation/
CSSPropertyAnimation.cpp 333 static void addPropertyWrapper(CSSPropertyID propertyID, AnimationPropertyWrapperBase* wrapper)
335 int propIndex = propertyID - firstCSSProperty;
344 static AnimationPropertyWrapperBase* wrapperForProperty(CSSPropertyID propertyID)
346 int propIndex = propertyID - firstCSSProperty;
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.ui.views_3.5.0.I20100527-0800.jar 
org.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jar 

Completed in 217 milliseconds