HomeSort by relevance Sort by last modified time
    Searched refs:cssPropertyID (Results 1 - 13 of 13) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/animation/
AnimationInputHelpers.cpp 14 CSSPropertyID AnimationInputHelpers::keyframeAttributeToCSSPropertyID(const String& propertyName)
27 return cssPropertyID(builder.toString());
  /external/chromium_org/third_party/WebKit/Source/core/css/
DOMWindowCSS.cpp 61 CSSPropertyID propertyID = cssPropertyID(property.stripWhiteSpace());
PropertySetCSSStyleDeclaration.cpp 177 CSSPropertyID propertyID = cssPropertyID(propertyName);
185 CSSPropertyID propertyID = cssPropertyID(propertyName);
193 CSSPropertyID propertyID = cssPropertyID(propertyName);
201 CSSPropertyID propertyID = cssPropertyID(propertyName);
204 CSSPropertyID shorthandID = propertySet().getPropertyShorthand(propertyID);
212 CSSPropertyID propertyID = cssPropertyID(propertyName)
    [all...]
CSSComputedStyleDeclaration.cpp 76 static const CSSPropertyID staticComputableProperties[] = {
375 static const Vector<CSSPropertyID>& computableProperties()
377 DEFINE_STATIC_LOCAL(Vector<CSSPropertyID>, properties, ());
587 static PassRefPtrWillBeRawPtr<CSSValueList> createPositionListForLayer(CSSPropertyID propertyID, const FillLayer& layer, const RenderStyle& style)
603 static PassRefPtrWillBeRawPtr<CSSValue> valueForPositionOffset(RenderStyle& style, CSSPropertyID propertyID, const RenderObject* renderer)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/parser/
CSSParser.h 25 static bool parseValue(MutableStylePropertySet*, CSSPropertyID, const String&, bool important, CSSParserMode, StyleSheetContents*);
28 static PassRefPtrWillBeRawPtr<CSSValue> parseSingleValue(CSSPropertyID, const String&, const CSSParserContext& = strictCSSParserContext());
42 static bool parseValue(MutableStylePropertySet*, CSSPropertyID, const String&, bool important, const CSSParserContext&);
47 CSSPropertyID cssPropertyID(const String&);
CSSPropertyParser.h 59 static bool parseValue(CSSPropertyID, bool important,
73 bool parseValue(CSSPropertyID, bool important);
79 bool parseViewportProperty(CSSPropertyID propId, bool important);
80 bool parseViewportShorthand(CSSPropertyID propId, CSSPropertyID first, CSSPropertyID second, bool important);
84 void addPropertyWithPrefixingVariant(CSSPropertyID, PassRefPtrWillBeRawPtr<CSSValue>, bool important, bool implicit = false);
85 void addProperty(CSSPropertyID, PassRefPtrWillBeRawPtr<CSSValue>, bool important, bool implicit = false);
87 void addExpandedPropertyForValue(CSSPropertyID propId, PassRefPtrWillBeRawPtr<CSSValue>, bool);
91 bool parseShorthand(CSSPropertyID, const StylePropertyShorthand&, bool important)
    [all...]
CSSGrammar.y 95 CSSPropertyID id;
811 CSSPropertyID id = cssPropertyID($3);
    [all...]
CSSPropertyParser.cpp 125 bool CSSPropertyParser::parseValue(CSSPropertyID property, bool important,
133 void CSSPropertyParser::addPropertyWithPrefixingVariant(CSSPropertyID propId, PassRefPtrWillBeRawPtr<CSSValue> value, bool important, bool implicit)
138 CSSPropertyID prefixingVariant = prefixingVariantForPropertyId(propId);
152 void CSSPropertyParser::addProperty(CSSPropertyID propId, PassRefPtrWillBeRawPtr<CSSValue> value, bool important, bool implicit)
414 void CSSPropertyParser::addExpandedPropertyForValue(CSSPropertyID propId, PassRefPtrWillBeRawPtr<CSSValue> prpValue, bool important)
425 const CSSPropertyID* longhands = shorthand.properties();
430 bool CSSPropertyParser::parseValue(CSSPropertyID propId, bool important)
731 CSSPropertyID propId1, propId2;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGAnimateElement.cpp 191 computeCSSPropertyValue(targetElement, cssPropertyID(attributeName.localName()), baseValue);
197 static inline void applyCSSPropertyToTarget(SVGElement* targetElement, CSSPropertyID id, const String& value)
210 static inline void removeCSSPropertyFromTarget(SVGElement* targetElement, CSSPropertyID id)
225 CSSPropertyID id = cssPropertyID(attributeName.localName());
245 CSSPropertyID id = cssPropertyID(attributeName.localName());
SVGAnimationElement.cpp 628 void SVGAnimationElement::computeCSSPropertyValue(SVGElement* element, CSSPropertyID id, String& value)
649 computeCSSPropertyValue(svgParent, cssPropertyID(attributeName.localName()), value);
SVGElement.cpp 290 void mapAttributeToCSSProperty(HashMap<StringImpl*, CSSPropertyID>* propertyNameToIdMap, const QualifiedName& attrName)
292 CSSPropertyID propertyId = cssPropertyID(attrName.localName());
297 CSSPropertyID SVGElement::cssPropertyIdForSVGAttributeName(const QualifiedName& attrName)
302 static HashMap<StringImpl*, CSSPropertyID>* propertyNameToIdMap = 0;
304 propertyNameToIdMap = new HashMap<StringImpl*, CSSPropertyID>;
714 CSSPropertyID propertyID = cssPropertyIdForSVGAttributeName(name);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/frame/
UseCounter.cpp 50 // to detect new values in CSSPropertyID and add them to the
55 CSSPropertyID cssPropertyID = convertToCSSPropertyID(id);
57 switch (cssPropertyID) {
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/custom/
V8CSSStyleDeclarationCustom.cpp 83 CSSPropertyID propID;
86 static CSSPropertyID cssResolvedPropertyID(const String& propertyName)
127 return cssPropertyID(propName);
164 CSSPropertyID propertyId = static_cast<CSSPropertyID>(id);
206 RefPtrWillBeRawPtr<CSSValue> cssValue = impl->getPropertyCSSValueInternal(static_cast<CSSPropertyID>(propInfo->propID));
212 String result = impl->getPropertyValueInternal(static_cast<CSSPropertyID>(propInfo->propID));
224 ExceptionState exceptionState(ExceptionState::SetterContext, getPropertyName(static_cast<CSSPropertyID>(propInfo->propID)), "CSSStyleDeclaration", info.Holder(), info.GetIsolate());
225 impl->setPropertyInternal(static_cast<CSSPropertyID>(propInfo->propID), propertyValue, false, exceptionState);

Completed in 433 milliseconds