HomeSort by relevance Sort by last modified time
    Searched refs:propertyID (Results 1 - 25 of 27) sorted by null

1 2

  /external/webkit/Source/WebCore/css/
CSSComputedStyleDeclaration.h 50 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&);
75 virtual void setProperty(int propertyId, const String& value, bool important, ExceptionCode&);
CSSStyleDeclaration.h 56 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;
65 virtual void setProperty(int propertyId, const String& value, bool important, ExceptionCode&) = 0;
66 virtual String removeProperty(int propertyID, ExceptionCode&) = 0;
CSSMutableStyleDeclaration.h 98 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;
104 virtual void setProperty(int propertyId, const String& value, bool important, ExceptionCode&);
105 virtual String removeProperty(int propertyID, ExceptionCode&);
109 bool setProperty(int propertyID, int value, bool important = false, bool notifyChanged = true);
110 bool setProperty(int propertyId, double value, CSSPrimitiveValue::UnitTypes, bool important = false, bool notifyChanged = true);
111 bool setProperty(int propertyID, const String& value, bool important = false, bool notifyChanged = true)
    [all...]
CSSMutableStyleDeclaration.cpp 108 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)
456 CSSPropertyLonghand longhand = longhandForProperty(propertyID);
464 String CSSMutableStyleDeclaration::removeProperty(int propertyID, bool notifyChanged, bool returnText)
468 if (removeShorthandProperty(propertyID, notifyChanged)) {
473 CSSProperty* foundProperty = findPropertyWithId(propertyID);
    [all...]
CSSProperty.h 64 static int resolveDirectionAwareProperty(int propertyID, TextDirection, WritingMode);
CSSStyleDeclaration.cpp 87 int propertyID = cssPropertyID(propertyName);
88 if (!propertyID)
91 setProperty(propertyID, value, false, ec);
93 setProperty(propertyID, value.left(important - 1), true, ec);
SVGCSSComputedStyleDeclaration.cpp 62 PassRefPtr<CSSValue> CSSComputedStyleDeclaration::getSVGPropertyCSSValue(int propertyID, EUpdateLayout updateLayout) const
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);
CSSComputedStyleDeclaration.cpp 389 static PassRefPtr<CSSValue> getPositionOffsetValue(RenderStyle* style, int propertyID, CSSPrimitiveValueCache* primitiveValueCache)
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)
788 short number = propertyID == CSSPropertyCounterIncrement ? it->second.m_incrementValue : it->second.m_resetValue;
794 static void logUnimplementedPropertyID(int propertyID)
    [all...]
CSSPropertyLonghand.cpp 219 CSSPropertyLonghand longhandForProperty(int propertyID)
225 return shorthandMap.get(propertyID);
CSSProperty.cpp 157 int CSSProperty::resolveDirectionAwareProperty(int propertyID, TextDirection direction, WritingMode writingMode)
159 switch (static_cast<CSSPropertyID>(propertyID)) {
281 return propertyID;
  /external/webkit/Source/WebKit/gtk/webkit/
webkitnetworkrequest.cpp 81 static void webkit_network_request_get_property(GObject* object, guint propertyID, GValue* value, GParamSpec* pspec)
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)
102 switch(propertyID) {
110 G_OBJECT_WARN_INVALID_PROPERTY_ID(object, propertyID, pspec);
webkitnetworkresponse.cpp 81 static void webkit_network_response_get_property(GObject* object, guint propertyID, GValue* value, GParamSpec* pspec)
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)
102 switch(propertyID) {
110 G_OBJECT_WARN_INVALID_PROPERTY_ID(object, propertyID, pspec);
webkitviewportattributes.cpp 115 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)
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)
494 switch (propertyID) {
514 G_OBJECT_WARN_INVALID_PROPERTY_ID(object, propertyID, paramSpec);
webkithittestresult.cpp 82 static void webkit_hit_test_result_get_property(GObject* object, guint propertyID, GValue* value, GParamSpec* pspec)
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)
113 switch(propertyID) {
133 G_OBJECT_WARN_INVALID_PROPERTY_ID(object, propertyID, pspec);
  /external/webkit/Source/WebCore/editing/
EditingStyle.h 86 static PassRefPtr<EditingStyle> create(int propertyID, const String& value)
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);
EditingStyle.cpp 96 static PassOwnPtr<HTMLElementEquivalent> create(CSSPropertyID propertyID, int primitiveValue, const QualifiedName& tagName)
98 return adoptPtr(new HTMLElementEquivalent(propertyID, primitiveValue, tagName));
173 static PassOwnPtr<HTMLAttributeEquivalent> create(CSSPropertyID propertyID, const QualifiedName& tagName, const QualifiedName& attrName)
175 return adoptPtr(new HTMLAttributeEquivalent(propertyID, tagName, attrName));
177 static PassOwnPtr<HTMLAttributeEquivalent> create(CSSPropertyID propertyID, const QualifiedName& attrName)
179 return adoptPtr(new HTMLAttributeEquivalent(propertyID, attrName));
293 EditingStyle::EditingStyle(int propertyID, const String& value)
298 setProperty(propertyID, value);
338 void EditingStyle::setProperty(int propertyID, const String& value, bool important)
344 m_mutableStyle->setProperty(propertyID, value, important, ec)
    [all...]
EditorCommand.cpp 116 static bool executeApplyStyle(Frame* frame, EditorCommandSource source, EditAction action, int propertyID, const String& propertyValue)
119 style->setProperty(propertyID, propertyValue);
123 static bool executeApplyStyle(Frame* frame, EditorCommandSource source, EditAction action, int propertyID, int propertyValue)
126 style->setProperty(propertyID, propertyValue);
133 static bool executeToggleStyleInList(Frame* frame, EditorCommandSource source, EditAction action, int propertyID, CSSValue* value)
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)
166 styleIsPresent = frame->editor()->selectionStartHasStyle(propertyID, onValue);
168 styleIsPresent = frame->editor()->selectionHasStyle(propertyID, onValue) == TrueTriState
    [all...]
Editor.h 136 bool selectionStartHasStyle(int propertyID, const String& value) const;
137 TriState selectionHasStyle(int propertyID, const String& value) const;
138 String selectionStartCSSPropertyValue(int propertyID);
markup.cpp 66 static bool propertyMissingOrEqualToNone(CSSStyleDeclaration*, int propertyID);
425 static bool propertyMissingOrEqualToNone(CSSStyleDeclaration* style, int propertyID)
429 RefPtr<CSSValue> value = style->getPropertyCSSValue(propertyID);
    [all...]
Editor.cpp 878 bool Editor::selectionStartHasStyle(int propertyID, const String& value) const
880 RefPtr<EditingStyle> style = EditingStyle::create(propertyID, value);
887 TriState Editor::selectionHasStyle(int propertyID, const String& value) const
889 RefPtr<EditingStyle> style = EditingStyle::create(propertyID, value);
935 String Editor::selectionStartCSSPropertyValue(int propertyID)
941 String value = selectionStyle->style()->getPropertyValue(propertyID);
946 if (propertyID == CSSPropertyBackgroundColor && (m_frame->selection()->isRange() || hasTransparentBackgroundColor(selectionStyle->style()))) {
    [all...]
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8CSSStyleDeclarationCustom.cpp 143 int propertyID = cssPropertyID(propName);
144 if (propertyID) {
148 propInfo->propID = propertyID;
  /external/webkit/Source/WebCore/dom/
StyledElement.h 47 void addCSSImageProperty(Attribute*, int propertyID, const String& url);
  /external/webkit/Source/WebCore/page/animation/
AnimationBase.cpp 227 static PropertyWrapperBase* wrapperForProperty(int propertyID);
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.ui.views_3.5.0.I20100527-0800.jar 
  /external/clang/lib/AST/
DeclObjC.cpp 97 IdentifierInfo *propertyID) {
106 DeclContext::lookup_const_result R = DC->lookup(propertyID);
126 /// in 'PropertyId' and returns it. It returns 0, if not found.
128 ObjCContainerDecl::FindPropertyDeclaration(IdentifierInfo *PropertyId) const {
137 ObjCPropertyDecl::findPropertyDecl(cast<DeclContext>(this), PropertyId))
147 if (ObjCPropertyDecl *P = (*I)->FindPropertyDeclaration(PropertyId))
159 if (ObjCPropertyDecl *P = Cat->FindPropertyDeclaration(PropertyId))
167 if (ObjCPropertyDecl *P = (*I)->FindPropertyDeclaration(PropertyId))
172 return superClass->FindPropertyDeclaration(PropertyId);
181 if (ObjCPropertyDecl *P = (*I)->FindPropertyDeclaration(PropertyId))
    [all...]

Completed in 552 milliseconds

1 2