Searched defs:outPadding (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DBitmapFactory_Delegate.java47 /*package*/ static Bitmap finishDecode(Bitmap bm, Rect outPadding, Options opts) { argument
75 np = nativeScaleNinePatch(np, scale, outPadding);
/frameworks/base/graphics/java/android/graphics/
H A DBitmapFactory.java452 * @param outPadding If not null, return the padding rect for the bitmap if
462 public static Bitmap decodeStream(InputStream is, Rect outPadding, Options opts) { argument
484 outPadding, opts);
493 bm = nativeDecodeStream(is, tempStorage, outPadding, opts);
499 return finishDecode(bm, outPadding, opts);
502 private static Bitmap finishDecode(Bitmap bm, Rect outPadding, Options opts) { argument
529 np = nativeScaleNinePatch(np, scale, outPadding);
558 * @param outPadding If not null, return the padding rect for the bitmap if
566 public static Bitmap decodeFileDescriptor(FileDescriptor fd, Rect outPadding, Options opts) { argument
568 Bitmap bm = nativeDecodeFileDescriptor(fd, outPadding, opt
[all...]

Completed in 626 milliseconds