HomeSort by relevance Sort by last modified time
    Searched refs:CSSValue (Results 1 - 25 of 76) sorted by null

1 2 3 4

  /external/webkit/WebCore/css/
CSSValueList.idl 31 ] CSSValueList : CSSValue {
33 CSSValue item(in unsigned long index);
CSSValueList.h 24 #include "CSSValue.h"
32 class CSSValueList : public CSSValue {
50 CSSValue* item(unsigned);
51 CSSValue* itemWithoutBoundsCheck(unsigned index) { return m_values[index].get(); }
53 void append(PassRefPtr<CSSValue>);
54 void prepend(PassRefPtr<CSSValue>);
55 bool removeAll(CSSValue*);
56 bool hasValue(CSSValue*);
74 Vector<RefPtr<CSSValue> > m_values;
CSSBorderImageValue.h 24 #include "CSSValue.h"
32 class CSSBorderImageValue : public CSSValue {
34 static PassRefPtr<CSSBorderImageValue> create(PassRefPtr<CSSValue> image, PassRefPtr<Rect> sliceRect, int horizontalRule, int verticalRule)
41 CSSValue* imageValue() const { return m_image.get(); }
46 RefPtr<CSSValue> m_image;
57 CSSBorderImageValue(PassRefPtr<CSSValue> image, PassRefPtr<Rect> sliceRect, int horizontalRule, int verticalRule);
CSSParser.h 42 class CSSValue;
69 void addProperty(int propId, PassRefPtr<CSSValue>, bool important);
78 PassRefPtr<CSSValue> parseAttr(CSSParserValueList* args);
80 PassRefPtr<CSSValue> parseBackgroundColor();
82 bool parseFillImage(RefPtr<CSSValue>&);
83 PassRefPtr<CSSValue> parseFillPositionXY(bool& xFound, bool& yFound);
84 void parseFillPosition(RefPtr<CSSValue>&, RefPtr<CSSValue>&);
85 void parseFillRepeat(RefPtr<CSSValue>&, RefPtr<CSSValue>&)
    [all...]
CSSReflectValue.h 30 #include "CSSValue.h"
38 class CSSReflectValue : public CSSValue {
41 PassRefPtr<CSSPrimitiveValue> offset, PassRefPtr<CSSValue> mask)
48 CSSValue* mask() const { return m_mask.get(); }
56 PassRefPtr<CSSPrimitiveValue> offset, PassRefPtr<CSSValue> mask)
65 RefPtr<CSSValue> m_mask;
CSSValue.h 37 class CSSValue : public RefCounted<CSSValue> {
48 virtual ~CSSValue() { }
CSSInheritedValue.h 24 #include "CSSValue.h"
29 class CSSInheritedValue : public CSSValue {
CSSStyleSelector.h 49 class CSSValue;
131 void applyPropertyToStyle(int id, CSSValue*, RenderStyle*);
154 CSSValue* resolveVariableDependentValue(CSSVariableDependentValue*);
159 static bool createTransformOperations(CSSValue* inValue, RenderStyle* inStyle, RenderStyle* rootStyle, TransformOperations& outOperations);
224 void mapFillAttachment(FillLayer*, CSSValue*);
225 void mapFillClip(FillLayer*, CSSValue*);
226 void mapFillComposite(FillLayer*, CSSValue*);
227 void mapFillOrigin(FillLayer*, CSSValue*);
228 void mapFillImage(FillLayer*, CSSValue*);
229 void mapFillRepeatX(FillLayer*, CSSValue*);
    [all...]
CSSComputedStyleDeclaration.h 44 virtual PassRefPtr<CSSValue> getPropertyCSSValue(int propertyID) const;
53 PassRefPtr<CSSValue> getPropertyCSSValue(int propertyID, EUpdateLayout) const;
54 PassRefPtr<CSSValue> getFontSizeCSSValuePreferringKeyword() const;
56 PassRefPtr<CSSValue> getSVGPropertyCSSValue(int propertyID, EUpdateLayout) const;
70 PassRefPtr<CSSValue> valueForShadow(const ShadowData*, int) const;
CSSVariablesDeclaration.h 42 class CSSValue;
47 static PassRefPtr<CSSVariablesDeclaration> create(StyleBase* owningRule, const Vector<String>& names, const Vector<RefPtr<CSSValue> >& values)
65 void addParsedVariable(const String& variableName, PassRefPtr<CSSValue> variableValue, bool updateNamesList = true);
71 CSSVariablesDeclaration(StyleBase* owningRule, const Vector<String>& names, const Vector<RefPtr<CSSValue> >& values);
77 HashMap<String, RefPtr<CSSValue> > m_variablesMap;
CSSProperty.h 24 #include "CSSValue.h"
32 CSSProperty(int propID, PassRefPtr<CSSValue> value, bool important = false, int shorthandID = 0, bool implicit = false)
57 CSSValue* value() const { return m_value.get(); }
69 RefPtr<CSSValue> m_value;
CSSValue.idl 26 ] CSSValue {
CSSFunctionValue.h 29 #include "CSSValue.h"
36 class CSSFunctionValue : public CSSValue {
CSSInitialValue.h 24 #include "CSSValue.h"
29 class CSSInitialValue : public CSSValue {
CSSVariableDependentValue.h 29 #include "CSSValue.h"
35 class CSSVariableDependentValue : public CSSValue {
MediaQueryEvaluator.cpp 60 typedef bool (*EvalFunc)(CSSValue*, RenderStyle*, Frame*, MediaFeaturePrefix);
169 static bool parseAspectRatio(CSSValue* value, int& h, int& v)
174 CSSValue* i0 = valueList->itemWithoutBoundsCheck(0);
175 CSSValue* i1 = valueList->itemWithoutBoundsCheck(1);
176 CSSValue* i2 = valueList->itemWithoutBoundsCheck(2);
206 static bool numberValue(CSSValue* value, float& result)
216 static bool colorMediaFeatureEval(CSSValue* value, RenderStyle*, Frame* frame, MediaFeaturePrefix op)
226 static bool monochromeMediaFeatureEval(CSSValue* value, RenderStyle* style, Frame* frame, MediaFeaturePrefix op)
239 static bool orientationMediaFeatureEval(CSSValue* value, RenderStyle*, Frame* frame, MediaFeaturePrefix)
253 static bool aspect_ratioMediaFeatureEval(CSSValue* value, RenderStyle*, Frame* frame, MediaFeaturePrefix op
    [all...]
CSSVariablesDeclaration.cpp 37 CSSVariablesDeclaration::CSSVariablesDeclaration(StyleBase* parent, const Vector<String>& names, const Vector<RefPtr<CSSValue> >& values)
53 CSSValue* val = m_variablesMap.get(variableName).get();
63 RefPtr<CSSValue> val = m_variablesMap.take(variableName);
92 void CSSVariablesDeclaration::addParsedVariable(const String& variableName, PassRefPtr<CSSValue> variableValue, bool updateNamesList)
101 CSSValue* current = m_variablesMap.take(variableName).get();
111 CSSValue* result = m_variablesMap.get(variableName).get();
MediaQueryExp.h 32 #include "CSSValue.h"
46 CSSValue* value() const { return m_value.get(); }
67 RefPtr<CSSValue> m_value;
FontValue.h 24 #include "CSSValue.h"
33 class FontValue : public CSSValue {
CSSStyleDeclaration.h 32 class CSSValue;
49 PassRefPtr<CSSValue> getPropertyCSSValue(const String& propertyName);
55 virtual PassRefPtr<CSSValue> getPropertyCSSValue(int propertyID) const = 0;
  /external/webkit/WebCore/svg/
SVGStylable.h 29 class CSSValue;
40 virtual PassRefPtr<CSSValue> getPresentationAttribute(const String&) = 0;
SVGStylable.idl 34 css::CSSValue getPresentationAttribute(in core::DOMString name);
  /external/webkit/WebCore/bindings/js/
JSCSSValueCustom.cpp 47 JSValue toJS(ExecState* exec, JSDOMGlobalObject* globalObject, CSSValue* value)
70 wrapper = CREATE_DOM_OBJECT_WRAPPER(exec, globalObject, CSSValue, value);
  /external/webkit/WebCore/rendering/style/
StyleGeneratedImage.h 31 class CSSValue;
45 virtual PassRefPtr<CSSValue> cssValue();
StyleImage.h 34 class CSSValue;
49 virtual PassRefPtr<CSSValue> cssValue() = 0;

Completed in 648 milliseconds

1 2 3 4