/external/webkit/Source/WebCore/css/ |
D | CSSStyleDeclaration.cpp | 43 int propID = cssPropertyID(propertyName); in getPropertyCSSValue() local 44 if (!propID) in getPropertyCSSValue() 46 return getPropertyCSSValue(propID); in getPropertyCSSValue() 51 int propID = cssPropertyID(propertyName); in getPropertyValue() local 52 if (!propID) in getPropertyValue() 54 return getPropertyValue(propID); in getPropertyValue() 59 int propID = cssPropertyID(propertyName); in getPropertyPriority() local 60 if (!propID) in getPropertyPriority() 62 return getPropertyPriority(propID) ? "important" : ""; in getPropertyPriority() 67 int propID = cssPropertyID(propertyName); in getPropertyShorthand() local [all …]
|
D | CSSProperty.h | 35 …CSSProperty(int propID, PassRefPtr<CSSValue> value, bool important = false, int shorthandID = 0, b… 36 : m_id(propID) in m_id() argument
|
D | CSSPropertyLonghand.cpp | 34 #define SET_SHORTHAND_MAP_ENTRY(map, propID, array) \ in initShorthandMap() argument 35 map.set(propID, CSSPropertyLonghand(array, WTF_ARRAY_LENGTH(array))) in initShorthandMap()
|
D | CSSStyleSelector.cpp | 262 #define HANDLE_INHERIT_COND(propID, prop, Prop) \ argument 263 if (id == propID) { \ 268 #define HANDLE_INHERIT_COND_WITH_BACKUP(propID, prop, propAlt, Prop) \ argument 269 if (id == propID) { \ 277 #define HANDLE_INITIAL_COND(propID, Prop) \ argument 278 if (id == propID) { \ 283 #define HANDLE_INITIAL_COND_WITH_VALUE(propID, Prop, Value) \ argument 284 if (id == propID) { \
|
/external/webkit/Source/WebCore/bindings/v8/custom/ |
D | V8CSSStyleDeclarationCustom.cpp | 84 int propID; member in WebCore::CSSPropertyInfo 148 propInfo->propID = propertyID; in cssPropertyInfo() 171 RefPtr<CSSValue> cssValue = imp->getPropertyCSSValue(propInfo->propID); in namedPropertyGetter() 181 String result = imp->getPropertyValue(propInfo->propID); in namedPropertyGetter() 212 imp->setProperty(propInfo->propID, propertyValue, important, ec); in namedPropertySetter()
|
/external/webkit/Source/WebKit/qt/Api/ |
D | qwebelement.cpp | 846 int propID = cssPropertyID(name); in styleProperty() local 848 if (!propID) in styleProperty() 854 return style->getPropertyValue(propID); in styleProperty() 857 if (style->getPropertyPriority(propID)) in styleProperty() 858 return style->getPropertyValue(propID); in styleProperty() 873 if (rule->style()->getPropertyPriority(propID)) in styleProperty() 874 return rule->style()->getPropertyValue(propID); in styleProperty() 876 if (style->getPropertyValue(propID).isEmpty()) in styleProperty() 881 return style->getPropertyValue(propID); in styleProperty() 888 int propID = cssPropertyID(name); in styleProperty() local [all …]
|
/external/webkit/Source/WebCore/platform/graphics/win/ |
D | QTMovie.cpp | 511 movieProps[moviePropCount].propID = kQTDataLocationPropertyID_CFURL; in load() 518 movieProps[moviePropCount].propID = kQTMovieInstantiationPropertyID_DontAskUnresolvedDataRefs; in load() 525 movieProps[moviePropCount].propID = kQTMovieInstantiationPropertyID_AsyncOK; in load() 532 movieProps[moviePropCount].propID = kQTNewMoviePropertyID_Active; in load() 539 movieProps[moviePropCount].propID = kQTNewMoviePropertyID_DontInteractWithUser; in load() 546 movieProps[moviePropCount].propID = '!url'; in load() 553 movieProps[moviePropCount].propID = 'site'; in load() 560 movieProps[moviePropCount].propID = kQTAudioPropertyID_RateChangesPreservePitch; in load() 568 movieProps[moviePropCount].propID = 'pers'; in load()
|
/external/webkit/Source/WebCore/platform/graphics/gstreamer/ |
D | WebKitWebSourceGStreamer.cpp | 113 static void webKitWebSrcSetProperty(GObject* object, guint propID, const GValue* value, GParamSpec*… 114 static void webKitWebSrcGetProperty(GObject* object, guint propID, GValue* value, GParamSpec* pspec… 296 static void webKitWebSrcSetProperty(GObject* object, guint propID, const GValue* value, GParamSpec*… in webKitWebSrcSetProperty() argument 301 switch (propID) { in webKitWebSrcSetProperty() 309 G_OBJECT_WARN_INVALID_PROPERTY_ID(object, propID, pspec); in webKitWebSrcSetProperty() 314 static void webKitWebSrcGetProperty(GObject* object, guint propID, GValue* value, GParamSpec* pspec) in webKitWebSrcGetProperty() argument 319 switch (propID) { in webKitWebSrcGetProperty() 339 G_OBJECT_WARN_INVALID_PROPERTY_ID(object, propID, pspec); in webKitWebSrcGetProperty()
|