Home
last modified time | relevance | path

Searched refs:height (Results 1 – 3 of 3) sorted by relevance

/art/tools/ahat/src/main/com/android/ahat/heapdump/
DAhatClassInstance.java241 public final int height; field in AhatClassInstance.BitmapInfo
244 public BitmapInfo(int width, int height, byte[] buffer) { in BitmapInfo() argument
246 this.height = height; in BitmapInfo()
265 Integer height = getIntField("mHeight", null); in getBitmapInfo() local
266 if (height == null) { in getBitmapInfo()
275 if (buffer.length < 4 * height * width) { in getBitmapInfo()
279 return new BitmapInfo(width, height, buffer); in getBitmapInfo()
291 int[] abgr = new int[info.height * info.width]; in asBitmap()
301 info.width, info.height, BufferedImage.TYPE_4BYTE_ABGR); in asBitmap()
302 bitmap.setRGB(0, 0, info.width, info.height, abgr, 0, info.width); in asBitmap()
/art/test/079-phantom/src/
DBitmap.java37 Bitmap(String name, int width, int height, Bitmap.NativeWrapper nativeData) { in Bitmap() argument
40 mHeight = height; in Bitmap()
69 static Bitmap.NativeWrapper allocNativeStorage(int width, int height) { in allocNativeStorage() argument
/art/runtime/
Dsubtype_check_test.cc313 void CreateRootedTree(size_t width, size_t height) { in CreateRootedTree()
316 CreateTreeFor(root_, /*width=*/width, /*levels=*/height); in CreateRootedTree()