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

1 2 3 4 5

  /external/chromium_org/third_party/WebKit/Source/build/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;
75 const StylePropertyShorthand& parsingShorthandForProperty(CSSPropertyID);
78 const StylePropertyShorthand& shorthandForProperty(CSSPropertyID);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/parser/
CSSPropertyParser.h 77 bool parseValue(CSSPropertyID, bool important);
86 bool parseViewportProperty(CSSPropertyID propId, bool important);
87 bool parseViewportShorthand(CSSPropertyID propId, CSSPropertyID first, CSSPropertyID second, bool important);
91 void addPropertyWithPrefixingVariant(CSSPropertyID, PassRefPtrWillBeRawPtr<CSSValue>, bool important, bool implicit = false);
92 void addProperty(CSSPropertyID, PassRefPtrWillBeRawPtr<CSSValue>, bool important, bool implicit = false);
95 void addExpandedPropertyForValue(CSSPropertyID propId, PassRefPtrWillBeRawPtr<CSSValue>, bool);
99 bool parseShorthand(CSSPropertyID, const StylePropertyShorthand&, bool important);
100 bool parse4Values(CSSPropertyID, const CSSPropertyID* properties, bool important)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
RuntimeCSSEnabled.cpp 40 static void setCSSPropertiesEnabled(CSSPropertyID* properties, size_t length, bool featureFlag)
48 CSSPropertyID exclusionProperties[] = {
53 CSSPropertyID shapeProperties[] = {
59 CSSPropertyID css3TextDecorationProperties[] = {
66 CSSPropertyID css3TextProperties[] = {
71 CSSPropertyID cssGridLayoutProperties[] = {
90 CSSPropertyID cssObjectFitPositionProperties[] = {
96 CSSPropertyID animationProperties[] = {
109 CSSPropertyID transformProperties[] = {
142 size_t indexForProperty(CSSPropertyID propertyId
    [all...]
StylePropertySet.h 67 CSSPropertyID id() const { return static_cast<CSSPropertyID>(propertyMetadata().m_propertyID); }
68 CSSPropertyID shorthandID() const { return propertyMetadata().shorthandID(); }
96 int findPropertyIndex(CSSPropertyID) const;
98 PassRefPtrWillBeRawPtr<CSSValue> getPropertyCSSValue(CSSPropertyID) const;
99 String getPropertyValue(CSSPropertyID) const;
101 bool propertyIsImportant(CSSPropertyID) const;
102 CSSPropertyID getPropertyShorthand(CSSPropertyID) const;
103 bool isPropertyImplicit(CSSPropertyID) const
    [all...]
CSSComputedStyleDeclaration.h 63 String getPropertyValue(CSSPropertyID) const;
64 bool getPropertyPriority(CSSPropertyID) const;
68 PassRefPtrWillBeRawPtr<CSSValue> getPropertyCSSValue(CSSPropertyID, EUpdateLayout = UpdateLayout) const;
71 PassRefPtrWillBeRawPtr<CSSValue> getSVGPropertyCSSValue(CSSPropertyID, EUpdateLayout) const;
73 PassRefPtrWillBeRawPtr<MutableStylePropertySet> copyPropertiesInSet(const Vector<CSSPropertyID>&) const;
91 PassRefPtr<RenderStyle> computeRenderStyle(CSSPropertyID) const;
101 virtual PassRefPtrWillBeRawPtr<CSSValue> getPropertyCSSValueInternal(CSSPropertyID) OVERRIDE;
102 virtual String getPropertyValueInternal(CSSPropertyID) OVERRIDE;
103 virtual void setPropertyInternal(CSSPropertyID, const String& value, bool important, ExceptionState&) OVERRIDE;
105 virtual bool cssPropertyMatches(CSSPropertyID, const CSSValue*) const OVERRIDE
    [all...]
PropertySetCSSStyleDeclaration.cpp 177 CSSPropertyID propertyID = cssPropertyID(propertyName);
185 CSSPropertyID propertyID = cssPropertyID(propertyName);
193 CSSPropertyID propertyID = cssPropertyID(propertyName);
201 CSSPropertyID propertyID = cssPropertyID(propertyName);
204 CSSPropertyID shorthandID = propertySet().getPropertyShorthand(propertyID);
212 CSSPropertyID propertyID = cssPropertyID(propertyName)
    [all...]
CSSProperty.h 35 StylePropertyMetadata(CSSPropertyID propertyID, bool isSetFromShorthand, int indexInShorthandsVector, bool important, bool implicit, bool inherited)
45 CSSPropertyID shorthandID() const;
58 CSSProperty(CSSPropertyID propertyID, PassRefPtrWillBeRawPtr<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);
82 static bool isAffectedByAllProperty(CSSPropertyID);
    [all...]
StylePropertySet.cpp 103 int ImmutableStylePropertySet::findPropertyIndex(CSSPropertyID propertyID) const
139 String StylePropertySet::getPropertyValue(CSSPropertyID propertyID) const
148 PassRefPtrWillBeRawPtr<CSSValue> StylePropertySet::getPropertyCSSValue(CSSPropertyID propertyID) const
174 bool MutableStylePropertySet::removeShorthandProperty(CSSPropertyID propertyID)
182 CSSPropertyID prefixingVariant = prefixingVariantForPropertyId(propertyID);
190 bool MutableStylePropertySet::removeProperty(CSSPropertyID propertyID, String* returnText)
218 void MutableStylePropertySet::removePrefixedOrUnprefixedProperty(CSSPropertyID propertyID)
226 bool StylePropertySet::propertyIsImportant(CSSPropertyID propertyID) const
243 CSSPropertyID StylePropertySet::getPropertyShorthand(CSSPropertyID propertyID) cons
    [all...]
RuntimeCSSEnabled.h 45 static bool isCSSPropertyEnabled(CSSPropertyID);
46 static void setCSSPropertyEnabled(CSSPropertyID, bool);
48 static void filterEnabledCSSPropertiesIntoVector(const CSSPropertyID*, size_t length, Vector<CSSPropertyID>&);
CSSStyleDeclaration.h 61 // CSSPropertyID versions of the CSSOM functions to support bindings and editing.
64 virtual PassRefPtrWillBeRawPtr<CSSValue> getPropertyCSSValueInternal(CSSPropertyID) = 0;
65 virtual String getPropertyValueInternal(CSSPropertyID) = 0;
66 virtual void setPropertyInternal(CSSPropertyID, const String& value, bool important, ExceptionState&) = 0;
70 virtual bool cssPropertyMatches(CSSPropertyID, const CSSValue*) const = 0;
StylePropertySerializer.h 37 String getPropertyValue(CSSPropertyID) const;
47 void appendFontLonghandValueIfExplicit(CSSPropertyID, StringBuilder& result, String& value) const;
49 String getPropertyText(CSSPropertyID, const String& value, bool isImportant, bool isNotFirstDecl) const;
StylePropertyShorthandCustom.cpp 29 static const CSSPropertyID borderShorthandProperties[] = { CSSPropertyBorderWidth, CSSPropertyBorderStyle, CSSPropertyBorderColor };
50 static const CSSPropertyID animationPropertiesForParsing[] = {
75 static const CSSPropertyID animationPropertiesForParsing[] = {
92 static const CSSPropertyID transitionProperties[] = {
104 static const CSSPropertyID webkitTransitionProperties[] = {
115 const StylePropertyShorthand& parsingShorthandForProperty(CSSPropertyID propertyID)
133 bool isExpandedShorthand(CSSPropertyID id)
145 bool isExpandedShorthandForAll(CSSPropertyID propertyId)
161 unsigned indexOfShorthandForLonghand(CSSPropertyID shorthandID, const Vector<StylePropertyShorthand, 4>& shorthands)
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
CSSToStyleMap.h 53 void mapFillAttachment(CSSPropertyID, FillLayer*, CSSValue*) const;
54 void mapFillClip(CSSPropertyID, FillLayer*, CSSValue*) const;
55 void mapFillComposite(CSSPropertyID, FillLayer*, CSSValue*) const;
56 void mapFillBlendMode(CSSPropertyID, FillLayer*, CSSValue*) const;
57 void mapFillOrigin(CSSPropertyID, FillLayer*, CSSValue*) const;
58 void mapFillImage(CSSPropertyID, FillLayer*, CSSValue*);
59 void mapFillRepeatX(CSSPropertyID, FillLayer*, CSSValue*) const;
60 void mapFillRepeatY(CSSPropertyID, FillLayer*, CSSValue*) const;
61 void mapFillSize(CSSPropertyID, FillLayer*, CSSValue*) const;
62 void mapFillXPosition(CSSPropertyID, FillLayer*, CSSValue*) const
    [all...]
ElementStyleResources.h 45 typedef WillBeHeapHashMap<CSSPropertyID, RefPtrWillBeMember<CSSValue> > PendingImagePropertyMap;
55 PassRefPtr<StyleImage> styleImage(Document&, const TextLinkColors&, Color currentColor, CSSPropertyID, CSSValue*);
57 PassRefPtr<StyleImage> generatedOrPendingFromValue(CSSPropertyID, CSSImageGeneratorValue*);
58 PassRefPtr<StyleImage> cachedOrPendingFromValue(Document&, CSSPropertyID, CSSImageValue*);
59 PassRefPtr<StyleImage> setOrPendingFromValue(CSSPropertyID, CSSImageSetValue*);
60 PassRefPtr<StyleImage> cursorOrPendingFromValue(CSSPropertyID, CSSCursorImageValue*);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
KeyframeList.h 48 void addProperty(CSSPropertyID prop) { m_properties.add(prop); }
49 bool containsProperty(CSSPropertyID prop) const { return m_properties.contains(prop); }
50 const HashSet<CSSPropertyID>& properties() const { return m_properties; }
60 HashSet<CSSPropertyID> m_properties; // The properties specified in this keyframe.
78 void addProperty(CSSPropertyID prop) { m_properties.add(prop); }
79 bool containsProperty(CSSPropertyID prop) const { return m_properties.contains(prop); }
80 HashSet<CSSPropertyID>::const_iterator beginProperties() const { return m_properties.begin(); }
81 HashSet<CSSPropertyID>::const_iterator endProperties() const { return m_properties.end(); }
91 HashSet<CSSPropertyID> m_properties; // The properties being animated.
  /external/chromium_org/third_party/WebKit/Source/core/animation/
AnimationHelpers.h 13 static inline CSSPropertyID camelCaseCSSPropertyNameToID(const String& propertyName)
27 CSSPropertyID id = cssPropertyID(builder.toString());
AnimatableValueKeyframe.h 19 void setPropertyValue(CSSPropertyID property, PassRefPtrWillBeRawPtr<AnimatableValue> value)
23 void clearPropertyValue(CSSPropertyID property) { m_propertyValues.remove(property); }
24 AnimatableValue* propertyValue(CSSPropertyID property) const
41 virtual PassRefPtrWillBeRawPtr<Interpolation> createInterpolation(CSSPropertyID, WebCore::Keyframe::PropertySpecificKeyframe* end, Element*) const OVERRIDE FINAL;
60 virtual PassOwnPtrWillBeRawPtr<Keyframe::PropertySpecificKeyframe> createPropertySpecificKeyframe(CSSPropertyID) const OVERRIDE;
64 typedef HashMap<CSSPropertyID, RefPtrWillBeMember<AnimatableValue> > PropertyValueMap;
StringKeyframe.h 21 void setPropertyValue(CSSPropertyID, const String& value, StyleSheetContents*);
22 void clearPropertyValue(CSSPropertyID property) { m_propertySet->removeProperty(property); }
23 CSSValue* propertyValue(CSSPropertyID property) const
43 virtual PassRefPtrWillBeRawPtr<Interpolation> createInterpolation(CSSPropertyID, WebCore::Keyframe::PropertySpecificKeyframe* end, Element*) const OVERRIDE FINAL;
65 virtual PassOwnPtrWillBeRawPtr<Keyframe::PropertySpecificKeyframe> createPropertySpecificKeyframe(CSSPropertyID) const OVERRIDE;
  /external/chromium_org/third_party/WebKit/Source/core/animation/css/
CSSAnimations.h 76 void startTransition(CSSPropertyID id, CSSPropertyID eventId, const AnimatableValue* from, const AnimatableValue* to, PassRefPtrWillBeRawPtr<InertAnimation> animation)
86 bool isCancelledTransition(CSSPropertyID id) const { return m_cancelledTransitions.contains(id); }
87 void cancelTransition(CSSPropertyID id) { m_cancelledTransitions.add(id); }
115 CSSPropertyID id;
116 CSSPropertyID eventId;
121 typedef WillBeHeapHashMap<CSSPropertyID, NewTransition> NewTransitionMap;
123 const HashSet<CSSPropertyID>& cancelledTransitions() const { return m_cancelledTransitions; }
125 void adoptActiveInterpolationsForAnimations(WillBeHeapHashMap<CSSPropertyID, RefPtrWillBeMember<Interpolation> >& newMap) { newMap.swap(m_activeInterpolationsForAnimations); }
126 void adoptActiveInterpolationsForTransitions(WillBeHeapHashMap<CSSPropertyID, RefPtrWillBeMember<Interpolation> >& newMap) { newMap.swap(m_activeInterpolationsForTransitions); (…)
    [all...]
CSSPropertyEquality.h 16 static bool propertiesEqual(CSSPropertyID, const RenderStyle&, const RenderStyle&);
  /external/chromium_org/third_party/WebKit/Source/build/scripts/
make_css_property_names.py 31 enum CSSPropertyID {
41 const char* getPropertyName(CSSPropertyID);
42 const WTF::AtomicString& getPropertyNameAtomicString(CSSPropertyID);
43 WTF::String getPropertyNameString(CSSPropertyID);
44 WTF::String getJSPropertyName(CSSPropertyID);
45 bool isInternalProperty(CSSPropertyID id);
47 inline CSSPropertyID convertToCSSPropertyID(int value)
50 return static_cast<CSSPropertyID>(value);
56 template<> struct DefaultHash<WebCore::CSSPropertyID> { typedef IntHash<unsigned> Hash; };
57 template<> struct HashTraits<WebCore::CSSPropertyID> : GenericHashTraits<WebCore::CSSPropertyID>
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/animation/interpolation/
DefaultStyleInterpolation.h 15 static PassRefPtrWillBeRawPtr<DefaultStyleInterpolation> create(CSSValue* start, CSSValue* end, CSSPropertyID id)
33 DefaultStyleInterpolation(CSSValue* start, CSSValue* end, CSSPropertyID id)
LengthStyleInterpolation.h 15 static PassRefPtrWillBeRawPtr<LengthStyleInterpolation> create(CSSValue* start, CSSValue* end, CSSPropertyID id, ValueRange range)
27 LengthStyleInterpolation(PassOwnPtrWillBeRawPtr<InterpolableValue> start, PassOwnPtrWillBeRawPtr<InterpolableValue> end, CSSPropertyID id, ValueRange range)
StyleInterpolation.h 27 CSSPropertyID id() const { return m_id; }
35 CSSPropertyID m_id;
37 StyleInterpolation(PassOwnPtrWillBeRawPtr<InterpolableValue> start, PassOwnPtrWillBeRawPtr<InterpolableValue> end, CSSPropertyID id)
  /external/chromium_org/third_party/WebKit/Source/core/editing/
RemoveCSSPropertyCommand.h 38 static PassRefPtrWillBeRawPtr<RemoveCSSPropertyCommand> create(Document& document, PassRefPtrWillBeRawPtr<Element> element, CSSPropertyID property)
46 RemoveCSSPropertyCommand(Document&, PassRefPtrWillBeRawPtr<Element>, CSSPropertyID);
53 CSSPropertyID m_property;

Completed in 161 milliseconds

1 2 3 4 5