Home
last modified time | relevance | path

Searched refs:appendDescription (Results 1 – 5 of 5) sorted by relevance

/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowCanvas.java61 public void appendDescription(String s) { in appendDescription() method in ShadowCanvas
63 shadowBitmap.appendDescription(s); in appendDescription()
122 appendDescription("draw color " + color); in drawColor()
132 appendDescription(" at (" + x + "," + y + ")"); in drawBitmap()
136 appendDescription(" scaled by (" + scaleX + "," + scaleY + ")"); in drawBitmap()
153 appendDescription(descriptionBuilder.toString()); in drawBitmap()
169 appendDescription(descriptionBuilder.toString()); in drawBitmap()
177 appendDescription(" transformed by " + shadowMatrix.getDescription()); in drawBitmap()
186 appendDescription("Path " + shadowPath.getPoints().toString()); in drawPath()
227 appendDescription(shadowBitmap.getDescription()); in describeBitmap()
[all …]
DShadowBitmap.java188 appendDescription(" compressed as " + format + " with quality " + quality); in compress()
231 shadowBitmap.appendDescription(" created from Bitmap object"); in createBitmap()
246 shadowBitmap.appendDescription(shadowSrcBitmap.getDescription()); in createScaledBitmap()
247 shadowBitmap.appendDescription(" scaled to " + dstWidth + " x " + dstHeight); in createScaledBitmap()
249 shadowBitmap.appendDescription(" with filter " + filter); in createScaledBitmap()
270 shadowBitmap.appendDescription(shadowSrcBitmap.getDescription()); in createBitmap()
271 shadowBitmap.appendDescription(" at (" + x + "," + y); in createBitmap()
272 shadowBitmap.appendDescription(" with width " + width + " and height " + height); in createBitmap()
308 shadowNewBitmap.appendDescription(shadowSrcBitmap.getDescription()); in createBitmap()
309 shadowNewBitmap.appendDescription(" at (" + x + "," + y + ")"); in createBitmap()
[all …]
DShadowBitmapFactory.java166 shadowBitmap.appendDescription(name == null ? "Bitmap" : "Bitmap for " + name); in create()
178 shadowBitmap.appendDescription(" with options "); in create()
179 shadowBitmap.appendDescription(optionsString); in create()
DShadowView.java168 shadowCanvas.appendDescription("background:"); in draw()
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
DShadowBitmapTest.java640 shadowOf(bitmap).appendDescription(name); in create()