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

1 2

  /external/webkit/Source/WebCore/css/
CSSStyleDeclaration.cpp 43 int propID = cssPropertyID(propertyName);
44 if (!propID)
46 return getPropertyCSSValue(propID);
51 int propID = cssPropertyID(propertyName);
52 if (!propID)
54 return getPropertyValue(propID);
59 int propID = cssPropertyID(propertyName);
60 if (!propID)
62 return getPropertyPriority(propID) ? "important" : "";
67 int propID = cssPropertyID(propertyName)
    [all...]
CSSParser.h 66 static bool parseValue(CSSMutableStyleDeclaration*, int propId, const String&, bool important, bool strict);
77 void addProperty(int propId, PassRefPtr<CSSValue>, bool important);
81 bool parseValue(int propId, bool important);
82 bool parseShorthand(int propId, const int* properties, int numProperties, bool important);
83 bool parse4Values(int propId, const int* properties, bool important);
84 bool parseContent(int propId, bool important);
85 bool parseQuotes(int propId, bool important);
100 PassRefPtr<CSSValue> parseFillSize(int propId, bool &allowComma);
102 bool parseFillProperty(int propId, int& propId1, int& propId2, RefPtr<CSSValue>&, RefPtr<CSSValue>&);
103 bool parseFillShorthand(int propId, const int* properties, int numProperties, bool important)
    [all...]
CSSProperty.h 35 CSSProperty(int propID, PassRefPtr<CSSValue> value, bool important = false, int shorthandID = 0, bool implicit = false)
36 : m_id(propID)
SVGCSSParser.cpp 41 bool CSSParser::parseSVGValue(int propId, bool important)
52 switch (propId) {
272 return parseShadow(propId, important);
277 ShorthandScope scope(this, propId);
294 ASSERT_WITH_MESSAGE(0, "unimplemented propertyID: %d", propId);
312 addProperty(propId, parsedValue.release(), important);
CSSPropertyLonghand.cpp 34 #define SET_SHORTHAND_MAP_ENTRY(map, propID, array) \
35 map.set(propID, CSSPropertyLonghand(array, WTF_ARRAY_LENGTH(array)))
CSSParser.cpp 582 void CSSParser::addProperty(int propId, PassRefPtr<CSSValue> value, bool important)
584 OwnPtr<CSSProperty> prop(new CSSProperty(propId, value, important, m_currentShorthand, m_implicitShorthand));
755 bool CSSParser::parseValue(int propId, bool important)
776 addProperty(propId, CSSInheritedValue::create(), important);
782 addProperty(propId, CSSInitialValue::createExplicit(), important);
789 switch (static_cast<CSSPropertyID>(propId)) {
800 return parseSize(propId, important);
806 return parseQuotes(propId, important);
850 return parseContent(propId, important);
865 return parseShape(propId, important)
    [all...]
  /external/webkit/Source/WebCore/accessibility/gtk/
WebKitAccessibleHyperlink.cpp 298 static void webkitAccessibleHyperlinkGetProperty(GObject* object, guint propId, GValue* value, GParamSpec* pspec)
300 switch (propId) {
305 G_OBJECT_WARN_INVALID_PROPERTY_ID(object, propId, pspec);
309 static void webkitAccessibleHyperlinkSetProperty(GObject* object, guint propId, const GValue* value, GParamSpec* pspec)
313 switch (propId) {
321 G_OBJECT_WARN_INVALID_PROPERTY_ID(object, propId, pspec);
  /external/webkit/Source/WebKit/gtk/webkit/
webkiticondatabase.cpp 99 static void webkit_icon_database_set_property(GObject* object, guint propId, const GValue* value, GParamSpec* pspec)
103 switch (propId) {
108 G_OBJECT_WARN_INVALID_PROPERTY_ID(object, propId, pspec);
113 static void webkit_icon_database_get_property(GObject* object, guint propId, GValue* value, GParamSpec* pspec)
117 switch (propId) {
122 G_OBJECT_WARN_INVALID_PROPERTY_ID(object, propId, pspec);
webkitsecurityorigin.cpp 87 static void webkit_security_origin_set_property(GObject* object, guint propId, const GValue* value, GParamSpec* pspec)
91 switch (propId) {
96 G_OBJECT_WARN_INVALID_PROPERTY_ID(object, propId, pspec);
101 static void webkit_security_origin_get_property(GObject* object, guint propId, GValue* value, GParamSpec* pspec)
105 switch (propId) {
122 G_OBJECT_WARN_INVALID_PROPERTY_ID(object, propId, pspec);
webkitwebdatabase.cpp 109 static void webkit_web_database_set_property(GObject* object, guint propId, const GValue* value, GParamSpec* pspec)
113 switch (propId) {
121 G_OBJECT_WARN_INVALID_PROPERTY_ID(object, propId, pspec);
126 static void webkit_web_database_get_property(GObject* object, guint propId, GValue* value, GParamSpec* pspec)
131 switch (propId) {
151 G_OBJECT_WARN_INVALID_PROPERTY_ID(object, propId, pspec);
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8CSSStyleDeclarationCustom.cpp 84 int propID;
148 propInfo->propID = propertyID;
171 RefPtr<CSSValue> cssValue = imp->getPropertyCSSValue(propInfo->propID);
181 String result = imp->getPropertyValue(propInfo->propID);
212 imp->setProperty(propInfo->propID, propertyValue, important, ec);
  /external/webkit/Source/WebCore/platform/haiku/
RenderThemeHaiku.h 55 virtual void systemFont(int propId, FontDescription&) const;
RenderThemeHaiku.cpp 105 void RenderThemeHaiku::systemFont(int propId, FontDescription&) const
  /external/webkit/Source/WebCore/platform/graphics/win/
QTMovie.cpp 511 movieProps[moviePropCount].propID = kQTDataLocationPropertyID_CFURL;
518 movieProps[moviePropCount].propID = kQTMovieInstantiationPropertyID_DontAskUnresolvedDataRefs;
525 movieProps[moviePropCount].propID = kQTMovieInstantiationPropertyID_AsyncOK;
532 movieProps[moviePropCount].propID = kQTNewMoviePropertyID_Active;
539 movieProps[moviePropCount].propID = kQTNewMoviePropertyID_DontInteractWithUser;
546 movieProps[moviePropCount].propID = '!url';
553 movieProps[moviePropCount].propID = 'site';
560 movieProps[moviePropCount].propID = kQTAudioPropertyID_RateChangesPreservePitch;
568 movieProps[moviePropCount].propID = 'pers';
  /external/webkit/Source/WebCore/platform/graphics/gstreamer/
WebKitWebSourceGStreamer.cpp 113 static void webKitWebSrcSetProperty(GObject* object, guint propID, const GValue* value, GParamSpec* pspec);
114 static void webKitWebSrcGetProperty(GObject* object, guint propID, GValue* value, GParamSpec* pspec);
296 static void webKitWebSrcSetProperty(GObject* object, guint propID, const GValue* value, GParamSpec* pspec)
301 switch (propID) {
309 G_OBJECT_WARN_INVALID_PROPERTY_ID(object, propID, pspec);
314 static void webKitWebSrcGetProperty(GObject* object, guint propID, GValue* value, GParamSpec* pspec)
319 switch (propID) {
339 G_OBJECT_WARN_INVALID_PROPERTY_ID(object, propID, pspec);
  /external/webkit/Source/WebCore/svg/
SVGStyledElement.cpp 300 int propId = SVGStyledElement::cssPropertyIdForSVGAttributeName(attrName);
301 if (propId > 0) {
302 addCSSProperty(attr, propId, attr->value());
405 int propId = SVGStyledElement::cssPropertyIdForSVGAttributeName(cssSVGAttr->name());
406 addCSSProperty(cssSVGAttr, propId, cssSVGAttr->value());
SVGFontFaceElement.cpp 114 int propId = cssPropertyIdForSVGAttributeName(attr->name());
115 if (propId > 0) {
116 m_styleDeclaration->setProperty(propId, attr->value(), false);
  /external/webkit/Source/WebCore/rendering/
RenderThemeChromiumWin.h 61 virtual void systemFont(int propId, FontDescription&) const;
RenderThemeWinCE.h 65 virtual void systemFont(int propId, FontDescription&) const;
RenderThemeChromiumSkia.h 65 virtual void systemFont(int propId, FontDescription&) const;
RenderThemeSafari.h 75 virtual void systemFont(int propId, FontDescription&) const;
RenderThemeWin.h 66 virtual void systemFont(int propId, FontDescription&) const;
  /external/webkit/Source/WebKit/qt/Api/
qwebelement.cpp 846 int propID = cssPropertyID(name);
848 if (!propID)
854 return style->getPropertyValue(propID);
857 if (style->getPropertyPriority(propID))
858 return style->getPropertyValue(propID);
873 if (rule->style()->getPropertyPriority(propID))
874 return rule->style()->getPropertyValue(propID);
876 if (style->getPropertyValue(propID).isEmpty())
881 return style->getPropertyValue(propID);
888 int propID = cssPropertyID(name)
    [all...]
  /external/webkit/Source/WebCore/platform/wx/
RenderThemeWx.cpp 94 virtual void systemFont(int propId, FontDescription&) const;
191 void RenderThemeWx::systemFont(int propId, FontDescription& fontDescription) const
  /external/webkit/Source/WebCore/platform/qt/
RenderThemeQt.h 75 virtual void systemFont(int propId, FontDescription&) const;

Completed in 1238 milliseconds

1 2