Home
last modified time | relevance | path

Searched refs:ninePatchChunk (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/core/jni/android/graphics/
DBitmapFactory.cpp279 jbyteArray ninePatchChunk = NULL; in doDecode() local
286 ninePatchChunk = env->NewByteArray(ninePatchArraySize); in doDecode()
287 if (ninePatchChunk == NULL) { in doDecode()
291 jbyte* array = (jbyte*) env->GetPrimitiveArrayCritical(ninePatchChunk, NULL); in doDecode()
297 env->ReleasePrimitiveArrayCritical(ninePatchChunk, array, 0); in doDecode()
379 isMutable, ninePatchChunk, layoutBounds, -1); in doDecode()
/frameworks/base/graphics/java/android/graphics/
DBitmap.java98 /*package*/ Bitmap(int nativeBitmap, byte[] buffer, boolean isMutable, byte[] ninePatchChunk, in Bitmap() argument
100 this(nativeBitmap, buffer, isMutable, ninePatchChunk, null, density); in Bitmap()
111 /*package*/ Bitmap(int nativeBitmap, byte[] buffer, boolean isMutable, byte[] ninePatchChunk, in Bitmap() argument
123 mNinePatchChunk = ninePatchChunk; in Bitmap()