HomeSort by relevance Sort by last modified time
    Searched defs:propertyID (Results 1 - 9 of 9) 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 BisonCSSParser::parseValue(dummyStyle.get(), propertyID, normalizedValue, false, HTMLStandardMode, 0);
PropertySetCSSStyleDeclaration.cpp 177 CSSPropertyID propertyID = cssPropertyID(propertyName);
178 if (!propertyID)
180 return cloneAndCacheForCSSOM(propertySet().getPropertyCSSValue(propertyID).get());
185 CSSPropertyID propertyID = cssPropertyID(propertyName);
186 if (!propertyID)
188 return propertySet().getPropertyValue(propertyID);
193 CSSPropertyID propertyID = cssPropertyID(propertyName);
194 if (!propertyID)
196 return propertySet().propertyIsImportant(propertyID) ? "important" : "";
201 CSSPropertyID propertyID = cssPropertyID(propertyName)
    [all...]
StylePropertySerializer.cpp 46 String StylePropertySerializer::getPropertyText(CSSPropertyID propertyID, const String& value, bool isImportant, bool isNotFirstDecl) const
51 result.append(getPropertyName(propertyID));
71 CSSPropertyID propertyID = property.id();
73 ASSERT(RuntimeCSSEnabled::isCSSPropertyEnabled(propertyID) || isInternalProperty(propertyID));
78 switch (propertyID) {
225 propertyID = shorthandPropertyID;
231 if (value == "initial" && !CSSProperty::isInheritedProperty(propertyID))
234 result.append(getPropertyText(propertyID, value, property.isImportant(), numDecls++));
244 String StylePropertySerializer::getPropertyValue(CSSPropertyID propertyID) cons
    [all...]
CSSPrimitiveValue.h 225 static PassRefPtrWillBeRawPtr<CSSPrimitiveValue> createIdentifier(CSSPropertyID propertyID)
227 return adoptRefWillBeNoop(new CSSPrimitiveValue(propertyID));
347 CSSPropertyID getPropertyID() const { return m_primitiveUnitType == CSS_PROPERTY_ID ? m_value.propertyID : CSSPropertyInvalid; }
412 CSSPropertyID propertyID;
CSSComputedStyleDeclaration.cpp 588 static PassRefPtrWillBeRawPtr<CSSValueList> createPositionListForLayer(CSSPropertyID propertyID, const FillLayer* layer, const RenderStyle& style)
592 ASSERT_UNUSED(propertyID, propertyID == CSSPropertyBackgroundPosition || propertyID == CSSPropertyWebkitMaskPosition);
597 ASSERT(propertyID == CSSPropertyBackgroundPosition || propertyID == CSSPropertyWebkitMaskPosition);
604 static PassRefPtrWillBeRawPtr<CSSValue> valueForPositionOffset(RenderStyle& style, CSSPropertyID propertyID, const RenderObject* renderer)
607 switch (propertyID) {
625 LayoutUnit containingBlockSize = (propertyID == CSSPropertyLeft || propertyID == CSSPropertyRight)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGElement.cpp 62 CSSPropertyID propertyId = cssPropertyID(attrName.localName());
63 if (!propertyId && attrName == transform_originAttr) {
64 propertyId = CSSPropertyWebkitTransformOrigin; // cssPropertyID("-webkit-transform-origin")
65 } else if (propertyId == CSSPropertyTransformOrigin) {
66 propertyId = CSSPropertyWebkitTransformOrigin;
68 ASSERT(propertyId > 0);
69 propertyNameToIdMap->set(attrName.localName().impl(), propertyId);
777 CSSPropertyID propertyID = cssPropertyIdForSVGAttributeName(name);
778 if (propertyID > 0)
779 addPropertyToPresentationAttributeStyle(style, propertyID, value)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/editing/
EditingStyle.cpp 156 static PassOwnPtrWillBeRawPtr<HTMLElementEquivalent> create(CSSPropertyID propertyID, CSSValueID primitiveValue, const QualifiedName& tagName)
158 return adoptPtrWillBeNoop(new HTMLElementEquivalent(propertyID, primitiveValue, tagName));
248 static PassOwnPtrWillBeRawPtr<HTMLAttributeEquivalent> create(CSSPropertyID propertyID, const QualifiedName& tagName, const QualifiedName& attrName)
250 return adoptPtrWillBeNoop(new HTMLAttributeEquivalent(propertyID, tagName, attrName));
252 static PassOwnPtrWillBeRawPtr<HTMLAttributeEquivalent> create(CSSPropertyID propertyID, const QualifiedName& attrName)
254 return adoptPtrWillBeNoop(new HTMLAttributeEquivalent(propertyID, attrName));
372 EditingStyle::EditingStyle(CSSPropertyID propertyID, const String& value)
377 setProperty(propertyID, value);
489 void EditingStyle::setProperty(CSSPropertyID propertyID, const String& value, bool important)
494 m_mutableStyle->setProperty(propertyID, value, important)
    [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 214 milliseconds