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

  /external/webkit/WebCore/rendering/
RenderBoxModelObject.h 93 void paintFillLayerExtended(const PaintInfo&, const Color&, const FillLayer*, int tx, int ty, int width, int height, InlineFlowBox* = 0, CompositeOperator = CompositeSourceOver, RenderObject* backgroundObject = 0);
RenderTableCell.h 92 void paintBackgroundsBehindCell(PaintInfo&, int tx, int ty, RenderObject* backgroundObject);
RenderTableCell.cpp 818 void RenderTableCell::paintBackgroundsBehindCell(PaintInfo& paintInfo, int tx, int ty, RenderObject* backgroundObject)
823 if (!backgroundObject)
833 if (backgroundObject != this) {
841 Color c = backgroundObject->style()->backgroundColor();
842 const FillLayer* bgLayer = backgroundObject->style()->backgroundLayers();
847 bool shouldClip = backgroundObject->hasLayer() && (backgroundObject == this || backgroundObject == parent()) && tableElt->collapseBorders();
854 paintFillLayers(paintInfo, c, bgLayer, tx, ty, w, h, CompositeSourceOver, backgroundObject);
    [all...]
RenderBox.h 308 void paintFillLayer(const PaintInfo&, const Color&, const FillLayer*, int tx, int ty, int width, int height, CompositeOperator op, RenderObject* backgroundObject);
309 void paintFillLayers(const PaintInfo&, const Color&, const FillLayer*, int tx, int ty, int width, int height, CompositeOperator = CompositeSourceOver, RenderObject* backgroundObject = 0);
RenderBox.cpp 753 void RenderBox::paintFillLayers(const PaintInfo& paintInfo, const Color& c, const FillLayer* fillLayer, int tx, int ty, int width, int height, CompositeOperator op, RenderObject* backgroundObject)
758 paintFillLayers(paintInfo, c, fillLayer->next(), tx, ty, width, height, op, backgroundObject);
759 paintFillLayer(paintInfo, c, fillLayer, tx, ty, width, height, op, backgroundObject);
762 void RenderBox::paintFillLayer(const PaintInfo& paintInfo, const Color& c, const FillLayer* fillLayer, int tx, int ty, int width, int height, CompositeOperator op, RenderObject* backgroundObject)
764 paintFillLayerExtended(paintInfo, c, fillLayer, tx, ty, width, height, 0, op, backgroundObject);
    [all...]
RenderBoxModelObject.cpp 443 void RenderBoxModelObject::paintFillLayerExtended(const PaintInfo& paintInfo, const Color& c, const FillLayer* bgLayer, int tx, int ty, int w, int h, InlineFlowBox* box, CompositeOperator op, RenderObject* backgroundObject)
605 RenderObject* clientForBackgroundImage = backgroundObject ? backgroundObject : this;
    [all...]
  /development/samples/BrowserPlugin/jni/background/
BackgroundPlugin.cpp 487 jobject backgroundObject = env->NewObject(backgroundClass, constructor);
489 if(!backgroundObject) {
494 jint result = env->CallIntMethod(backgroundObject, addMethod, 2, 2);

Completed in 874 milliseconds