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

  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
AnimatedStyleBuilder.h 39 class StyleResolverState;
43 static void applyProperty(CSSPropertyID, StyleResolverState&, const AnimatableValue*);
StyleBuilder.h 41 class StyleResolverState;
45 static void applyProperty(CSSPropertyID, StyleResolverState&, CSSValue*);
50 static void oldApplyProperty(CSSPropertyID, StyleResolverState&, CSSValue*, bool isInitial, bool isInherit);
53 static bool applyProperty(CSSPropertyID, StyleResolverState&, CSSValue*, bool isInitial, bool isInherit);
StyleBuilderConverter.h 31 #include "core/css/resolver/StyleResolverState.h"
43 static String convertFragmentIdentifier(StyleResolverState&, CSSValue*);
44 template <typename T> static T convertComputedLength(StyleResolverState&, CSSValue*);
45 template <typename T> static T convertLineWidth(StyleResolverState&, CSSValue*);
46 static Length convertLength(StyleResolverState&, CSSValue*);
47 static Length convertLengthOrAuto(StyleResolverState&, CSSValue*);
48 static Length convertLengthSizing(StyleResolverState&, CSSValue*);
49 static Length convertLengthMaxSizing(StyleResolverState&, CSSValue*);
50 static LengthPoint convertLengthPoint(StyleResolverState&, CSSValue*);
51 static float convertNumberOrPercentage(StyleResolverState&, CSSValue*)
    [all...]
FilterOperationResolver.h 25 #include "core/css/resolver/StyleResolverState.h"
37 static bool createFilterOperations(CSSValue* inValue, const CSSToLengthConversionData&, FilterOperations& outOperations, StyleResolverState&);
StyleResolverState.cpp 23 #include "core/css/resolver/StyleResolverState.h"
31 StyleResolverState::StyleResolverState(Document& document, Element* element, RenderStyle* parentStyle, RenderRegion* regionForStyling)
MatchedPropertiesCache.h 36 class StyleResolverState;
53 const CachedMatchedProperties* find(unsigned hash, const StyleResolverState&, const MatchResult&);
CSSToStyleMap.h 37 class StyleResolverState;
42 // given the current StyleResolverState can map
48 CSSToStyleMap(const StyleResolverState& state, ElementStyleResources& elementStyleResources) : m_state(state), m_elementStyleResources(elementStyleResources) { }
84 // FIXME: Consider passing a StyleResolverState (or ElementResolveState)
86 const StyleResolverState& m_state;
StyleBuilderConverter.cpp 37 String StyleBuilderConverter::convertFragmentIdentifier(StyleResolverState& state, CSSValue* value)
45 Length StyleBuilderConverter::convertLength(StyleResolverState& state, CSSValue* value)
54 Length StyleBuilderConverter::convertLengthOrAuto(StyleResolverState& state, CSSValue* value)
63 Length StyleBuilderConverter::convertLengthSizing(StyleResolverState& state, CSSValue* value)
89 Length StyleBuilderConverter::convertLengthMaxSizing(StyleResolverState& state, CSSValue* value)
97 LengthPoint StyleBuilderConverter::convertLengthPoint(StyleResolverState& state, CSSValue* value)
106 float StyleBuilderConverter::convertNumberOrPercentage(StyleResolverState& state, CSSValue* value)
115 LengthSize StyleBuilderConverter::convertRadius(StyleResolverState& state, CSSValue* value)
129 PassRefPtr<ShadowList> StyleBuilderConverter::convertShadow(StyleResolverState& state, CSSValue* value)
159 float StyleBuilderConverter::convertSpacing(StyleResolverState& state, CSSValue* value
    [all...]
StyleBuilderCustom.cpp 89 static Length clipConvertToLength(StyleResolverState& state, CSSPrimitiveValue* value)
94 void StyleBuilderFunctions::applyInitialCSSPropertyClip(StyleResolverState& state)
100 void StyleBuilderFunctions::applyInheritCSSPropertyClip(StyleResolverState& state)
109 void StyleBuilderFunctions::applyValueCSSPropertyClip(StyleResolverState& state, CSSValue* value)
129 void StyleBuilderFunctions::applyInitialCSSPropertyCursor(StyleResolverState& state)
135 void StyleBuilderFunctions::applyInheritCSSPropertyCursor(StyleResolverState& state)
141 void StyleBuilderFunctions::applyValueCSSPropertyCursor(StyleResolverState& state, CSSValue* value)
168 void StyleBuilderFunctions::applyValueCSSPropertyDirection(StyleResolverState& state, CSSValue* value)
176 static inline bool isValidDisplayValue(StyleResolverState& state, EDisplay displayPropertyValue)
183 void StyleBuilderFunctions::applyInheritCSSPropertyDisplay(StyleResolverState& state
    [all...]
StyleResolver.h 39 #include "core/css/resolver/StyleResolverState.h"
244 void updateFont(StyleResolverState&);
252 void matchAllRules(StyleResolverState&, ElementRuleCollector&, bool includeSMILProperties);
262 void applyMatchedProperties(StyleResolverState&, const MatchResult&);
263 void applyAnimatedProperties(StyleResolverState&, Element* animatingElement);
274 void applyMatchedProperties(StyleResolverState&, const MatchResult&, bool important, int startIndex, int endIndex, bool inheritedOnly);
276 void applyProperties(StyleResolverState&, const StylePropertySet* properties, StyleRule*, bool isImportant, bool inheritedOnly, PropertyWhitelistType = PropertyWhitelistNone);
278 void applyAnimatedProperties(StyleResolverState&, const AnimationEffect::CompositableValueMap&);
289 bool pseudoStyleForElementInternal(Element&, const PseudoStyleRequest&, RenderStyle* parentStyle, StyleResolverState&);
StyleResolverState.h 45 class StyleResolverState {
46 WTF_MAKE_NONCOPYABLE(StyleResolverState);
48 StyleResolverState(Document&, Element*, RenderStyle* parentStyle = 0, RenderRegion* regionForStyling = 0);
85 // We need to move this data off of StyleResolverState and closer to the
105 // FIXME: Once styleImage can be made to not take a StyleResolverState
118 // and separate it from StyleResolverState.
153 // FIXME: Regions should not need special state on StyleResolverState
FilterOperationResolver.cpp 123 static PassRefPtr<CustomFilterParameter> parseCustomFilterTransformParameter(const String& name, CSSValueList* values, StyleResolverState& state)
132 static PassRefPtr<CustomFilterParameter> parseCustomFilterParameter(const String& name, CSSValue* parameterValue, StyleResolverState& state)
172 static bool parseCustomFilterParameterList(CSSValue* parametersValue, CustomFilterParameterList& parameterList, StyleResolverState& state)
216 StyleResolverState& state)
231 static PassRefPtr<CustomFilterOperation> createCustomFilterOperationWithInlineSyntax(CSSFilterValue* filterValue, StyleResolverState& state)
341 static PassRefPtr<CustomFilterOperation> createCustomFilterOperation(CSSFilterValue* filterValue, StyleResolverState& state)
349 bool FilterOperationResolver::createFilterOperations(CSSValue* inValue, const CSSToLengthConversionData& unadjustedConversionData, FilterOperations& outOperations, StyleResolverState& state)
AnimatedStyleBuilder.cpp 57 #include "core/css/resolver/StyleResolverState.h"
66 Length animatableValueToLength(const AnimatableValue* value, const StyleResolverState& state, NumberRange range = AllValues)
75 BorderImageLength animatableValueToBorderImageLength(const AnimatableValue* value, const StyleResolverState& state)
92 LengthBox animatableValueToLengthBox(const AnimatableValue* value, const StyleResolverState& state, NumberRange range = AllValues)
102 BorderImageLengthBox animatableValueToBorderImageLengthBox(const AnimatableValue* value, const StyleResolverState& state)
112 LengthPoint animatableValueToLengthPoint(const AnimatableValue* value, const StyleResolverState& state, NumberRange range = AllValues)
120 LengthSize animatableValueToLengthSize(const AnimatableValue* value, const StyleResolverState& state, NumberRange range)
129 void setFillSize(FillLayer* fillLayer, const AnimatableValue* value, const StyleResolverState& state)
146 void setOnFillLayers(FillLayer* fillLayer, const AnimatableValue* value, StyleResolverState& state)
231 void AnimatedStyleBuilder::applyProperty(CSSPropertyID property, StyleResolverState& state, const AnimatableValue* value
    [all...]
StyleResolver.cpp 93 void setAnimationUpdateIfNeeded(StyleResolverState& state, Element& element)
549 void StyleResolver::matchAllRules(StyleResolverState& state, ElementRuleCollector& collector, bool includeSMILProperties)
661 StyleResolverState state(document(), element, defaultParent, regionForStyling);
746 StyleResolverState state(document(), element, parentStyle);
    [all...]
MatchedPropertiesCache.cpp 33 #include "core/css/resolver/StyleResolverState.h"
62 const CachedMatchedProperties* MatchedPropertiesCache::find(unsigned hash, const StyleResolverState& styleResolverState, const MatchResult& matchResult)
75 if (cacheItem->renderStyle->insideLink() != styleResolverState.style()->insideLink())
  /external/chromium_org/third_party/WebKit/Source/core/css/
BasicShapeFunctions.h 40 class StyleResolverState;
44 PassRefPtr<BasicShape> basicShapeForValue(const StyleResolverState&, const CSSBasicShape*);
BasicShapeFunctions.cpp 36 #include "core/css/resolver/StyleResolverState.h"
117 static Length convertToLength(const StyleResolverState& state, CSSPrimitiveValue* value)
122 PassRefPtr<BasicShape> basicShapeForValue(const StyleResolverState& state, const CSSBasicShape* basicShapeValue)
  /external/chromium_org/third_party/WebKit/Source/core/
webcore_remaining.target.darwin-arm.mk 212 third_party/WebKit/Source/core/css/resolver/StyleResolverState.cpp \
    [all...]
webcore_remaining.target.darwin-mips.mk 212 third_party/WebKit/Source/core/css/resolver/StyleResolverState.cpp \
    [all...]
webcore_remaining.target.darwin-x86.mk 212 third_party/WebKit/Source/core/css/resolver/StyleResolverState.cpp \
    [all...]
webcore_remaining.target.linux-arm.mk 212 third_party/WebKit/Source/core/css/resolver/StyleResolverState.cpp \
    [all...]
webcore_remaining.target.linux-mips.mk 212 third_party/WebKit/Source/core/css/resolver/StyleResolverState.cpp \
    [all...]
webcore_remaining.target.linux-x86.mk 212 third_party/WebKit/Source/core/css/resolver/StyleResolverState.cpp \
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
RenderStyle.h 126 friend class StyleResolverState;
    [all...]

Completed in 129 milliseconds