OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:intBuf1
(Results
1 - 2
of
2
) sorted by null
/packages/apps/Mms/tests/src/com/android/mms/util/
SmileyParserUnitTests.java
85
IntBuffer
intBuf1
= IntBuffer.wrap(intArray1);
88
bitmap1.copyPixelsToBuffer(
intBuf1
);
/cts/tests/tests/graphics/src/android/graphics/cts/
BitmapTest.java
181
IntBuffer
intBuf1
= IntBuffer.allocate(pixSize);
182
assertEquals(0,
intBuf1
.position());
183
mBitmap.copyPixelsToBuffer(
intBuf1
);
184
assertEquals(pixSize >> 2,
intBuf1
.position());
188
bitmap.copyPixelsFromBuffer(
intBuf1
);
192
assertEquals(
intBuf1
.position(), intBuf2.position());
193
int size =
intBuf1
.position();
194
intBuf1
.position(0);
197
assertEquals(
intBuf1
.get(), intBuf2.get());
Completed in 31 milliseconds