OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CSSValue
(Results
1 - 25
of
71
) sorted by null
1
2
3
/external/webkit/Source/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
*);
72
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)
42
CSSValue
* imageValue() const { return m_image.get(); }
47
RefPtr<
CSSValue
> m_image;
58
CSSBorderImageValue(PassRefPtr<
CSSValue
> image, PassRefPtr<Rect> sliceRect, int horizontalRule, int verticalRule);
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)
67
RefPtr<
CSSValue
> m_mask;
CSSParser.h
48
class
CSSValue
;
77
void addProperty(int propId, PassRefPtr<
CSSValue
>, bool important);
87
PassRefPtr<
CSSValue
> parseAttr(CSSParserValueList* args);
89
PassRefPtr<
CSSValue
> parseBackgroundColor();
91
bool parseFillImage(RefPtr<
CSSValue
>&);
94
PassRefPtr<
CSSValue
> parseFillPositionComponent(CSSParserValueList*, unsigned& cumulativeFlags, FillPositionFlag& individualFlag);
95
PassRefPtr<
CSSValue
> parseFillPositionX(CSSParserValueList*);
96
PassRefPtr<
CSSValue
> parseFillPositionY(CSSParserValueList*);
97
void parseFillPosition(CSSParserValueList*, RefPtr<
CSSValue
>&, RefPtr<
CSSValue
>&)
[
all
...]
CSSValue.h
34
class
CSSValue
: public RefCounted<
CSSValue
> {
45
virtual ~
CSSValue
() { }
CSSInheritedValue.h
24
#include "
CSSValue
.h"
29
class CSSInheritedValue : public
CSSValue
{
CSSStyleSelector.h
51
class
CSSValue
;
159
void applyPropertyToStyle(int id,
CSSValue
*, RenderStyle*);
186
static bool createTransformOperations(
CSSValue
* inValue, RenderStyle* inStyle, RenderStyle* rootStyle, TransformOperations& outOperations);
289
void mapFillAttachment(CSSPropertyID, FillLayer*,
CSSValue
*);
290
void mapFillClip(CSSPropertyID, FillLayer*,
CSSValue
*);
291
void mapFillComposite(CSSPropertyID, FillLayer*,
CSSValue
*);
292
void mapFillOrigin(CSSPropertyID, FillLayer*,
CSSValue
*);
293
void mapFillImage(CSSPropertyID, FillLayer*,
CSSValue
*);
294
void mapFillRepeatX(CSSPropertyID, FillLayer*,
CSSValue
*);
295
void mapFillRepeatY(CSSPropertyID, FillLayer*,
CSSValue
*);
[
all
...]
CSSComputedStyleDeclaration.h
50
virtual PassRefPtr<
CSSValue
> getPropertyCSSValue(int propertyID) const;
59
PassRefPtr<
CSSValue
> getPropertyCSSValue(int propertyID, EUpdateLayout) const;
60
PassRefPtr<
CSSValue
> getFontSizeCSSValuePreferringKeyword() const;
63
PassRefPtr<
CSSValue
> getSVGPropertyCSSValue(int propertyID, EUpdateLayout) const;
77
PassRefPtr<
CSSValue
> valueForShadow(const ShadowData*, int, RenderStyle*) const;
CSSProperty.h
24
#include "
CSSValue
.h"
35
CSSProperty(int propID, PassRefPtr<
CSSValue
> value, bool important = false, int shorthandID = 0, bool implicit = false)
60
CSSValue
* value() const { return m_value.get(); }
74
RefPtr<
CSSValue
> m_value;
CSSValue.idl
26
]
CSSValue
{
CSSFunctionValue.h
29
#include "
CSSValue
.h"
36
class CSSFunctionValue : public
CSSValue
{
MediaQueryEvaluator.cpp
61
typedef bool (*EvalFunc)(
CSSValue
*, RenderStyle*, Frame*, MediaFeaturePrefix);
173
static bool parseAspectRatio(
CSSValue
* value, int& h, int& v)
178
CSSValue
* i0 = valueList->itemWithoutBoundsCheck(0);
179
CSSValue
* i1 = valueList->itemWithoutBoundsCheck(1);
180
CSSValue
* i2 = valueList->itemWithoutBoundsCheck(2);
210
static bool numberValue(
CSSValue
* value, float& result)
220
static bool colorMediaFeatureEval(
CSSValue
* value, RenderStyle*, Frame* frame, MediaFeaturePrefix op)
230
static bool monochromeMediaFeatureEval(
CSSValue
* value, RenderStyle* style, Frame* frame, MediaFeaturePrefix op)
243
static bool orientationMediaFeatureEval(
CSSValue
* value, RenderStyle*, Frame* frame, MediaFeaturePrefix)
257
static bool aspect_ratioMediaFeatureEval(
CSSValue
* value, RenderStyle*, Frame* frame, MediaFeaturePrefix op
[
all
...]
CSSValueList.cpp
49
CSSValue
* CSSValueList::item(unsigned index)
61
void CSSValueList::append(PassRefPtr<
CSSValue
> val)
66
void CSSValueList::prepend(PassRefPtr<
CSSValue
> val)
71
bool CSSValueList::removeAll(
CSSValue
* val)
74
// FIXME: we should be implementing operator== to
CSSValue
and its derived classes
86
bool CSSValueList::hasValue(
CSSValue
* val)
88
// FIXME: we should be implementing operator== to
CSSValue
and its derived classes
CSSInitialValue.h
24
#include "
CSSValue
.h"
29
class CSSInitialValue : public
CSSValue
{
FontValue.h
24
#include "
CSSValue
.h"
33
class FontValue : public
CSSValue
{
CSSStyleDeclaration.h
32
class
CSSValue
;
50
PassRefPtr<
CSSValue
> getPropertyCSSValue(const String& propertyName);
56
virtual PassRefPtr<
CSSValue
> getPropertyCSSValue(int propertyID) const = 0;
CSSStyleApplyProperty.h
35
class
CSSValue
;
44
virtual void applyValue(CSSStyleSelector*,
CSSValue
*) const = 0;
64
void applyValue(CSSPropertyID property, CSSStyleSelector* selector,
CSSValue
* value) const
CSSLineBoxContainValue.h
29
#include "
CSSValue
.h"
42
class CSSLineBoxContainValue : public
CSSValue
{
/external/webkit/Source/WebCore/svg/
SVGStylable.h
30
class
CSSValue
;
38
virtual PassRefPtr<
CSSValue
> getPresentationAttribute(const String&) = 0;
SVGStylable.idl
34
CSSValue
getPresentationAttribute(in DOMString name);
/external/webkit/Source/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/Source/WebCore/rendering/style/
StyleGeneratedImage.h
31
class
CSSValue
;
45
virtual PassRefPtr<
CSSValue
>
cssValue
() const;
StyleImage.h
27
#include "
CSSValue
.h"
36
class
CSSValue
;
50
virtual PassRefPtr<
CSSValue
>
cssValue
() const = 0;
/external/webkit/Source/WebCore/bindings/v8/custom/
V8CSSValueCustom.cpp
45
v8::Handle<v8::Value> toV8(
CSSValue
* impl)
Completed in 378 milliseconds
1
2
3