Home
last modified time | relevance | path

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

/art/tools/amm/models/
DGraphics.md6 2 * (4 * width * height)
9 3 * (4 * width * height)
12 3 * (4 * width * height)
19 about the width and height associated with each instance.
DBitmap.md10 `android.graphics.Bitmap` instance, including width, height, and ideally a
/art/tools/amm/AmmTest/src/com/android/amm/test/
DThreadedRendererUse.java31 public ThreadedRendererUse(Context context, int width, int height) { in ThreadedRendererUse() argument
43 layout.height = height; in ThreadedRendererUse()
DTextureViewUse.java33 public TextureViewUse(Context context, ViewGroup vg, int width, int height) { in TextureViewUse() argument
35 vg.addView(mTextureView, width, height); in TextureViewUse()
DSurfaceViewUse.java34 public SurfaceViewUse(Context context, ViewGroup vg, int width, int height) { in SurfaceViewUse() argument
36 vg.addView(mSurfaceView, width, height); in SurfaceViewUse()
/art/tools/ahat/src/main/com/android/ahat/heapdump/
DAhatClassInstance.java194 public final int height; field in AhatClassInstance.BitmapInfo
197 public BitmapInfo(int width, int height, byte[] buffer) { in BitmapInfo() argument
199 this.height = height; in BitmapInfo()
218 Integer height = getIntField("mHeight", null); in getBitmapInfo() local
219 if (height == null) { in getBitmapInfo()
228 if (buffer.length < 4 * height * width) { in getBitmapInfo()
232 return new BitmapInfo(width, height, buffer); in getBitmapInfo()
244 int[] abgr = new int[info.height * info.width]; in asBitmap()
254 info.width, info.height, BufferedImage.TYPE_4BYTE_ABGR); in asBitmap()
255 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.cc311 void CreateRootedTree(size_t width, size_t height) { in CreateRootedTree()
314 CreateTreeFor(root_, /*width*/width, /*depth*/height); in CreateRootedTree()