Searched defs:height (Results 226 - 250 of 763) sorted by relevance

1234567891011>>

/frameworks/native/libs/vr/libbufferhub/
H A Dion_buffer.cpp20 IonBuffer::IonBuffer(uint32_t width, uint32_t height, uint32_t format, argument
23 Alloc(width, height, kDefaultGraphicBufferLayerCount, format, usage);
26 IonBuffer::IonBuffer(buffer_handle_t handle, uint32_t width, uint32_t height, argument
28 : IonBuffer(handle, width, height, kDefaultGraphicBufferLayerCount, stride,
31 IonBuffer::IonBuffer(buffer_handle_t handle, uint32_t width, uint32_t height, argument
36 "IonBuffer::IonBuffer: handle=%p width=%u height=%u layer_count=%u "
38 handle, width, height, layer_count, stride, format, usage);
40 Import(handle, width, height, layer_count, stride, format, usage);
46 "IonBuffer::~IonBuffer: handle=%p width=%u height=%u stride=%u "
48 handle(), width(), height(), strid
74 Alloc(uint32_t width, uint32_t height, uint32_t layer_count, uint32_t format, uint64_t usage) argument
91 Reset(buffer_handle_t handle, uint32_t width, uint32_t height, uint32_t layer_count, uint32_t stride, uint32_t format, uint64_t usage) argument
101 Import(buffer_handle_t handle, uint32_t width, uint32_t height, uint32_t layer_count, uint32_t stride, uint32_t format, uint64_t usage) argument
122 Import(const int* fd_array, int fd_count, const int* int_array, int int_count, uint32_t width, uint32_t height, uint32_t layer_count, uint32_t stride, uint32_t format, uint64_t usage) argument
198 Lock(uint32_t usage, int x, int y, int width, int height, void** address) argument
214 LockYUV(uint32_t usage, int x, int y, int width, int height, struct android_ycbcr* yuv) argument
[all...]
/frameworks/native/libs/vr/libdisplay/
H A Ddisplay_client.cpp126 uint32_t width, uint32_t height, uint32_t layer_count, uint32_t format,
129 "Surface::CreateQueue: width=%u height=%u layer_count=%u format=%u "
131 width, height, layer_count, format, usage, capacity);
141 const int ret = producer_queue->AllocateBuffer(width, height, layer_count,
125 CreateQueue( uint32_t width, uint32_t height, uint32_t layer_count, uint32_t format, uint64_t usage, size_t capacity) argument
/frameworks/native/opengl/tests/gl2_jni/jni/
H A Dgl_code.cpp152 JNIEXPORT void JNICALL Java_com_android_gl2jni_GL2JNILib_init(JNIEnv * env, jobject obj, jint width, jint height);
156 JNIEXPORT void JNICALL Java_com_android_gl2jni_GL2JNILib_init(JNIEnv * env, jobject obj, jint width, jint height) argument
158 setupGraphics(width, height);
/frameworks/native/opengl/tests/gldual/jni/
H A Dgl_code.cpp152 JNIEXPORT void JNICALL Java_com_android_gldual_GLDualLib_init(JNIEnv * env, jobject obj, jint width, jint height);
156 JNIEXPORT void JNICALL Java_com_android_gldual_GLDualLib_init(JNIEnv * env, jobject obj, jint width, jint height) argument
158 setupGraphics(width, height);
/frameworks/native/opengl/tests/hwc/
H A DhwcTestLib.h41 uint32_t wMod, hMod; // Width/height mod this value must equal zero
86 // Dimension - width and height of a rectanguler area
92 uint32_t height(void) const { return _h; } function in class:HwcTestDim
106 EGLint *width, EGLint *height);
/frameworks/native/opengl/tests/testViewport/src/com/android/test/
H A DTestView.java236 public void onSurfaceChanged(GL10 gl, int width, int height) { argument
237 gl.glViewport(0, 0, width, height);
240 gl.glOrthof(0, width, height, 0, -1, 1);
242 createGrid(gl, width, height);
/frameworks/native/services/vr/bufferhubd/
H A Dbuffer_hub.h52 uint32_t height = 0; member in struct:android::dvr::BufferHubChannel::BufferInfo
62 BufferInfo(int id, size_t consumer_count, uint32_t width, uint32_t height, argument
68 height(height),
159 uint32_t height, uint32_t format,
164 uint32_t width, uint32_t height,
H A Dproducer_queue_channel.cpp142 Message& message, uint32_t width, uint32_t height, uint32_t layer_count,
177 auto status = AllocateBuffer(message, width, height, layer_count, format,
193 uint32_t height, uint32_t layer_count,
219 "height=%u layer_count=%u format=%u usage=%" PRIx64,
220 buffer_id, width, height, layer_count, format, usage);
224 ProducerChannel::Create(service(), buffer_id, width, height, layer_count,
141 OnProducerQueueAllocateBuffers( Message& message, uint32_t width, uint32_t height, uint32_t layer_count, uint32_t format, uint64_t usage, size_t buffer_count) argument
192 AllocateBuffer(Message& message, uint32_t width, uint32_t height, uint32_t layer_count, uint32_t format, uint64_t usage) argument
/frameworks/native/services/vr/virtual_touchpad/tests/
H A DVirtualTouchpad_test.cpp155 const int32_t height = 1 + uidev->absmax[ABS_MT_POSITION_Y]; local
199 expect.WriteInputEvent(EV_ABS, ABS_MT_POSITION_Y, 0.75f * height);
213 expect.WriteInputEvent(EV_ABS, ABS_MT_POSITION_Y, 0.99f * height);
/frameworks/opt/setupwizard/library/test/instrumentation/src/com/android/setupwizardlib/test/
H A DBottomScrollViewTest.java93 TestChildView(Context context, int height) { argument
95 mHeight = height;
103 public void setHeight(int height) { argument
104 mHeight = height;
/frameworks/rs/tests/java_api/Balls/src/com/example/android/rs/balls/
H A DBallsRS.java95 private void createPF(int width, int height) { argument
104 public void init(RenderScriptGL rs, Resources res, int width, int height) { argument
108 createPF(width, height);
119 mGrid = ScriptField_BallGrid.create2D(mRS, (width + 99) / 100, (height + 99) / 100);
141 mPhysicsScript.set_gMaxPos(new Float2(width - 5, height - 5));
144 mScript.invoke_initParts(width, height);
/frameworks/rs/tests/java_api/GenImages/src/com/android/rs/genimage/
H A DGenImage.java75 public void onSurfaceChanged(GL10 unused, int width, int height) { argument
/frameworks/rs/tests/java_api/HealingBrush/src/rs/example/android/com/healingbrush/
H A DHealing.java50 Bitmap bitmap = Bitmap.createBitmap(rec.width(), rec.height(), Bitmap.Config.ALPHA_8);
80 floatImage.setY(mRoiBounds.height());
91 mRoiBounds.width(), mRoiBounds.height());
96 mRoiBounds.width(), mRoiBounds.height());
110 options.setY(1, mRoiBounds.height() - 1);
133 mUndoBitmap = Bitmap.createBitmap(mRoiBounds.width(), mRoiBounds.height(),
136 Rect undoRect = new Rect(0, 0, mRoiBounds.width(), mRoiBounds.height());
145 Bitmap createMutableBitmap(Bitmap image, int x, int y, int width, int height) { argument
146 Bitmap ret = Bitmap.createBitmap(image, x, y, width, height);
H A DRegion.java156 Bitmap createMutableBitmap(Bitmap image, int x, int y, int width, int height) { argument
157 Bitmap ret = Bitmap.createBitmap(image, x, y, width, height);
/frameworks/rs/tests/java_api/LivePreview/src/com/android/rs/livepreview/
H A DRsYuv.java68 void reset(int width, int height) { argument
73 android.util.Log.v("cpa", "reset " + width + ", " + height);
74 mHeight = height;
127 public void onSurfaceTextureAvailable(SurfaceTexture surface, int width, int height) { argument
134 public void onSurfaceTextureSizeChanged(SurfaceTexture surface, int width, int height) { argument
/frameworks/rs/tests/java_api/RsTest_11/src/com/android/rs/test/
H A DRSTestCore.java56 public void init(RenderScriptGL rs, Resources res, int width, int height) { argument
60 mHeight = height;
/frameworks/rs/tests/java_api/RsTest_14/src/com/android/rs/test/
H A DRSTestCore.java56 public void init(RenderScriptGL rs, Resources res, int width, int height) { argument
60 mHeight = height;
/frameworks/rs/tests/java_api/RsTest_16/src/com/android/rs/test/
H A DRSTestCore.java56 public void init(RenderScriptGL rs, Resources res, int width, int height) { argument
60 mHeight = height;
/frameworks/rs/tests/java_api/SSHealingBrush/src/rs/example/android/com/healingbrush/
H A DHealing.java50 Bitmap bitmap = Bitmap.createBitmap(rec.width(), rec.height(), Bitmap.Config.ALPHA_8);
81 floatImage.setY(mRoiBounds.height());
86 mRoiBounds.width(), mRoiBounds.height());
89 mRoiBounds.width(), mRoiBounds.height());
100 mUndoBitmap = Bitmap.createBitmap(mRoiBounds.width(), mRoiBounds.height(),
103 Rect undoRect = new Rect(0, 0, mRoiBounds.width(), mRoiBounds.height());
126 floatImage.setY(mRoiBounds.height());
136 mRoiBounds.width(), mRoiBounds.height());
141 mRoiBounds.width(), mRoiBounds.height());
155 options.setY(1, mRoiBounds.height()
189 createMutableBitmap(Bitmap image, int x, int y, int width, int height) argument
[all...]
H A DRegion.java147 Bitmap createMutableBitmap(Bitmap image, int x, int y, int width, int height) { argument
148 Bitmap ret = Bitmap.createBitmap(image, x, y, width, height);
/frameworks/rs/tests/java_api/SampleTest/src/com/android/rs/sample/
H A DSampleRSActivity.java55 public void onSurfaceTextureSizeChanged(SurfaceTexture surface, int width, int height) { argument
61 public void onSurfaceTextureAvailable(SurfaceTexture surface, int width, int height) { argument
/frameworks/support/core-ui/java/android/support/v4/widget/
H A DCircleImageView.java138 protected void onResize(float width, float height) { argument
139 super.onResize(width, height);
/frameworks/support/percent/src/android/support/percent/
H A DPercentFrameLayout.java61 * It is not necessary to specify {@code layout_width/height} if you specify {@code
63 * percentage value permits, you can add {@code layout_width/height="wrap_content"}. In that case
68 * You can also make one dimension be a fraction of the other by setting only width or height and
75 * This will make the aspect ratio 16:9 (1.78:1) with the width fixed at 300dp and height adjusted
184 public LayoutParams(int width, int height) { argument
185 super(width, height);
188 public LayoutParams(int width, int height, int gravity) { argument
189 super(width, height, gravity);
H A DPercentRelativeLayout.java60 * It is not necessary to specify {@code layout_width/height} if you specify {@code
62 * percentage value permits, you can add {@code layout_width/height="wrap_content"}. In that case
67 * You can also make one dimension be a fraction of the other by setting only width or height and
74 * This will make the aspect ratio 16:9 (1.78:1) with the width fixed at 300dp and height adjusted
183 public LayoutParams(int width, int height) { argument
184 super(width, height);
/frameworks/support/v17/leanback/src/android/support/v17/leanback/media/
H A DPlayerAdapter.java78 * @param height Intrinsic height of the video.
80 public void onVideoSizeChanged(PlayerAdapter adapter, int width, int height) { argument

Completed in 327 milliseconds

1234567891011>>