HomeSort by relevance Sort by last modified time
    Searched full:csspropertyid (Results 1 - 25 of 96) sorted by null

1 2 3 4

  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSToStyleMap.h 49 void mapFillAttachment(CSSPropertyID, FillLayer*, CSSValue*) const;
50 void mapFillClip(CSSPropertyID, FillLayer*, CSSValue*) const;
51 void mapFillComposite(CSSPropertyID, FillLayer*, CSSValue*) const;
52 void mapFillBlendMode(CSSPropertyID, FillLayer*, CSSValue*) const;
53 void mapFillOrigin(CSSPropertyID, FillLayer*, CSSValue*) const;
54 void mapFillImage(CSSPropertyID, FillLayer*, CSSValue*);
55 void mapFillRepeatX(CSSPropertyID, FillLayer*, CSSValue*) const;
56 void mapFillRepeatY(CSSPropertyID, FillLayer*, CSSValue*) const;
57 void mapFillSize(CSSPropertyID, FillLayer*, CSSValue*) const;
58 void mapFillXPosition(CSSPropertyID, FillLayer*, CSSValue*) const
    [all...]
StylePropertySet.h 59 CSSPropertyID id() const { return static_cast<CSSPropertyID>(propertyMetadata().m_propertyID); }
60 CSSPropertyID shorthandID() const { return propertyMetadata().shorthandID(); }
88 int findPropertyIndex(CSSPropertyID) const;
91 PassRefPtr<CSSValue> getPropertyCSSValue(CSSPropertyID) const;
92 String getPropertyValue(CSSPropertyID) const;
96 bool propertyIsImportant(CSSPropertyID) const;
97 CSSPropertyID getPropertyShorthand(CSSPropertyID) const;
98 bool isPropertyImplicit(CSSPropertyID) const
    [all...]
CSSComputedStyleDeclaration.h 63 PassRefPtr<CSSValue> getPropertyCSSValue(CSSPropertyID) const;
64 String getPropertyValue(CSSPropertyID) const;
65 bool getPropertyPriority(CSSPropertyID) const;
69 PassRefPtr<CSSValue> getPropertyCSSValue(CSSPropertyID, EUpdateLayout) const;
72 PassRefPtr<CSSValue> getSVGPropertyCSSValue(CSSPropertyID, EUpdateLayout) const;
74 PassRefPtr<MutableStylePropertySet> copyPropertiesInSet(const Vector<CSSPropertyID>&) const;
90 PassRefPtr<RenderStyle> computeRenderStyle(CSSPropertyID) const;
100 virtual PassRefPtr<CSSValue> getPropertyCSSValueInternal(CSSPropertyID);
101 virtual String getPropertyValueInternal(CSSPropertyID);
102 virtual void setPropertyInternal(CSSPropertyID, const String& value, bool important, ExceptionState&)
    [all...]
CSSProperty.h 34 StylePropertyMetadata(CSSPropertyID propertyID, bool isSetFromShorthand, int indexInShorthandsVector, bool important, bool implicit, bool inherited)
44 CSSPropertyID shorthandID() const;
56 CSSProperty(CSSPropertyID propertyID, PassRefPtr<CSSValue> value, bool important = false, bool isSetFromShorthand = false, int indexInShorthandsVector = 0, bool implicit = false)
71 CSSPropertyID id() const { return static_cast<CSSPropertyID>(m_metadata.m_propertyID); }
73 CSSPropertyID shorthandID() const { return m_metadata.shorthandID(); };
80 static CSSPropertyID resolveDirectionAwareProperty(CSSPropertyID, TextDirection, WritingMode);
81 static bool isInheritedProperty(CSSPropertyID);
90 inline CSSPropertyID prefixingVariantForPropertyId(CSSPropertyID propId
    [all...]
CSSParser.h 104 static bool parseValue(MutableStylePropertySet*, CSSPropertyID, const String&, bool important, CSSParserMode, StyleSheetContents*);
113 void addPropertyWithPrefixingVariant(CSSPropertyID, PassRefPtr<CSSValue>, bool important, bool implicit = false);
114 void addProperty(CSSPropertyID, PassRefPtr<CSSValue>, bool important, bool implicit = false);
117 void addExpandedPropertyForValue(CSSPropertyID propId, PassRefPtr<CSSValue>, bool);
118 void setCurrentProperty(CSSPropertyID);
120 bool parseValue(CSSPropertyID, bool important);
121 bool parseShorthand(CSSPropertyID, const StylePropertyShorthand&, bool important);
122 bool parse4Values(CSSPropertyID, const CSSPropertyID* properties, bool important);
123 bool parseContent(CSSPropertyID, bool important)
    [all...]
StylePropertySet.cpp 109 String StylePropertySet::getPropertyValue(CSSPropertyID propertyID) const
118 PassRefPtr<CSSValue> StylePropertySet::getPropertyCSSValue(CSSPropertyID propertyID) const
146 bool MutableStylePropertySet::removeShorthandProperty(CSSPropertyID propertyID)
154 CSSPropertyID prefixingVariant = prefixingVariantForPropertyId(propertyID);
162 bool MutableStylePropertySet::removeProperty(CSSPropertyID propertyID, String* returnText)
190 void MutableStylePropertySet::removePrefixedOrUnprefixedProperty(CSSPropertyID propertyID)
198 bool StylePropertySet::propertyIsImportant(CSSPropertyID propertyID) const
215 CSSPropertyID StylePropertySet::getPropertyShorthand(CSSPropertyID propertyID) const
223 bool StylePropertySet::isPropertyImplicit(CSSPropertyID propertyID) cons
    [all...]
PropertySetCSSStyleDeclaration.cpp 167 CSSPropertyID propertyID = cssPropertyID(propertyName);
175 CSSPropertyID propertyID = cssPropertyID(propertyName);
183 CSSPropertyID propertyID = cssPropertyID(propertyName);
191 CSSPropertyID propertyID = cssPropertyID(propertyName);
194 CSSPropertyID shorthandID = m_propertySet->getPropertyShorthand(propertyID);
202 CSSPropertyID propertyID = cssPropertyID(propertyName)
    [all...]
CSSStyleDeclaration.h 68 // CSSPropertyID versions of the CSSOM functions to support bindings and editing.
71 virtual PassRefPtr<CSSValue> getPropertyCSSValueInternal(CSSPropertyID) = 0;
72 virtual String getPropertyValueInternal(CSSPropertyID) = 0;
73 virtual void setPropertyInternal(CSSPropertyID, const String& value, bool important, ExceptionState&) = 0;
77 virtual bool cssPropertyMatches(CSSPropertyID, const CSSValue*) const = 0;
PropertySetCSSStyleDeclaration.h 67 virtual PassRefPtr<CSSValue> getPropertyCSSValueInternal(CSSPropertyID) OVERRIDE;
68 virtual String getPropertyValueInternal(CSSPropertyID) OVERRIDE;
69 virtual void setPropertyInternal(CSSPropertyID, const String& value, bool important, ExceptionState&) OVERRIDE;
77 virtual bool cssPropertyMatches(CSSPropertyID, const CSSValue*) const OVERRIDE;
  /external/chromium_org/third_party/WebKit/Source/core/scripts/templates/
StylePropertyShorthand.h.tmpl 41 StylePropertyShorthand(CSSPropertyID id, const CSSPropertyID* properties, unsigned numProperties)
49 StylePropertyShorthand(CSSPropertyID id, const CSSPropertyID* properties, const StylePropertyShorthand** propertiesForInitialization, unsigned numProperties)
57 const CSSPropertyID* properties() const { return m_properties; }
60 CSSPropertyID id() const { return m_shorthandID; }
63 const CSSPropertyID* m_properties;
66 CSSPropertyID m_shorthandID;
77 const StylePropertyShorthand& shorthandForProperty(CSSPropertyID);
80 const Vector<StylePropertyShorthand> matchingShorthandsForLonghand(CSSPropertyID);
    [all...]
StylePropertyShorthand.cpp.tmpl 35 static const CSSPropertyID {{ property.camel_case_name }}Properties[] = {
46 const StylePropertyShorthand& shorthandForProperty(CSSPropertyID propertyID)
66 typedef HashMap<CSSPropertyID, Vector<StylePropertyShorthand> > longhandsMap;
67 const Vector<StylePropertyShorthand> matchingShorthandsForLonghand(CSSPropertyID propertyID)
  /external/chromium_org/third_party/WebKit/Source/core/page/
RuntimeCSSEnabled.cpp 40 static void setCSSPropertiesEnabled(CSSPropertyID* properties, size_t length, bool featureFlag)
48 CSSPropertyID regionProperites[] = {
57 CSSPropertyID exclusionProperties[] = {
66 CSSPropertyID css3TextDecorationProperties[] = {
72 CSSPropertyID css3TextProperties[] = {
76 CSSPropertyID cssGridLayoutProperties[] = {
110 size_t indexForProperty(CSSPropertyID propertyId)
117 bool RuntimeCSSEnabled::isCSSPropertyEnabled(CSSPropertyID propertyId)
122 void RuntimeCSSEnabled::setCSSPropertyEnabled(CSSPropertyID propertyId, bool enable)
127 void RuntimeCSSEnabled::filterEnabledCSSPropertiesIntoVector(const CSSPropertyID* properties, size_t propertyCount, Vector<CSSPropertyID>& outVector
    [all...]
RuntimeCSSEnabled.h 43 static bool isCSSPropertyEnabled(CSSPropertyID);
44 static void setCSSPropertyEnabled(CSSPropertyID, bool);
46 static void filterEnabledCSSPropertiesIntoVector(const CSSPropertyID*, size_t length, Vector<CSSPropertyID>&);
  /external/chromium_org/third_party/WebKit/Source/core/page/animation/
ImplicitAnimation.h 42 static PassRefPtr<ImplicitAnimation> create(const CSSAnimationData* animation, CSSPropertyID animatingProperty, RenderObject* renderer, CompositeAnimation* compositeAnimation, RenderStyle* fromStyle)
47 CSSPropertyID transitionProperty() const { return m_transitionProperty; }
48 CSSPropertyID animatingProperty() const { return m_animatingProperty; }
62 virtual bool affectsProperty(CSSPropertyID) const;
66 bool isTargetPropertyEqual(CSSPropertyID, const RenderStyle*);
68 void blendPropertyValueInStyle(CSSPropertyID, RenderStyle*);
83 ImplicitAnimation(const CSSAnimationData*, CSSPropertyID, RenderObject*, CompositeAnimation*, RenderStyle*);
86 CSSPropertyID m_transitionProperty; // Transition property as specified in the RenderStyle.
87 CSSPropertyID m_animatingProperty; // Specific property for this ImplicitAnimation
CSSPropertyAnimation.h 41 static bool animationOfPropertyIsAccelerated(CSSPropertyID);
42 static bool propertiesEqual(CSSPropertyID, const RenderStyle* a, const RenderStyle* b);
43 static CSSPropertyID getPropertyAtIndex(int, bool& isShorthand);
47 static bool blendProperties(const AnimationBase*, CSSPropertyID, RenderStyle* dst, const RenderStyle* a, const RenderStyle* b, double progress);
CompositeAnimation.h 70 bool isAnimatingProperty(CSSPropertyID, bool acceleratedOnly, bool isRunningNow) const;
72 PassRefPtr<KeyframeAnimation> getAnimationForProperty(CSSPropertyID) const;
74 void overrideImplicitAnimations(CSSPropertyID);
75 void resumeOverriddenImplicitAnimations(CSSPropertyID);
AnimationController.h 62 bool isRunningAnimationOnRenderer(RenderObject*, CSSPropertyID, bool isRunningNow = true) const;
64 bool isRunningAcceleratedAnimationOnRenderer(RenderObject*, CSSPropertyID, bool isRunningNow = true) const;
76 static bool supportsAcceleratedAnimationOfProperty(CSSPropertyID);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
KeyframeList.h 50 void addProperty(CSSPropertyID prop) { m_properties.add(prop); }
51 bool containsProperty(CSSPropertyID prop) const { return m_properties.contains(prop); }
52 const HashSet<CSSPropertyID>& properties() const { return m_properties; }
62 HashSet<CSSPropertyID> m_properties; // The properties specified in this keyframe.
83 void addProperty(CSSPropertyID prop) { m_properties.add(prop); }
84 bool containsProperty(CSSPropertyID prop) const { return m_properties.contains(prop); }
85 HashSet<CSSPropertyID>::const_iterator beginProperties() const { return m_properties.begin(); }
86 HashSet<CSSPropertyID>::const_iterator endProperties() const { return m_properties.end(); }
96 HashSet<CSSPropertyID> m_properties; // The properties being animated.
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
ElementStyleResources.h 44 typedef HashMap<CSSPropertyID, RefPtr<CSSValue> > PendingImagePropertyMap;
56 PassRefPtr<StyleImage> styleImage(const TextLinkColors&, CSSPropertyID, CSSValue*);
58 PassRefPtr<StyleImage> generatedOrPendingFromValue(CSSPropertyID, CSSImageGeneratorValue*);
59 PassRefPtr<StyleImage> cachedOrPendingFromValue(CSSPropertyID, CSSImageValue*);
60 PassRefPtr<StyleImage> setOrPendingFromValue(CSSPropertyID, CSSImageSetValue*);
61 PassRefPtr<StyleImage> cursorOrPendingFromValue(CSSPropertyID, CSSCursorImageValue*);
StyleBuilder.h 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);
ElementStyleResources.cpp 41 PassRefPtr<StyleImage> ElementStyleResources::styleImage(const TextLinkColors& textLinkColors, CSSPropertyID property, CSSValue* value)
61 PassRefPtr<StyleImage> ElementStyleResources::generatedOrPendingFromValue(CSSPropertyID property, CSSImageGeneratorValue* value)
70 PassRefPtr<StyleImage> ElementStyleResources::setOrPendingFromValue(CSSPropertyID property, CSSImageSetValue* value)
78 PassRefPtr<StyleImage> ElementStyleResources::cachedOrPendingFromValue(CSSPropertyID property, CSSImageValue* value)
86 PassRefPtr<StyleImage> ElementStyleResources::cursorOrPendingFromValue(CSSPropertyID property, CSSCursorImageValue* value)
  /external/chromium_org/third_party/WebKit/Source/core/scripts/
make_css_property_names.py 30 enum CSSPropertyID {
41 const char* getPropertyName(CSSPropertyID);
42 const WTF::AtomicString& getPropertyNameAtomicString(CSSPropertyID);
43 WTF::String getPropertyNameString(CSSPropertyID);
44 WTF::String getJSPropertyName(CSSPropertyID);
46 inline CSSPropertyID convertToCSSPropertyID(int value)
49 return static_cast<CSSPropertyID>(value);
55 template<> struct DefaultHash<WebCore::CSSPropertyID> { typedef IntHash<unsigned> Hash; };
56 template<> struct HashTraits<WebCore::CSSPropertyID> : GenericHashTraits<WebCore::CSSPropertyID> {
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/editing/
RemoveCSSPropertyCommand.h 38 static PassRefPtr<RemoveCSSPropertyCommand> create(Document* document, PassRefPtr<Element> element, CSSPropertyID property)
44 RemoveCSSPropertyCommand(Document*, PassRefPtr<Element>, CSSPropertyID);
55 CSSPropertyID m_property;
EditingStyle.h 95 static PassRefPtr<EditingStyle> create(CSSPropertyID propertyID, const String& value)
119 bool conflictsWithInlineStyleOfElement(Element* element, EditingStyle* extractedStyle, Vector<CSSPropertyID>& conflictingProperties) const
155 EditingStyle(CSSPropertyID, const String& value);
158 void setProperty(CSSPropertyID, const String& value, bool important = false);
162 bool conflictsWithInlineStyleOfElement(Element*, EditingStyle* extractedStyle, Vector<CSSPropertyID>* conflictingProperties) const;
235 CSSValueID getIdentifierValue(CSSStyleDeclaration*, CSSPropertyID);
236 CSSValueID getIdentifierValue(StylePropertySet*, CSSPropertyID);
  /external/chromium_org/third_party/WebKit/Source/core/animation/
KeyframeAnimationEffect.h 45 typedef HashSet<CSSPropertyID> PropertySet;
62 void setPropertyValue(CSSPropertyID, const AnimatableValue*);
63 const AnimatableValue* propertyValue(CSSPropertyID) const;
69 typedef HashMap<CSSPropertyID, RefPtr<AnimatableValue> > PropertyValueMap;
123 typedef HashMap<CSSPropertyID, OwnPtr<PropertySpecificKeyframeGroup> > KeyframeGroupMap;

Completed in 236 milliseconds

1 2 3 4