Searched refs:bPix (Results 1 – 5 of 5) sorted by relevance
/frameworks/base/core/tests/coretests/src/android/graphics/drawable/ |
D | AdaptiveIconDrawableTest.java | 221 int[] bPix = new int[w * h]; in equalBitmaps() local 240 b.getPixels(bPix, 0, w, 0, 0, w, h); in equalBitmaps() 241 return Arrays.equals(aPix, bPix); in equalBitmaps() 255 int[] bPix = new int[w * h]; in findBitmapDifferences() local 258 b.getPixels(bPix, 0, w, 0, 0, w, h); in findBitmapDifferences() 263 printBits(bPix, w, h); in findBitmapDifferences() 268 if (aPix[i+w*j] != bPix[i+w*j]) { in findBitmapDifferences() 270 .append(aPix[i+w*j]).append(",").append(bPix[i+w*j]).append(">"); in findBitmapDifferences()
|
D | IconTest.java | 650 int[] bPix = new int[w * h]; in equalBitmaps() local 663 b.getPixels(bPix, 0, w, 0, 0, w, h); in equalBitmaps() 664 return Arrays.equals(aPix, bPix); in equalBitmaps() 678 int[] bPix = new int[w * h]; in findBitmapDifferences() local 681 b.getPixels(bPix, 0, w, 0, 0, w, h); in findBitmapDifferences() 686 printBits(bPix, w, h); in findBitmapDifferences() 691 if (aPix[i+w*j] != bPix[i+w*j]) { in findBitmapDifferences()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/qs/external/ |
D | TileRequestDialogTest.kt | 306 val bPix = IntArray(w * h) in equalBitmaps() constant 308 b.getPixels(bPix, 0, w, 0, 0, w, h) in equalBitmaps() 309 return Arrays.equals(aPix, bPix) in equalBitmaps()
|
D | CustomTileTest.kt | 553 val bPix = IntArray(w * h) in equalBitmaps() constant 555 b.getPixels(bPix, 0, w, 0, 0, w, h) in equalBitmaps() 556 return Arrays.equals(aPix, bPix) in equalBitmaps()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/volume/ |
D | VolumeDialogImplTest.java | 840 int[] bPix = new int[w * h]; in areBitmapsEqual() local 842 b.getPixels(bPix, 0, w, 0, 0, w, h); in areBitmapsEqual() 843 return Arrays.equals(aPix, bPix); in areBitmapsEqual()
|