Home
last modified time | relevance | path

Searched refs:backgroundObject (Results 1 – 8 of 8) sorted by relevance

/external/replicaisland/src/com/replica/replicaisland/
DLevelBuilder.java186 public void promoteForegroundLayer(GameObject backgroundObject) { in promoteForegroundLayer() argument
187 backgroundObject.commitUpdates(); // Make sure layers are sorted. in promoteForegroundLayer()
188 final int componentCount = backgroundObject.getCount(); in promoteForegroundLayer()
190 GameComponent component = (GameComponent)backgroundObject.get(x); in promoteForegroundLayer()
/external/webkit/Source/WebCore/rendering/
DRenderTableCell.cpp970 …l::paintBackgroundsBehindCell(PaintInfo& paintInfo, int tx, int ty, RenderObject* backgroundObject) in paintBackgroundsBehindCell() argument
975 if (!backgroundObject) in paintBackgroundsBehindCell()
985 if (backgroundObject != this) { in paintBackgroundsBehindCell()
993 Color c = backgroundObject->style()->visitedDependentColor(CSSPropertyBackgroundColor); in paintBackgroundsBehindCell()
994 const FillLayer* bgLayer = backgroundObject->style()->backgroundLayers(); in paintBackgroundsBehindCell()
999 …bool shouldClip = backgroundObject->hasLayer() && (backgroundObject == this || backgroundObject ==… in paintBackgroundsBehindCell()
1006 paintFillLayers(paintInfo, c, bgLayer, tx, ty, w, h, CompositeSourceOver, backgroundObject); in paintBackgroundsBehindCell()
DRenderTableCell.h99 void paintBackgroundsBehindCell(PaintInfo&, int tx, int ty, RenderObject* backgroundObject);
DRenderBox.h414 …yer*, int tx, int ty, int width, int height, CompositeOperator op, RenderObject* backgroundObject);
415 …nt width, int height, CompositeOperator = CompositeSourceOver, RenderObject* backgroundObject = 0);
DRenderBoxModelObject.h122 … inlineBoxHeight = 0, CompositeOperator = CompositeSourceOver, RenderObject* backgroundObject = 0);
DRenderBox.cpp963 …Layer, int tx, int ty, int width, int height, CompositeOperator op, RenderObject* backgroundObject) in paintFillLayers() argument
968 paintFillLayers(paintInfo, c, fillLayer->next(), tx, ty, width, height, op, backgroundObject); in paintFillLayers()
969 paintFillLayer(paintInfo, c, fillLayer, tx, ty, width, height, op, backgroundObject); in paintFillLayers()
972 …Layer, int tx, int ty, int width, int height, CompositeOperator op, RenderObject* backgroundObject) in paintFillLayer() argument
974 …ntFillLayerExtended(paintInfo, c, fillLayer, tx, ty, width, height, 0, 0, 0, op, backgroundObject); in paintFillLayer()
DRenderBoxModelObject.cpp575 …box, int inlineBoxWidth, int inlineBoxHeight, CompositeOperator op, RenderObject* backgroundObject) in paintFillLayerExtended() argument
764 RenderObject* clientForBackgroundImage = backgroundObject ? backgroundObject : this; in paintFillLayerExtended()
/external/webkit/Source/WebCore/
DChangeLog-2010-01-2910646 Pass in the correct backgroundObject to paintFillLayers().