OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:nativeBitmap
(Results
1 - 9
of
9
) sorted by null
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
Bitmap_Delegate.java
306
/*package*/ static void nativeDestructor(int
nativeBitmap
) {
307
sManager.removeJavaReferenceFor(
nativeBitmap
);
311
/*package*/ static boolean nativeRecycle(int
nativeBitmap
) {
312
sManager.removeJavaReferenceFor(
nativeBitmap
);
317
/*package*/ static void nativeReconfigure(int
nativeBitmap
, int width, int height,
324
/*package*/ static boolean nativeCompress(int
nativeBitmap
, int format, int quality,
332
/*package*/ static void nativeErase(int
nativeBitmap
, int color) {
334
Bitmap_Delegate delegate = sManager.getDelegate(
nativeBitmap
);
352
/*package*/ static int nativeRowBytes(int
nativeBitmap
) {
354
Bitmap_Delegate delegate = sManager.getDelegate(
nativeBitmap
);
[
all
...]
/frameworks/base/graphics/java/android/graphics/
Bitmap.java
107
Bitmap(int
nativeBitmap
, byte[] buffer, int width, int height, int density,
110
if (
nativeBitmap
== 0) {
120
mNativeBitmap =
nativeBitmap
;
121
mFinalizer = new BitmapFinalizer(
nativeBitmap
);
[
all
...]
/external/neven/
FaceDetector_jni.cpp
213
SkBitmap const *
nativeBitmap
=
223
SkAutoLockPixels alp(*
nativeBitmap
);
225
uint16_t const* src = (uint16_t const*)
nativeBitmap
->getPixels();
226
int wpr =
nativeBitmap
->rowBytes() / 2;
/frameworks/base/media/jni/
android_media_MediaMetadataRetriever.cpp
39
jfieldID
nativeBitmap
;
267
(SkBitmap *) env->GetIntField(jBitmap, fields.
nativeBitmap
);
409
fields.
nativeBitmap
= env->GetFieldID(fields.bitmapClazz, "mNativeBitmap", "I");
410
if (fields.
nativeBitmap
== NULL) {
/frameworks/base/core/jni/android/opengl/
util.cpp
632
SkBitmap const *
nativeBitmap
=
634
const SkBitmap& bitmap(*
nativeBitmap
);
642
SkBitmap const *
nativeBitmap
=
644
const SkBitmap& bitmap(*
nativeBitmap
);
653
SkBitmap const *
nativeBitmap
=
655
const SkBitmap& bitmap(*
nativeBitmap
);
702
SkBitmap const *
nativeBitmap
=
704
const SkBitmap& bitmap(*
nativeBitmap
);
/frameworks/base/core/jni/
com_google_android_gles_jni_EGLImpl.cpp
278
SkBitmap const *
nativeBitmap
=
281
SkPixelRef* ref =
nativeBitmap
?
nativeBitmap
->pixelRef() : 0;
292
pixmap.width =
nativeBitmap
->width();
293
pixmap.height =
nativeBitmap
->height();
294
pixmap.stride =
nativeBitmap
->rowBytes() /
nativeBitmap
->bytesPerPixel();
295
pixmap.format = convertPixelFormat(
nativeBitmap
->config());
/frameworks/base/graphics/jni/
android_renderscript_RenderScript.cpp
524
SkBitmap const *
nativeBitmap
=
526
const SkBitmap& bitmap(*
nativeBitmap
);
540
SkBitmap const *
nativeBitmap
=
542
const SkBitmap& bitmap(*
nativeBitmap
);
556
SkBitmap const *
nativeBitmap
=
558
const SkBitmap& bitmap(*
nativeBitmap
);
572
SkBitmap const *
nativeBitmap
=
574
const SkBitmap& bitmap(*
nativeBitmap
);
589
SkBitmap const *
nativeBitmap
=
591
const SkBitmap& bitmap(*
nativeBitmap
);
[
all
...]
/frameworks/base/core/jni/android/graphics/
GraphicsJNI.h
147
JavaHeapBitmapRef(JNIEnv *env, SkBitmap*
nativeBitmap
, jbyteArray buffer);
Graphics.cpp
610
JavaHeapBitmapRef::JavaHeapBitmapRef(JNIEnv* env, SkBitmap*
nativeBitmap
, jbyteArray buffer) {
612
fNativeBitmap =
nativeBitmap
;
Completed in 608 milliseconds