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

  /external/webkit/WebCore/css/
CSSParser.h 61 bool parseValue(CSSMutableStyleDeclaration*, int propId, const String&, bool important);
69 void addProperty(int propId, PassRefPtr<CSSValue>, bool important);
73 bool parseValue(int propId, bool important);
74 bool parseShorthand(int propId, const int* properties, int numProperties, bool important);
75 bool parse4Values(int propId, const int* properties, bool important);
76 bool parseContent(int propId, bool important);
86 PassRefPtr<CSSValue> parseFillSize(int propId, bool &allowComma);
88 bool parseFillProperty(int propId, int& propId1, int& propId2, RefPtr<CSSValue>&, RefPtr<CSSValue>&);
89 bool parseFillShorthand(int propId, const int* properties, int numProperties, bool important);
106 bool parseAnimationProperty(int propId, RefPtr<CSSValue>&)
    [all...]
CSSParser.cpp 422 void CSSParser::addProperty(int propId, PassRefPtr<CSSValue> value, bool important)
424 auto_ptr<CSSProperty> prop(new CSSProperty(propId, value, important, m_currentShorthand, m_implicitShorthand));
587 bool CSSParser::parseValue(int propId, bool important)
608 addProperty(propId, CSSInheritedValue::create(), important);
614 addProperty(propId, CSSInitialValue::createExplicit(), important);
622 addUnresolvedProperty(propId, important);
629 switch (static_cast<CSSPropertyID>(propId)) {
685 return parseContent(propId, important);
700 return parseShape(propId, important);
723 ShorthandScope scope(this, propId);
    [all...]
SVGCSSParser.cpp 40 bool CSSParser::parseSVGValue(int propId, bool important)
51 switch (propId) {
264 return parseShadow(propId, important);
269 ShorthandScope scope(this, propId);
286 ASSERT_WITH_MESSAGE(0, "unimplemented propertyID: %d", propId);
304 addProperty(propId, parsedValue.release(), important);
  /external/webkit/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/WebKit/gtk/webkit/
webkitsecurityorigin.cpp 88 static void webkit_security_origin_set_property(GObject* object, guint propId, const GValue* value, GParamSpec* pspec)
92 switch (propId) {
97 G_OBJECT_WARN_INVALID_PROPERTY_ID(object, propId, pspec);
102 static void webkit_security_origin_get_property(GObject* object, guint propId, GValue* value, GParamSpec* pspec)
106 switch (propId) {
123 G_OBJECT_WARN_INVALID_PROPERTY_ID(object, propId, pspec);
webkitwebdatabase.cpp 112 static void webkit_web_database_set_property(GObject* object, guint propId, const GValue* value, GParamSpec* pspec)
116 switch (propId) {
124 G_OBJECT_WARN_INVALID_PROPERTY_ID(object, propId, pspec);
129 static void webkit_web_database_get_property(GObject* object, guint propId, GValue* value, GParamSpec* pspec)
134 switch (propId) {
154 G_OBJECT_WARN_INVALID_PROPERTY_ID(object, propId, pspec);
  /external/webkit/WebCore/svg/
SVGStyledElement.cpp 166 int propId = SVGStyledElement::cssPropertyIdForSVGAttributeName(attrName);
167 if (propId > 0) {
168 addCSSProperty(attr, propId, attr->value());
187 int propId = SVGStyledElement::cssPropertyIdForSVGAttributeName(attrName);
188 if (propId > 0)
301 int propId = SVGStyledElement::cssPropertyIdForSVGAttributeName(cssSVGAttr->name());
302 addCSSProperty(cssSVGAttr, propId, cssSVGAttr->value());
SVGFontFaceElement.cpp 115 int propId = cssPropertyIdForSVGAttributeName(attr->name());
116 if (propId > 0) {
117 m_styleDeclaration->setProperty(propId, attr->value(), false);
  /external/webkit/WebCore/rendering/
RenderThemeChromiumWin.h 61 virtual void systemFont(int propId, FontDescription&) const;
RenderThemeChromiumSkia.h 63 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;
RenderThemeChromiumWin.cpp 253 void RenderThemeChromiumWin::systemFont(int propId, FontDescription& fontDescription) const
259 switch (propId) {
RenderThemeChromiumSkia.cpp 190 void RenderThemeChromiumSkia::systemFont(int propId, FontDescription& fontDescription) const
194 switch (propId) {
RenderThemeWin.cpp 271 void RenderThemeWin::systemFont(int propId, FontDescription& fontDescription) const
291 switch (propId) {
    [all...]
RenderThemeSafari.cpp 188 void RenderThemeSafari::systemFont(int propId, FontDescription& fontDescription) const
200 switch (propId) {
    [all...]
RenderThemeWince.cpp 258 void RenderThemeWince::systemFont(int propId, FontDescription& fontDescription) const
  /external/webkit/WebCore/platform/gtk/
RenderThemeGtk.h 86 virtual void systemFont(int propId, FontDescription&) const;
  /external/webkit/WebCore/platform/qt/
RenderThemeQt.h 67 virtual void systemFont(int propId, FontDescription&) const;
  /external/webkit/WebCore/platform/wx/
RenderThemeWx.cpp 93 virtual void systemFont(int propId, FontDescription&) const;
190 void RenderThemeWx::systemFont(int propId, FontDescription& fontDescription) const

Completed in 293 milliseconds