/external/webkit/Source/WebCore/css/ |
D | CSSMutableStyleDeclaration.h | 104 virtual void setProperty(int propertyId, const String& value, bool important, ExceptionCode&); 110 …bool setProperty(int propertyId, double value, CSSPrimitiveValue::UnitTypes, bool important = fals… 116 …void setLengthProperty(int propertyId, const String& value, bool important, bool multiLength = fal… 117 …void setStringProperty(int propertyId, const String& value, CSSPrimitiveValue::UnitTypes, bool imp… 118 void setImageProperty(int propertyId, const String& url, bool important = false); 169 Vector<CSSProperty>::const_iterator findPropertyWithId(int propertyId) const; 170 Vector<CSSProperty>::iterator findPropertyWithId(int propertyId);
|
D | CSSMutableStyleDeclaration.cpp | 618 void CSSMutableStyleDeclaration::setStringProperty(int propertyId, const String &value, CSSPrimitiv… in setStringProperty() argument 622 setPropertyInternal(CSSProperty(propertyId, CSSPrimitiveValue::create(value, type), important)); in setStringProperty() 626 void CSSMutableStyleDeclaration::setImageProperty(int propertyId, const String& url, bool important) in setImageProperty() argument 630 setPropertyInternal(CSSProperty(propertyId, CSSImageValue::create(url), important)); in setImageProperty() 669 void CSSMutableStyleDeclaration::setLengthProperty(int propertyId, const String& value, bool import… in setLengthProperty() argument 675 setProperty(propertyId, value, important); in setLengthProperty()
|
D | CSSStyleDeclaration.h | 65 … virtual void setProperty(int propertyId, const String& value, bool important, ExceptionCode&) = 0;
|
D | CSSComputedStyleDeclaration.h | 75 virtual void setProperty(int propertyId, const String& value, bool important, ExceptionCode&);
|
D | CSSStyleApplyProperty.cpp | 196 …ApplyPropertyFillLayer(CSSPropertyID propertyId, EFillLayerType fillLayerType, FillLayer* (RenderS… in ApplyPropertyFillLayer() argument 200 : m_propertyId(propertyId) in ApplyPropertyFillLayer()
|
D | CSSParser.cpp | 284 static inline bool isColorPropertyID(int propertyId) in isColorPropertyID() argument 286 switch (propertyId) { in isColorPropertyID() 311 static bool parseColorValue(CSSMutableStyleDeclaration* declaration, int propertyId, const String& … in parseColorValue() argument 315 if (!isColorPropertyID(propertyId)) in parseColorValue() 335 …CSSProperty property(propertyId, stylesheet->document()->cssPrimitiveValueCache()->createIdentifie… in parseColorValue() 342 …CSSProperty property(propertyId, stylesheet->document()->cssPrimitiveValueCache()->createColorValu… in parseColorValue() 347 static inline bool isSimpleLengthPropertyID(int propertyId, bool& acceptsNegativeNumbers) in isSimpleLengthPropertyID() argument 349 switch (propertyId) { in isSimpleLengthPropertyID() 389 static bool parseSimpleLengthValue(CSSMutableStyleDeclaration* declaration, int propertyId, const S… in parseSimpleLengthValue() argument 396 if (!isSimpleLengthPropertyID(propertyId, acceptsNegativeNumbers)) in parseSimpleLengthValue() [all …]
|
/external/webkit/Source/WebKit/gtk/webkit/ |
D | webkitwebnavigationaction.cpp | 62 static void webkit_web_navigation_action_get_property(GObject* object, guint propertyId, GValue* va… in G_DEFINE_TYPE() 66 switch(propertyId) { in G_DEFINE_TYPE() 83 G_OBJECT_WARN_INVALID_PROPERTY_ID(object, propertyId, pspec); in G_DEFINE_TYPE() 88 static void webkit_web_navigation_action_set_property(GObject* object, guint propertyId, const GVal… in webkit_web_navigation_action_set_property() argument 93 switch(propertyId) { in webkit_web_navigation_action_set_property() 110 G_OBJECT_WARN_INVALID_PROPERTY_ID(object, propertyId, pspec); in webkit_web_navigation_action_set_property()
|
D | webkitwebframe.cpp | 119 static void webkit_web_frame_get_property(GObject* object, guint propertyId, GValue* value, GParamS… in G_DEFINE_TYPE() 123 switch (propertyId) { in G_DEFINE_TYPE() 143 G_OBJECT_WARN_INVALID_PROPERTY_ID(object, propertyId, paramSpec); in G_DEFINE_TYPE()
|
/external/webkit/Source/WebCore/svg/ |
D | SVGStyledElement.cpp | 57 int propertyId = cssPropertyID(attrName.localName()); in mapAttributeToCSSProperty() local 58 ASSERT(propertyId > 0); in mapAttributeToCSSProperty() 59 propertyNameToIdMap->set(attrName.localName().impl(), propertyId); in mapAttributeToCSSProperty()
|
/external/clang/lib/Parse/ |
D | ParseObjc.cpp | 1469 IdentifierInfo *propertyId = Tok.getIdentifierInfo(); in ParseObjCPropertySynthesize() local 1477 Actions.CodeCompleteObjCPropertySynthesizeIvar(getCurScope(), propertyId, in ParseObjCPropertySynthesize() 1490 propertyId, propertyIvar, propertyIvarLoc); in ParseObjCPropertySynthesize() 1522 IdentifierInfo *propertyId = Tok.getIdentifierInfo(); in ParseObjCPropertyDynamic() local 1525 propertyId, 0, SourceLocation()); in ParseObjCPropertyDynamic()
|
/external/clang/include/clang/AST/ |
D | DeclObjC.h | 1142 ObjCPropertyImplDecl *FindPropertyImplDecl(IdentifierInfo *propertyId) const;
|