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

<<11121314151617181920>>

/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/opt/net/ims/src/java/com/android/ims/internal/
H A DImsVideoCallProviderWrapper.java88 public void changePeerDimensions(int width, int height) { argument
91 args.arg2 = height;
141 int height = (int) args.arg2;
142 changePeerDimensions(width, height);
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DBrowseRowsFrameLayout.java50 getPaddingTop() + getPaddingBottom() + heightUsed, lp.height);
/frameworks/support/v17/tests/src/android/support/v17/leanback/widget/
H A DPresenterTest.java105 assertEquals("Controls card right panel layout height",
106 vh.view.findViewById(R.id.controls_card_right_panel).getLayoutParams().height,
108 assertEquals("Description dock layout height",
109 vh.view.findViewById(R.id.description_dock).getLayoutParams().height,
116 AssertHelper.assertGreaterThan("Controls card right panel layout height",
117 vh.view.findViewById(R.id.controls_card_right_panel).getLayoutParams().height, 0);
118 assertEquals("Description dock layout height",
119 vh.view.findViewById(R.id.description_dock).getLayoutParams().height, 0);
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DActionMenuView.java463 int height = v.getMeasuredHeight();
473 int t = midVertical - (height / 2);
474 int b = t + height;
494 final int height = v.getMeasuredHeight();
497 final int t = midVertical - height / 2;
498 v.layout(l, t, l + width, t + height);
516 int height = v.getMeasuredHeight();
517 int t = midVertical - height / 2;
518 v.layout(startRight - width, t, startRight, t + height);
532 int height
821 LayoutParams(int width, int height) argument
826 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:__anon525
206 OMX_INT height; /** Height of the rectangle, in the y-direction */ member in struct:__anon527
/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:__anon569
206 OMX_INT height; /** Height of the rectangle, in the y-direction */ member in struct:__anon571
/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:__anon613
206 OMX_INT height; /** Height of the rectangle, in the y-direction */ member in struct:__anon615
/frameworks/av/media/libstagefright/include/
H A DSoftVideoDecoderOMXComponent.h40 int32_t height,
78 bool *portWillReset, uint32_t width, uint32_t height,
H A Davc_utils.h47 int32_t *width, int32_t *height,
98 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,
/frameworks/base/core/java/android/app/
H A DIUiAutomationConnection.aidl40 Bitmap takeScreenshot(int width, int height);
H A DMediaRouteButton.java222 final int height = getHeight();
223 final int midy = screenPos[1] + height / 2;
227 if (midy < displayFrame.height()) {
230 screenWidth - screenPos[0] - width / 2, height);
233 cheatSheet.setGravity(Gravity.BOTTOM | Gravity.CENTER_HORIZONTAL, 0, height);
336 final int height = Math.max(mMinHeight, mRemoteIndicator != null ?
359 measuredHeight = Math.min(heightSize, height);
363 measuredHeight = height;
/frameworks/base/core/java/android/hardware/camera2/marshal/impl/
H A DMarshalQueryableHighSpeedVideoConfiguration.java32 * <p>Data is stored as {@code (width, height, fpsMin, fpsMax)} tuples (int32).</p>
58 int height = buffer.getInt();
63 return new HighSpeedVideoConfiguration(width, height, fpsMin, fpsMax, batchSizeMax);
H A DMarshalQueryableMeteringRectangle.java65 int height = yMax - yMin;
67 return new MeteringRectangle(xMin, yMin, width, height, weight);
/frameworks/base/core/jni/android/graphics/
H A DBitmap.h66 int height() const { return info().height(); } function in class:android::Bitmap
/frameworks/base/core/jni/
H A Dandroid_view_HardwareLayer.cpp45 jlong layerUpdaterPtr, jint width, jint height, jboolean isOpaque) {
48 changed |= layer->setSize(width, height);
44 android_view_HardwareLayer_prepare(JNIEnv* env, jobject clazz, jlong layerUpdaterPtr, jint width, jint height, jboolean isOpaque) argument

Completed in 799 milliseconds

<<11121314151617181920>>