Searched refs:height (Results 301 - 325 of 1273) sorted by relevance

<<11121314151617181920>>

/frameworks/base/libs/hwui/tests/common/scenes/
H A DOvalAnimation.cpp31 void createContent(int width, int height, TestCanvas& canvas) override {
/frameworks/base/media/java/android/media/projection/
H A DMediaProjection.java101 int width, int height, int dpi, boolean isSecure, @Nullable Surface surface,
105 return dm.createVirtualDisplay(this, name, width, height, dpi, surface,
117 * @param height The height of the virtual display in pixels. Must be
134 int width, int height, int dpi, int flags, @Nullable Surface surface,
138 this, name, width, height, dpi, surface, flags, callback, handler);
100 createVirtualDisplay(@onNull String name, int width, int height, int dpi, boolean isSecure, @Nullable Surface surface, @Nullable VirtualDisplay.Callback callback, @Nullable Handler handler) argument
133 createVirtualDisplay(@onNull String name, int width, int height, int dpi, int flags, @Nullable Surface surface, @Nullable VirtualDisplay.Callback callback, @Nullable Handler handler) argument
/frameworks/base/media/jni/
H A Dandroid_media_Utils.cpp619 width = (buffer->width + buffer->stride * (buffer->height - 1)) * 4;
681 dataSize = buffer->stride * (buffer->height - 1) + buffer->width;
685 dataSize = buffer->chromaStride * (buffer->height / 2 - 1) +
691 cr = buffer->data + (buffer->stride * buffer->height);
694 ySize = buffer->width * (buffer->height - 1) + buffer->width;
695 cSize = buffer->width * (buffer->height / 2 - 1) + buffer->width - 1;
713 ySize = buffer->stride * buffer->height;
716 cSize = cStride * buffer->height / 2;
734 dataSize = buffer->stride * buffer->height;
744 dataSize = buffer->stride * buffer->height * bytesPerPixe
[all...]
/frameworks/base/media/mca/filterfw/jni/
H A Djni_gl_frame.h31 jint height);
39 jint height);
47 jint height);
94 jint height);
/frameworks/base/packages/PrintSpooler/jni/
H A Dcom_android_printspooler_util_BitmapSerializeUtils.cpp107 if (readInfo.width != targetInfo.width || readInfo.height != targetInfo.height
123 size_t byteCount = readInfo.stride * readInfo.height;
162 size_t byteCount = info.stride * info.height;
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DSurfaceHolderTarget.java48 public void surfaceChanged(SurfaceHolder holder, int format, int width, int height) {
154 surfRect.height());
170 if (targetRect.width() > 0 && targetRect.height() > 0) {
171 canvas.scale(surfaceRect.width(), surfaceRect.height());
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DHardwareCanvasSurfaceViewActivity.java96 public void surfaceChanged(SurfaceHolder holder, int format, int width, int height) { argument
97 mThread.setSize(width, height);
114 void setSize(int width, int height) { argument
116 mHeight = height;
/frameworks/minikin/include/minikin/
H A DMinikinFontFreeType.h34 int height; member in struct:android::GlyphBitmap
/frameworks/native/include/input/
H A DVirtualKeyMap.h39 int32_t height; member in struct:android::VirtualKeyDefinition
/frameworks/native/opengl/tests/testPauseResume/src/com/android/test/
H A DTestView.java75 public void onSurfaceChanged(GL10 gl, int width, int height) { argument
/frameworks/native/services/surfaceflinger/RenderEngine/
H A DTexture.h44 void setDimensions(size_t width, size_t height);
/frameworks/support/v17/leanback/tests/java/android/support/v17/leanback/widget/
H A DPresenterTest.java111 assertEquals("Controls card right panel layout height",
112 vh.view.findViewById(R.id.controls_card_right_panel).getLayoutParams().height,
114 assertEquals("Description dock layout height",
115 vh.view.findViewById(R.id.description_dock).getLayoutParams().height,
122 AssertHelper.assertGreaterThan("Controls card right panel layout height",
123 vh.view.findViewById(R.id.controls_card_right_panel).getLayoutParams().height, 0);
124 assertEquals("Description dock layout height",
125 vh.view.findViewById(R.id.description_dock).getLayoutParams().height, 0);
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DActionMenuView.java465 int height = v.getMeasuredHeight();
475 int t = midVertical - (height / 2);
476 int b = t + height;
496 final int height = v.getMeasuredHeight();
499 final int t = midVertical - height / 2;
500 v.layout(l, t, l + width, t + height);
518 int height = v.getMeasuredHeight();
519 int t = midVertical - height / 2;
520 v.layout(startRight - width, t, startRight, t + height);
534 int height
841 LayoutParams(int width, int height) argument
846 LayoutParams(int width, int height, boolean isOverflowButton) argument
[all...]
/frameworks/webview/chromium/plat_support/
H A Ddraw_gl.h55 // Input: current width/height of destination surface.
57 int height; member in struct:AwDrawGLInfo
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
H A Dget_pred_outside.cpp36 height = height of the VOP in pixels (y axis); full-pel resolution;
247 int height, /* i */
268 if (ypos > ((height - 1) << 1)) ypos = (height - 1) << 1;
301 else if ((ypos >> 1) < (height - B_SIZE)) /* pad left of frame */
332 prev = c_prev + width * (height - 8);
350 ptr = pred + 8 + (((ypos >> 1) - (height - 8)) << 4) + (xpos >> 1);
399 prev = c_prev + width * (height - 8) + (xpos >> 1) - xoffset;
419 ptr = pred + (((ypos >> 1) - (height
241 GetPredOutside( int xpos, int ypos, uint8 *c_prev, uint8 *pred_block, int width, int height, int rnd1, int pred_width ) argument
[all...]
/frameworks/av/media/ndk/
H A DNdkImageReader.cpp143 AImageReader::AImageReader(int32_t width, int32_t height, int32_t format, int32_t maxImages) : argument
144 mWidth(width), mHeight(height), mFormat(format), mMaxImages(maxImages),
403 return buffer->height;
440 int32_t width, int32_t height, int32_t format, int32_t maxImages,
444 if (width < 1 || height < 1) {
446 __FUNCTION__, width, height);
467 //*reader = new AImageReader(width, height, format, maxImages);
468 AImageReader* tmpReader = new AImageReader(width, height, format, maxImages);
518 media_status_t AImageReader_getHeight(const AImageReader* reader, /*out*/int32_t* height) { argument
520 if (reader == nullptr || height
439 AImageReader_new( int32_t width, int32_t height, int32_t format, int32_t maxImages, AImageReader** reader) argument
[all...]
/frameworks/base/core/java/com/android/internal/widget/
H A DActionBarContextView.java125 layoutParams.height = mContentHeight;
137 public void setContentHeight(int height) { argument
138 mContentHeight = height;
239 layoutParams.height = mContentHeight;
321 final int height = maxHeight - verticalPadding;
322 final int childSpecHeight = MeasureSpec.makeMeasureSpec(height, MeasureSpec.AT_MOST);
357 final int customHeightMode = lp.height != LayoutParams.WRAP_CONTENT ?
359 final int customHeight = lp.height >= 0 ?
360 Math.min(lp.height, height)
[all...]
/frameworks/base/media/java/android/media/
H A DThumbnailUtils.java176 int height = bitmap.getHeight();
177 int max = Math.max(width, height);
181 int h = Math.round(scale * height);
198 * @param height targeted height
201 Bitmap source, int width, int height) {
202 return extractThumbnail(source, width, height, OPTIONS_NONE);
210 * @param height targeted height
214 Bitmap source, int width, int height, in
200 extractThumbnail( Bitmap source, int width, int height) argument
213 extractThumbnail( Bitmap source, int width, int height, int options) argument
[all...]
/frameworks/av/camera/aidl/android/hardware/camera2/
H A DICameraDeviceUser.aidl82 * <p>Create an input stream of width, height, and format</p>
85 * @param height Height of the input buffers
90 int createInputStream(int width, int height, int format);
/frameworks/av/cmds/stagefright/
H A Drecord.cpp47 DummySource(int width, int height, int colorFormat)
49 mHeight(height),
51 mSize((width * height * 3) / 2) {
201 int width, height;
203 success = success && meta->findInt32(kKeyHeight, &height);
207 int height = 480;
208 sp<MediaSource> decoder = new DummySource(width, height, colorFormat);
216 enc_meta->setInt32("height", height);
220 // enc_meta->setInt32("slice-height", heigh
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/api/
H A Domxtypes.h184 * and height in the y-direction */
189 OMX_INT height; /** Height in the y-direction. */ member in struct:__anon528
206 OMX_INT height; /** Height of the rectangle, in the y-direction */ member in struct:__anon530
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/api/
H A Domxtypes.h184 * and height in the y-direction */
189 OMX_INT height; /** Height in the y-direction. */ member in struct:__anon572
206 OMX_INT height; /** Height of the rectangle, in the y-direction */ member in struct:__anon574
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/api/
H A Domxtypes.h184 * and height in the y-direction */
189 OMX_INT height; /** Height in the y-direction. */ member in struct:__anon616
206 OMX_INT height; /** Height of the rectangle, in the y-direction */ member in struct:__anon618
/frameworks/av/media/libstagefright/include/
H A Davc_utils.h47 int32_t *width, int32_t *height,
99 const uint8_t *data, size_t size, int32_t *width, int32_t *height);
/frameworks/av/media/libstagefright/wifi-display/
H A DVideoFormats.h40 size_t width, height, framesPerSecond; member in struct:android::VideoFormats::config_t
91 size_t *width, size_t *height, size_t *framesPerSecond,

Completed in 1700 milliseconds

<<11121314151617181920>>