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

1 2

  /external/webkit/Source/WebCore/css/
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...]
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);
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/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/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/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/WebCore/rendering/
RenderThemeChromiumWin.h 61 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;
RenderThemeWinCE.h 65 virtual void systemFont(int propId, FontDescription&) const;
RenderThemeChromiumSkia.cpp 162 void RenderThemeChromiumSkia::systemFont(int propId, FontDescription& fontDescription) const
166 switch (propId) {
RenderThemeChromiumWin.cpp 293 void RenderThemeChromiumWin::systemFont(int propId, FontDescription& fontDescription) const
299 switch (propId) {
RenderThemeSafari.cpp 189 void RenderThemeSafari::systemFont(int propId, FontDescription& fontDescription) const
201 switch (propId) {
    [all...]
RenderThemeWin.cpp 298 void RenderThemeWin::systemFont(int propId, FontDescription& fontDescription) const
318 switch (propId) {
    [all...]
RenderThemeWinCE.cpp 259 void RenderThemeWinCE::systemFont(int propId, FontDescription& fontDescription) const
  /external/webkit/Source/WebCore/svg/
SVGFontFaceElement.cpp 114 int propId = cssPropertyIdForSVGAttributeName(attr->name());
115 if (propId > 0) {
116 m_styleDeclaration->setProperty(propId, attr->value(), false);
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());
  /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/efl/
RenderThemeEfl.h 117 virtual void systemFont(int propId, FontDescription&) const;
  /external/webkit/Source/WebCore/platform/gtk/
RenderThemeGtk.h 83 virtual void systemFont(int propId, FontDescription&) const;
  /external/webkit/Source/WebCore/platform/qt/
RenderThemeQt.h 75 virtual void systemFont(int propId, FontDescription&) const;

Completed in 600 milliseconds

1 2