OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:aPix
(Results
1 - 2
of
2
) sorted by null
/cts/tests/camera/src/android/hardware/camera2/cts/rs/
BitmapUtils.java
103
int
aPix
= aPixels[i];
105
int aR = Color.red(
aPix
);
106
int aG = Color.green(
aPix
);
107
int aB = Color.blue(
aPix
);
/cts/tests/tests/graphics/src/android/graphics/drawable/cts/
AdaptiveIconDrawableTest.java
369
int[]
aPix
= new int[w * h];
388
a.getPixels(
aPix
, 0, w, 0, 0, w, h);
390
return Arrays.equals(
aPix
, bPix);
403
int[]
aPix
= new int[w * h];
406
a.getPixels(
aPix
, 0, w, 0, 0, w, h);
410
printBits(
aPix
, w, h);
417
if (
aPix
[i+w*j] != bPix[i+w*j]) {
419
.append(
aPix
[i+w*j]).append(",").append(bPix[i+w*j]).append(">");
Completed in 44 milliseconds