Searched refs:bitmap (Results 26 - 38 of 38) sorted by relevance

12

/development/ndk/platforms/android-8/samples/bitmap-plasma/jni/
H A Dplasma.c20 #include <android/bitmap.h>
45 * bitmap. floating-point operations are very slow on ARMv5, and not
364 JNIEXPORT void JNICALL Java_com_example_plasma_PlasmaView_renderPlasma(JNIEnv * env, jobject obj, jobject bitmap, jlong time_ms) argument
378 if ((ret = AndroidBitmap_getInfo(env, bitmap, &info)) < 0) {
388 if ((ret = AndroidBitmap_lockPixels(env, bitmap, &pixels)) < 0) {
397 AndroidBitmap_unlockPixels(env, bitmap);
/development/apps/GestureBuilder/src/com/android/gesture/builder/
H A DGestureBuilderActivity.java353 final Bitmap bitmap = gesture.toBitmap(mThumbnailSize, mThumbnailSize,
359 mAdapter.addBitmap(namedGesture.gesture.getID(), bitmap);
417 void addBitmap(Long id, Bitmap bitmap) { argument
418 mThumbnails.put(id, new BitmapDrawable(bitmap));
/development/samples/ApiDemos/src/com/example/android/apis/graphics/
H A DCubeMapActivity.java147 Bitmap bitmap;
149 bitmap = BitmapFactory.decodeStream(is);
158 bitmap, 0);
159 bitmap.recycle();
H A DMatrixPaletteRenderer.java281 Bitmap bitmap;
283 bitmap = BitmapFactory.decodeStream(is);
292 GLUtils.texImage2D(GL10.GL_TEXTURE_2D, 0, bitmap, 0);
293 bitmap.recycle();
/development/samples/BrowserPlugin/jni/audio/
H A DAudioPlugin.cpp191 void AudioPlugin::drawPlugin(const ANPBitmap& bitmap, const ANPRectI& clip) { argument
192 ANPCanvas* canvas = gCanvasI.newCanvas(&bitmap);
282 drawPlugin(evt->data.draw.data.bitmap, evt->data.draw.clip);
/development/samples/BrowserPlugin/jni/form/
H A DFormPlugin.cpp117 void FormPlugin::drawPlugin(const ANPBitmap& bitmap, const ANPRectI& clip) { argument
118 ANPCanvas* canvas = gCanvasI.newCanvas(&bitmap);
209 drawPlugin(evt->data.draw.data.bitmap, evt->data.draw.clip);
/development/samples/BrowserPlugin/jni/
H A Dmain.cpp344 if (evt->data.draw.data.bitmap.format != currentFormat) {
345 currentFormat = evt->data.draw.data.bitmap.format;
346 gLogI.log(kDebug_ANPLogType, "---- %p Draw (bitmap)"
352 evt->data.draw.data.bitmap.format);
/development/ndk/platforms/android-3/include/linux/
H A Dcpumask.h17 #include <linux/bitmap.h>
H A Dnodemask.h17 #include <linux/bitmap.h>
H A Dvideodev2.h324 void __user *bitmap; member in struct:v4l2_window
/development/samples/AccelerometerPlay/src/com/example/android/accelerometerplay/
H A DAccelerometerPlayActivity.java370 // the bitmap
438 final Bitmap bitmap = mBitmap;
449 canvas.drawBitmap(bitmap, x, y, null);
/development/samples/BrowserPlugin/jni/paint/
H A DPaintPlugin.cpp98 ANPBitmap bitmap; local
101 !gSurfaceI.lock(env, m_surface, &bitmap, dirtyRect)) {
105 ANPCanvas* canvas = gCanvasI.newCanvas(&bitmap);
/development/samples/SampleSyncAdapter/src/com/example/android/samplesync/platform/
H A DContactManager.java635 Bitmap bitmap = BitmapFactory.decodeResource(context.getResources(),
637 bitmap.compress(Bitmap.CompressFormat.JPEG, 30, stream);

Completed in 689 milliseconds

12