Searched refs:propertyID (Results 1 - 25 of 27) sorted by relevance

12

/external/webkit/Source/WebCore/css/
H A DCSSComputedStyleDeclaration.h50 virtual PassRefPtr<CSSValue> getPropertyCSSValue(int propertyID) const;
51 virtual String getPropertyValue(int propertyID) const;
52 virtual bool getPropertyPriority(int propertyID) const;
53 virtual int getPropertyShorthand(int /*propertyID*/) const { return -1; }
54 virtual bool isPropertyImplicit(int /*propertyID*/) const { return false; }
59 PassRefPtr<CSSValue> getPropertyCSSValue(int propertyID, EUpdateLayout) const;
63 PassRefPtr<CSSValue> getSVGPropertyCSSValue(int propertyID, EUpdateLayout) const;
74 virtual String removeProperty(int propertyID, ExceptionCode&);
H A DCSSStyleDeclaration.h56 virtual PassRefPtr<CSSValue> getPropertyCSSValue(int propertyID) const = 0;
57 virtual String getPropertyValue(int propertyID) const = 0;
58 virtual bool getPropertyPriority(int propertyID) const = 0;
59 virtual int getPropertyShorthand(int propertyID) const = 0;
60 virtual bool isPropertyImplicit(int propertyID) const = 0;
66 virtual String removeProperty(int propertyID, ExceptionCode&) = 0;
H A DCSSMutableStyleDeclaration.h98 virtual PassRefPtr<CSSValue> getPropertyCSSValue(int propertyID) const;
99 virtual String getPropertyValue(int propertyID) const;
100 virtual bool getPropertyPriority(int propertyID) const;
101 virtual int getPropertyShorthand(int propertyID) const;
102 virtual bool isPropertyImplicit(int propertyID) const;
105 virtual String removeProperty(int propertyID, ExceptionCode&);
109 bool setProperty(int propertyID, int value, bool important = false, bool notifyChanged = true);
111 bool setProperty(int propertyID, const String& value, bool important = false, bool notifyChanged = true);
113 String removeProperty(int propertyID, bool notifyChanged = true, bool returnText = false);
167 bool removeShorthandProperty(int propertyID, boo
[all...]
H A DCSSMutableStyleDeclaration.cpp108 String CSSMutableStyleDeclaration::getPropertyValue(int propertyID) const
110 RefPtr<CSSValue> value = getPropertyCSSValue(propertyID);
115 switch (propertyID) {
448 PassRefPtr<CSSValue> CSSMutableStyleDeclaration::getPropertyCSSValue(int propertyID) const
450 const CSSProperty* property = findPropertyWithId(propertyID);
454 bool CSSMutableStyleDeclaration::removeShorthandProperty(int propertyID, bool notifyChanged) argument
456 CSSPropertyLonghand longhand = longhandForProperty(propertyID);
464 String CSSMutableStyleDeclaration::removeProperty(int propertyID, bool notifyChanged, bool returnText) argument
468 if (removeShorthandProperty(propertyID, notifyChanged)) {
473 CSSProperty* foundProperty = findPropertyWithId(propertyID);
537 setProperty(int propertyID, const String& value, bool important, ExceptionCode& ec) argument
543 removeProperty(int propertyID, ExceptionCode& ec) argument
549 setProperty(int propertyID, const String& value, bool important, bool notifyChanged) argument
586 setProperty(int propertyID, int value, bool important, bool notifyChanged) argument
595 setProperty(int propertyID, double value, CSSPrimitiveValue::UnitTypes unit, bool important, bool notifyChanged) argument
864 findPropertyWithId(int propertyID) argument
[all...]
H A DCSSStyleDeclaration.cpp87 int propertyID = cssPropertyID(propertyName); local
88 if (!propertyID)
91 setProperty(propertyID, value, false, ec);
93 setProperty(propertyID, value.left(important - 1), true, ec);
H A DSVGCSSComputedStyleDeclaration.cpp62 PassRefPtr<CSSValue> CSSComputedStyleDeclaration::getSVGPropertyCSSValue(int propertyID, EUpdateLayout updateLayout) const argument
80 switch (static_cast<CSSPropertyID>(propertyID)) {
183 return valueForShadow(svgStyle->shadow(), propertyID, style);
194 ASSERT_WITH_MESSAGE(0, "unimplemented propertyID: %d", propertyID);
196 LOG_ERROR("unimplemented propertyID: %d", propertyID);
H A DCSSProperty.h64 static int resolveDirectionAwareProperty(int propertyID, TextDirection, WritingMode);
H A DCSSComputedStyleDeclaration.cpp389 static PassRefPtr<CSSValue> getPositionOffsetValue(RenderStyle* style, int propertyID, CSSPrimitiveValueCache* primitiveValueCache) argument
395 switch (propertyID) {
666 CSSPropertyID propertyID = static_cast<CSSPropertyID>(id);
673 RefPtr<CSSPrimitiveValue> spread = propertyID == CSSPropertyTextShadow ? PassRefPtr<CSSPrimitiveValue>() : zoomAdjustedPixelValue(s->spread(), style, primitiveValueCache);
674 RefPtr<CSSPrimitiveValue> style = propertyID == CSSPropertyTextShadow || s->style() == Normal ? PassRefPtr<CSSPrimitiveValue>() : primitiveValueCache->createIdentifierValue(CSSValueInset);
681 PassRefPtr<CSSValue> CSSComputedStyleDeclaration::getPropertyCSSValue(int propertyID) const
683 return getPropertyCSSValue(propertyID, UpdateLayout);
779 static PassRefPtr<CSSValue> counterToCSSValue(const RenderStyle* style, int propertyID, CSSPrimitiveValueCache* primitiveValueCache) argument
788 short number = propertyID == CSSPropertyCounterIncrement ? it->second.m_incrementValue : it->second.m_resetValue;
794 static void logUnimplementedPropertyID(int propertyID) argument
803 getPropertyCSSValue(int propertyID, EUpdateLayout updateLayout) const argument
[all...]
H A DCSSPropertyLonghand.cpp219 CSSPropertyLonghand longhandForProperty(int propertyID) argument
225 return shorthandMap.get(propertyID);
H A DCSSProperty.cpp157 int CSSProperty::resolveDirectionAwareProperty(int propertyID, TextDirection direction, WritingMode writingMode) argument
159 switch (static_cast<CSSPropertyID>(propertyID)) {
281 return propertyID;
/external/webkit/Source/WebKit/gtk/webkit/
H A Dwebkitnetworkrequest.cpp81 static void webkit_network_request_get_property(GObject* object, guint propertyID, GValue* value, GParamSpec* pspec) argument
85 switch(propertyID) {
93 G_OBJECT_WARN_INVALID_PROPERTY_ID(object, propertyID, pspec);
97 static void webkit_network_request_set_property(GObject* object, guint propertyID, const GValue* value, GParamSpec* pspec) argument
102 switch(propertyID) {
110 G_OBJECT_WARN_INVALID_PROPERTY_ID(object, propertyID, pspec);
H A Dwebkitnetworkresponse.cpp81 static void webkit_network_response_get_property(GObject* object, guint propertyID, GValue* value, GParamSpec* pspec) argument
85 switch(propertyID) {
93 G_OBJECT_WARN_INVALID_PROPERTY_ID(object, propertyID, pspec);
97 static void webkit_network_response_set_property(GObject* object, guint propertyID, const GValue* value, GParamSpec* pspec) argument
102 switch(propertyID) {
110 G_OBJECT_WARN_INVALID_PROPERTY_ID(object, propertyID, pspec);
H A Dwebkitviewportattributes.cpp115 static void webkit_viewport_attributes_get_property(GObject* object, guint propertyID, GValue* value, GParamSpec* paramSpec);
116 static void webkit_viewport_attributes_set_property(GObject* object, guint propertyID, const GValue* value, GParamSpec* paramSpec);
435 static void webkit_viewport_attributes_get_property(GObject* object, guint propertyID, GValue* value, GParamSpec* paramSpec) argument
440 switch (propertyID) {
484 G_OBJECT_WARN_INVALID_PROPERTY_ID(object, propertyID, paramSpec);
489 static void webkit_viewport_attributes_set_property(GObject* object, guint propertyID, const GValue* value, GParamSpec* paramSpec) argument
494 switch (propertyID) {
514 G_OBJECT_WARN_INVALID_PROPERTY_ID(object, propertyID, paramSpec);
H A Dwebkithittestresult.cpp82 static void webkit_hit_test_result_get_property(GObject* object, guint propertyID, GValue* value, GParamSpec* pspec) argument
87 switch(propertyID) {
104 G_OBJECT_WARN_INVALID_PROPERTY_ID(object, propertyID, pspec);
108 static void webkit_hit_test_result_set_property(GObject* object, guint propertyID, const GValue* value, GParamSpec* pspec) argument
113 switch(propertyID) {
133 G_OBJECT_WARN_INVALID_PROPERTY_ID(object, propertyID, pspec);
/external/webkit/Source/WebCore/editing/
H A DEditingStyle.cpp96 static PassOwnPtr<HTMLElementEquivalent> create(CSSPropertyID propertyID, int primitiveValue, const QualifiedName& tagName) argument
98 return adoptPtr(new HTMLElementEquivalent(propertyID, primitiveValue, tagName));
173 static PassOwnPtr<HTMLAttributeEquivalent> create(CSSPropertyID propertyID, const QualifiedName& tagName, const QualifiedName& attrName) argument
175 return adoptPtr(new HTMLAttributeEquivalent(propertyID, tagName, attrName));
177 static PassOwnPtr<HTMLAttributeEquivalent> create(CSSPropertyID propertyID, const QualifiedName& attrName) argument
179 return adoptPtr(new HTMLAttributeEquivalent(propertyID, attrName));
293 EditingStyle::EditingStyle(int propertyID, const String& value) argument
298 setProperty(propertyID, value);
338 void EditingStyle::setProperty(int propertyID, const String& value, bool important) argument
344 m_mutableStyle->setProperty(propertyID, valu
559 CSSPropertyID propertyID = static_cast<CSSPropertyID>(it->id()); local
574 CSSPropertyID propertyID = static_cast<CSSPropertyID>(it->id()); local
829 setTextDecorationProperty(CSSMutableStyleDeclaration* style, const CSSValueList* newTextDecoration, int propertyID) argument
1010 getIdentifierValue(CSSStyleDeclaration* style, int propertyID) argument
[all...]
H A DEditingStyle.h86 static PassRefPtr<EditingStyle> create(int propertyID, const String& value) argument
88 return adoptRef(new EditingStyle(propertyID, value));
132 EditingStyle(int propertyID, const String& value);
135 void setProperty(int propertyID, const String& value, bool important = false);
201 int getIdentifierValue(CSSStyleDeclaration*, int propertyID);
H A DEditorCommand.cpp116 static bool executeApplyStyle(Frame* frame, EditorCommandSource source, EditAction action, int propertyID, const String& propertyValue) argument
119 style->setProperty(propertyID, propertyValue);
123 static bool executeApplyStyle(Frame* frame, EditorCommandSource source, EditAction action, int propertyID, int propertyValue) argument
126 style->setProperty(propertyID, propertyValue);
133 static bool executeToggleStyleInList(Frame* frame, EditorCommandSource source, EditAction action, int propertyID, CSSValue* value) argument
140 RefPtr<CSSValue> selectedCSSValue = selectionStyle->style()->getPropertyCSSValue(propertyID);
154 newMutableStyle->setProperty(propertyID, newStyle, ec);
158 static bool executeToggleStyle(Frame* frame, EditorCommandSource source, EditAction action, int propertyID, const char* offValue, const char* onValue) argument
166 styleIsPresent = frame->editor()->selectionStartHasStyle(propertyID, onValue);
168 styleIsPresent = frame->editor()->selectionHasStyle(propertyID, onValu
174 executeApplyParagraphStyle(Frame* frame, EditorCommandSource source, EditAction action, int propertyID, const String& propertyValue) argument
226 stateStyle(Frame* frame, int propertyID, const char* desiredValue) argument
233 valueStyle(Frame* frame, int propertyID) argument
[all...]
H A DEditor.h136 bool selectionStartHasStyle(int propertyID, const String& value) const;
137 TriState selectionHasStyle(int propertyID, const String& value) const;
138 String selectionStartCSSPropertyValue(int propertyID);
H A Dmarkup.cpp66 static bool propertyMissingOrEqualToNone(CSSStyleDeclaration*, int propertyID);
425 static bool propertyMissingOrEqualToNone(CSSStyleDeclaration* style, int propertyID) argument
429 RefPtr<CSSValue> value = style->getPropertyCSSValue(propertyID);
H A DEditor.cpp878 bool Editor::selectionStartHasStyle(int propertyID, const String& value) const argument
880 RefPtr<EditingStyle> style = EditingStyle::create(propertyID, value);
887 TriState Editor::selectionHasStyle(int propertyID, const String& value) const argument
889 RefPtr<EditingStyle> style = EditingStyle::create(propertyID, value);
935 String Editor::selectionStartCSSPropertyValue(int propertyID) argument
941 String value = selectionStyle->style()->getPropertyValue(propertyID);
946 if (propertyID == CSSPropertyBackgroundColor && (m_frame->selection()->isRange() || hasTransparentBackgroundColor(selectionStyle->style()))) {
956 if (propertyID == CSSPropertyFontSize) {
/external/webkit/Source/WebCore/bindings/v8/custom/
H A DV8CSSStyleDeclarationCustom.cpp143 int propertyID = cssPropertyID(propName); local
144 if (propertyID) {
148 propInfo->propID = propertyID;
/external/webkit/Source/WebCore/dom/
H A DStyledElement.h47 void addCSSImageProperty(Attribute*, int propertyID, const String& url);
/external/webkit/Source/WebCore/page/animation/
H A DAnimationBase.cpp227 static PropertyWrapperBase* wrapperForProperty(int propertyID);
732 static void addPropertyWrapper(int propertyID, PropertyWrapperBase* wrapper) argument
734 int propIndex = propertyID - firstCSSProperty;
766 int propertyID = animatableShorthandProperties[i]; local
767 CSSPropertyLonghand longhand = longhandForProperty(propertyID);
769 addPropertyWrapper(propertyID, new ShorthandPropertyWrapper(propertyID, longhand));
782 static PropertyWrapperBase* wrapperForProperty(int propertyID) argument
784 int propIndex = propertyID - firstCSSProperty;
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.ui.views_3.5.0.I20100527-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/clang/lib/AST/
H A DDeclObjC.cpp97 IdentifierInfo *propertyID) {
106 DeclContext::lookup_const_result R = DC->lookup(propertyID);
96 findPropertyDecl(const DeclContext *DC, IdentifierInfo *propertyID) argument

Completed in 2460 milliseconds

12