OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:cssvalue
(Results
26 - 50
of
167
) sorted by null
1
2
3
4
5
6
7
/external/chromium_org/third_party/WebKit/Source/core/css/
CSSComputedStyleDeclaration.h
80
PassRefPtr<
CSSValue
> getPropertyCSSValue(CSSPropertyID) const;
86
PassRefPtr<
CSSValue
> getPropertyCSSValue(CSSPropertyID, EUpdateLayout) const;
87
PassRefPtr<
CSSValue
> getFontSizeCSSValuePreferringKeyword() const;
89
PassRefPtr<
CSSValue
> getSVGPropertyCSSValue(CSSPropertyID, EUpdateLayout) const;
108
virtual PassRefPtr<
CSSValue
> getPropertyCSSValue(const String& propertyName);
117
virtual PassRefPtr<
CSSValue
> getPropertyCSSValueInternal(CSSPropertyID);
129
virtual bool cssPropertyMatches(CSSPropertyID, const
CSSValue
*) const OVERRIDE;
131
PassRefPtr<
CSSValue
> valueForShadowData(const ShadowData&, const RenderStyle&, bool useSpread) const;
132
PassRefPtr<
CSSValue
> valueForShadowList(const ShadowList*, const RenderStyle&, bool useSpread) const;
136
PassRefPtr<
CSSValue
> valueForFilter(const RenderObject*, const RenderStyle&) const
[
all
...]
StylePropertySet.h
70
const
CSSValue
* value() const { return propertyValue(); }
72
CSSValue
* value() { return const_cast<
CSSValue
*>(propertyValue()); }
75
CSSProperty toCSSProperty() const { return CSSProperty(propertyMetadata(), const_cast<
CSSValue
*>(propertyValue())); }
80
const
CSSValue
* propertyValue() const;
92
PassRefPtr<
CSSValue
> getPropertyCSSValue(CSSPropertyID) const;
125
bool propertyMatches(CSSPropertyID, const
CSSValue
*) const;
157
const
CSSValue
** valueArray() const;
166
inline const
CSSValue
** ImmutableStylePropertySet::valueArray() const
168
return reinterpret_cast<const
CSSValue
**>(const_cast<const void**>(&(this->m_storage)))
[
all
...]
CSSAspectRatioValue.h
32
#include "core/css/
CSSValue
.h"
36
class CSSAspectRatioValue : public
CSSValue
{
52
:
CSSValue
(AspectRatioClass)
CSSImageValue.h
24
#include "core/css/
CSSValue
.h"
35
class CSSImageValue : public
CSSValue
{
50
PassRefPtr<
CSSValue
> cloneForCSSOM() const;
CSSUnicodeRangeValue.h
29
#include "core/css/
CSSValue
.h"
34
class CSSUnicodeRangeValue : public
CSSValue
{
50
:
CSSValue
(UnicodeRangeClass)
CSSValue.h
38
// FIXME: The current
CSSValue
and subclasses should be turned into internal types (StyleValue).
42
// Please don't expose more
CSSValue
types to the web.
43
class
CSSValue
: public RefCounted<
CSSValue
> {
117
PassRefPtr<
CSSValue
> cloneForCSSOM() const;
123
bool equals(const
CSSValue
&) const;
190
explicit
CSSValue
(ClassType classType, bool isCSSOMSafe = false)
204
~
CSSValue
() { }
250
DEFINE_TYPE_CASTS(thisType,
CSSValue
, value, value->predicate, value.predicate)
MediaQueryExp.h
32
#include "core/css/
CSSValue
.h"
49
CSSValue
* value() const { return m_value.get(); }
65
MediaQueryExp(const AtomicString& mediaFeature, PassRefPtr<
CSSValue
>);
68
RefPtr<
CSSValue
> m_value;
BasicShapeFunctions.h
39
class
CSSValue
;
43
PassRefPtr<
CSSValue
> valueForBasicShape(const RenderStyle&, const BasicShape*);
CSSValueList.idl
28
] interface CSSValueList :
CSSValue
{
30
getter
CSSValue
item(unsigned long index);
MediaQueryExp.cpp
200
MediaQueryExp::MediaQueryExp(const AtomicString& mediaFeature, PassRefPtr<
CSSValue
> value)
208
RefPtr<
CSSValue
>
cssValue
;
218
cssValue
= CSSPrimitiveValue::createIdentifier(value->id);
219
if (!featureWithValidIdent(mediaFeature, toCSSPrimitiveValue(
cssValue
.get())->getValueID()))
220
cssValue
.clear();
223
cssValue
= CSSPrimitiveValue::create(value->fValue, (CSSPrimitiveValue::UnitTypes) value->unit);
226
cssValue
= CSSPrimitiveValue::create(value->fValue, (CSSPrimitiveValue::UnitTypes) value->unit);
229
cssValue
= CSSPrimitiveValue::create(value->fValue, CSSPrimitiveValue::CSS_NUMBER);
232
cssValue
= CSSPrimitiveValue::create(value->fValue, CSSPrimitiveValue::CSS_NUMBER)
[
all
...]
CSSStyleDeclaration.h
36
class
CSSValue
;
54
virtual PassRefPtr<
CSSValue
> getPropertyCSSValue(const String& propertyName) = 0;
72
// The
CSSValue
returned by this function should not be exposed to the web as it may be used by multiple documents at the same time.
73
virtual PassRefPtr<
CSSValue
> getPropertyCSSValueInternal(CSSPropertyID) = 0;
79
virtual bool cssPropertyMatches(CSSPropertyID, const
CSSValue
*) const = 0;
CSSPrimitiveValueMappings.h
56
:
CSSValue
(PrimitiveClass)
72
:
CSSValue
(PrimitiveClass)
107
:
CSSValue
(PrimitiveClass)
123
:
CSSValue
(PrimitiveClass)
142
:
CSSValue
(PrimitiveClass)
181
:
CSSValue
(PrimitiveClass)
207
:
CSSValue
(PrimitiveClass)
242
:
CSSValue
(PrimitiveClass)
273
:
CSSValue
(PrimitiveClass)
326
:
CSSValue
(PrimitiveClass
[
all
...]
CSSFontFaceSrcValue.h
29
#include "core/css/
CSSValue
.h"
40
class CSSFontFaceSrcValue : public
CSSValue
{
78
:
CSSValue
(FontFaceSrcClass)
CSSVariableValue.h
34
#include "core/css/
CSSValue
.h"
38
class CSSVariableValue : public
CSSValue
{
52
:
CSSValue
(VariableClass)
CSSCalculationValue.h
36
#include "core/css/
CSSValue
.h"
93
class CSSCalcValue : public
CSSValue
{
123
:
CSSValue
(CalculationClass)
129
:
CSSValue
(CalculationClass)
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
ElementStyleResources.h
38
class
CSSValue
;
44
typedef HashMap<CSSPropertyID, RefPtr<
CSSValue
> > PendingImagePropertyMap;
53
PassRefPtr<StyleImage> styleImage(const TextLinkColors&, Color currentColor, CSSPropertyID,
CSSValue
*);
FilterOperationResolver.h
31
class
CSSValue
;
37
static bool createFilterOperations(
CSSValue
* inValue, const CSSToLengthConversionData&, FilterOperations& outOperations, StyleResolverState&);
FontBuilder.h
33
class
CSSValue
;
56
void setFontFamilyValue(
CSSValue
*, float effectiveZoom);
60
void setFontSizeValue(
CSSValue
*, RenderStyle* parentStyle, const RenderStyle* rootElementStyle, float effectiveZoom);
68
void setFontVariantLigaturesValue(
CSSValue
*);
71
void setFeatureSettingsValue(
CSSValue
*);
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
StyleGeneratedImage.h
31
class
CSSValue
;
43
virtual PassRefPtr<
CSSValue
>
cssValue
() const;
StylePendingShader.h
34
#include "core/css/
CSSValue
.h"
46
virtual PassRefPtr<
CSSValue
>
cssValue
() const { return m_value; }
StyleShader.h
38
class
CSSValue
;
47
virtual PassRefPtr<
CSSValue
>
cssValue
() const = 0;
StylePendingImage.h
44
static PassRefPtr<StylePendingImage> create(
CSSValue
* value) { return adoptRef(new StylePendingImage(value)); }
48
virtual PassRefPtr<
CSSValue
>
cssValue
() const { return m_value; }
70
StylePendingImage(
CSSValue
* value)
76
CSSValue
* m_value; // Not retained; it owns us.
StyleImage.h
27
#include "core/css/
CSSValue
.h"
38
class
CSSValue
;
52
virtual PassRefPtr<
CSSValue
>
cssValue
() const = 0;
/external/chromium_org/third_party/WebKit/Source/core/animation/
AnimatableUnknown.h
44
static PassRefPtr<AnimatableUnknown> create(PassRefPtr<
CSSValue
> value)
53
PassRefPtr<
CSSValue
> toCSSValue() const { return m_value; }
63
explicit AnimatableUnknown(PassRefPtr<
CSSValue
> value)
71
const RefPtr<
CSSValue
> m_value;
/external/chromium_org/third_party/WebKit/Source/core/editing/
EditingStyle.cpp
147
static bool isTransparentColorValue(
CSSValue
*);
150
static PassRefPtr<
CSSValue
> backgroundColorInEffect(Node*);
198
RefPtr<
CSSValue
> value = style->getPropertyCSSValue(m_propertyID);
234
RefPtr<
CSSValue
> styleValue = style->getPropertyCSSValue(CSSPropertyWebkitTextDecorationsInEffect);
255
virtual PassRefPtr<
CSSValue
> attributeValueAsCSSValue(Element*) const;
278
RefPtr<
CSSValue
> value = attributeValueAsCSSValue(element);
279
RefPtr<
CSSValue
> styleValue = style->getPropertyCSSValue(m_propertyID);
286
if (RefPtr<
CSSValue
> value = attributeValueAsCSSValue(element))
290
PassRefPtr<
CSSValue
> HTMLAttributeEquivalent::attributeValueAsCSSValue(Element* element) const
308
virtual PassRefPtr<
CSSValue
> attributeValueAsCSSValue(Element*) const
[
all
...]
Completed in 295 milliseconds
1
2
3
4
5
6
7