HomeSort by relevance Sort by last modified time
    Searched refs:CSSValue (Results 51 - 71 of 71) sorted by null

1 23

  /external/webkit/Source/WebCore/bindings/objc/
DOMUtility.mm 105 WRAP(CSSValue)
DOMCSS.mm 31 #import "CSSValue.h"
97 Class kitClass(WebCore::CSSValue* impl)
100 case WebCore::CSSValue::CSS_PRIMITIVE_VALUE:
102 case WebCore::CSSValue::CSS_VALUE_LIST:
106 case WebCore::CSSValue::CSS_INHERIT:
107 case WebCore::CSSValue::CSS_INITIAL:
109 case WebCore::CSSValue::CSS_CUSTOM:
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8CSSStyleDeclarationCustom.cpp 36 #include "CSSValue.h"
171 RefPtr<CSSValue> cssValue = imp->getPropertyCSSValue(propInfo->propID);
172 if (cssValue) {
174 cssValue->cssValueType() == CSSValue::CSS_PRIMITIVE_VALUE) {
176 cssValue.get())->getFloatValue(CSSPrimitiveValue::CSS_PX));
178 return v8StringOrNull(cssValue->cssText());
  /external/webkit/Source/WebCore/css/
CSSFontSelector.cpp 92 RefPtr<CSSValue> fontFamily = style->getPropertyCSSValue(CSSPropertyFontFamily);
93 RefPtr<CSSValue> src = style->getPropertyCSSValue(CSSPropertySrc);
94 RefPtr<CSSValue> unicodeRange = style->getPropertyCSSValue(CSSPropertyUnicodeRange);
110 if (RefPtr<CSSValue> fontStyle = style->getPropertyCSSValue(CSSPropertyFontStyle)) {
142 if (RefPtr<CSSValue> fontWeight = style->getPropertyCSSValue(CSSPropertyFontWeight)) {
198 if (RefPtr<CSSValue> fontVariant = style->getPropertyCSSValue(CSSPropertyFontVariant)) {
CSSComputedStyleDeclaration.cpp 314 static PassRefPtr<CSSValue> valueForNinePieceImage(const NinePieceImage& image, CSSPrimitiveValueCache* primitiveValueCache)
320 RefPtr<CSSValue> imageValue;
322 imageValue = image.image()->cssValue();
368 static PassRefPtr<CSSValue> zoomAdjustedPixelValueForLength(const Length& length, const RenderStyle* style, CSSPrimitiveValueCache* primitiveValueCache)
375 static PassRefPtr<CSSValue> valueForReflection(const StyleReflection* reflection, const RenderStyle* style, CSSPrimitiveValueCache* primitiveValueCache)
389 static PassRefPtr<CSSValue> getPositionOffsetValue(RenderStyle* style, int propertyID, CSSPrimitiveValueCache* primitiveValueCache)
436 static PassRefPtr<CSSValue> getBorderRadiusCornerValue(LengthSize radius, const RenderStyle* style, CSSPrimitiveValueCache* primitiveValueCache)
469 static PassRefPtr<CSSValue> computedTransform(RenderObject* renderer, const RenderStyle* style, CSSPrimitiveValueCache* primitiveValueCache)
522 static PassRefPtr<CSSValue> getDelayValue(const AnimationList* animList, CSSPrimitiveValueCache* primitiveValueCache)
535 static PassRefPtr<CSSValue> getDurationValue(const AnimationList* animList, CSSPrimitiveValueCache* primitiveValueCache
    [all...]
CSSStyleSelector.cpp     [all...]
SVGCSSComputedStyleDeclaration.cpp 49 static PassRefPtr<CSSValue> strokeDashArrayToCSSValueList(const Vector<SVGLength>& dashes)
62 PassRefPtr<CSSValue> CSSComputedStyleDeclaration::getSVGPropertyCSSValue(int propertyID, EUpdateLayout updateLayout) const
SVGCSSStyleSelector.cpp 105 void CSSStyleSelector::applySVGProperty(int id, CSSValue* value)
265 CSSValue* currValue = dashes->itemWithoutBoundsCheck(i);
557 CSSValue* firstValue = list->itemWithoutBoundsCheck(0);
WebKitCSSMatrix.cpp 59 RefPtr<CSSValue> value = styleDeclaration->getPropertyCSSValue(CSSPropertyWebkitTransform);
CSSMutableStyleDeclaration.h 98 virtual PassRefPtr<CSSValue> getPropertyCSSValue(int propertyID) const;
CSSPrimitiveValue.h 25 #include "CSSValue.h"
50 class CSSPrimitiveValue : public CSSValue {
130 * computes a length in pixels out of the given CSSValue. Need the RenderStyle to get
  /external/webkit/Source/WebCore/rendering/style/
SVGRenderStyleDefs.h 92 class CSSValue;
  /external/webkit/Source/WebCore/editing/
markup.cpp 39 #include "CSSValue.h"
286 CSSValue* value = property.value();
290 if (value->cssValueType() == CSSValue::CSS_PRIMITIVE_VALUE)
292 if (RefPtr<CSSValue> computedPropertyValue = computedStyleForElement->getPropertyCSSValue(property.id()))
429 RefPtr<CSSValue> value = style->getPropertyCSSValue(propertyID);
    [all...]
Editor.cpp 588 RefPtr<CSSValue> unicodeBidi = style->getPropertyCSSValue(CSSPropertyUnicodeBidi);
618 RefPtr<CSSValue> unicodeBidi = style->getPropertyCSSValue(CSSPropertyUnicodeBidi);
630 RefPtr<CSSValue> direction = style->getPropertyCSSValue(CSSPropertyDirection);
921 RefPtr<CSSValue> cssValue = style->getPropertyCSSValue(CSSPropertyBackgroundColor);
922 if (!cssValue)
925 if (!cssValue->isPrimitiveValue())
927 CSSPrimitiveValue* value = static_cast<CSSPrimitiveValue*>(cssValue.get());
    [all...]
EditorCommand.cpp 133 static bool executeToggleStyleInList(Frame* frame, EditorCommandSource source, EditAction action, int propertyID, CSSValue* value)
140 RefPtr<CSSValue> selectedCSSValue = selectionStyle->style()->getPropertyCSSValue(propertyID);
    [all...]
ApplyStyleCommand.cpp 382 RefPtr<CSSValue> value = inlineStyleDecl->getPropertyCSSValue(CSSPropertyFontSize);
    [all...]
  /external/webkit/Source/WebCore/svg/
SVGFontFaceElement.cpp 306 RefPtr<CSSValue> src = m_styleDeclaration->getPropertyCSSValue(CSSPropertySrc);
SVGStyledElement.cpp 386 PassRefPtr<CSSValue> SVGStyledElement::getPresentationAttribute(const String& name)
397 // This function returns a pointer to a CSSValue which can be mutated from JavaScript.
400 // before returning so that any modifications to the CSSValue will not affect other attributes.
  /external/webkit/Source/WebCore/html/
HTMLBodyElement.cpp 129 RefPtr<CSSValue> val = m_linkDecl->getPropertyCSSValue(CSSPropertyColor);
HTMLTableElement.cpp 317 RefPtr<CSSValue> val = attr->decl()->getPropertyCSSValue(CSSPropertyBorderLeftWidth);
  /external/webkit/Source/WebCore/page/
DOMWindow.idl 358 attribute CSSValueConstructor CSSValue;
    [all...]

Completed in 1256 milliseconds

1 23