Searched defs:height (Results 26 - 50 of 574) sorted by relevance

1234567891011>>

/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DColorFilter_Delegate.java61 public void applyFilter(Graphics2D g, int width, int height) { argument
/frameworks/minikin/include/minikin/
H A DMinikinFontFreeType.h34 int height; member in struct:android::GlyphBitmap
/frameworks/native/include/android/
H A Dnative_window.h43 int32_t height; member in struct:ANativeWindow_Buffer
77 * Return the current height in pixels of the window surface. Returns a
91 * The width and height control the number of pixels in the buffers, not the
99 * width and height must be either both zero or both non-zero.
103 int32_t width, int32_t height, int32_t format);
/frameworks/native/include/input/
H A DVirtualKeyMap.h39 int32_t height; member in struct:android::VirtualKeyDefinition
/frameworks/native/opengl/tests/lib/
H A DWindowSurface.cpp46 uint32_t width, height; local
51 height = mainDpyInfo.w;
54 height = mainDpyInfo.h;
58 String8("Benchmark"), width, height,
/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 DGLES20RenderEngine.h50 GLuint height; member in struct:android::GLES20RenderEngine::Group
/frameworks/rs/driver/
H A DrsdFrameBufferObj.cpp131 EGLint width, height; local
133 eglQuerySurface(dc->gl.egl.display, dc->gl.egl.surface, EGL_HEIGHT, &height);
134 RSD_CALL_GL(glViewport, 0, 0, width, height);
/frameworks/av/include/media/stagefright/
H A DYUVImage.h56 YUVImage(YUVFormat yuvFormat, int32_t width, int32_t height);
60 YUVImage(YUVFormat yuvFormat, int32_t width, int32_t height, uint8_t *buffer);
68 static size_t bufferSize(YUVFormat yuvFormat, int32_t width, int32_t height);
71 int32_t height() const {return mHeight;} function in class:android::YUVImage
73 // Returns true if pixel is the range [0, width-1] x [0, height-1]
78 // Note that the range of x is [0, width-1] and the range of y is [0, height-1].
84 // Note that the range of x is [0, width-1] and the range of y is [0, height-1].
147 // Note that the range of x is [0, width-1] and the range of y is [0, height-1].
167 // Note that the range of x is [0, width-1] and the range of y is [0, height-1].
/frameworks/av/media/libmedia/
H A DIRemoteDisplayClient.cpp41 uint32_t width, uint32_t height, uint32_t flags, uint32_t session)
47 data.writeInt32(height);
82 uint32_t height = data.readInt32(); local
85 onDisplayConnected(surfaceTexture, width, height, flags, session);
40 onDisplayConnected(const sp<IGraphicBufferProducer>& bufferProducer, uint32_t width, uint32_t height, uint32_t flags, uint32_t session) argument
/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...]
H A Dpp_semaphore_chroma_inter.cpp32 height = luminance VOP height in pixels (int)
119 int height, /* i */
160 else if (nmvy > (height >> 4) - 1)
162 nmvy = (height >> 4) - 1;
176 if (((dy&0xF) != 0) && (mmvy + 1 < (height >> 4) - 1))
111 pp_semaphore_chroma_inter( int xpred, int ypred, uint8 *pp_dec_u, uint8 *pstprcTypPrv, int dx, int dy, int mvwidth, int height, int32 size, int mv_loc, uint8 msk_deblock ) argument
/frameworks/av/media/libstagefright/rtsp/
H A Drtp_test.cpp200 int32_t width, height; local
202 CHECK(decoder->getFormat()->findInt32(kKeyHeight, &height));
203 printf("INFO_FORMAT_CHANGED %d x %d\n", width, height);
/frameworks/base/core/java/android/util/
H A DSize.java22 * Immutable class for describing width and height dimensions in pixels.
29 * @param height The height of the size, in pixels
31 public Size(int width, int height) { argument
33 mHeight = height;
45 * Get the height of the size (in pixels).
46 * @return height
98 * the width and height.</p>
104 * "<i>width</i>{@code x}<i>height</i>" or
105 * "<i>width</i>{@code *}<i>height</
[all...]
H A DSizeF.java23 * Immutable class for describing width and height dimensions in some arbitrary
26 * Width and height are finite values stored as a floating point representation.
33 * <p>Both the {@code width} and the {@code height} must be a finite number.
37 * @param height The height of the size
40 * if either {@code width} or {@code height} was not finite.
42 public SizeF(final float width, final float height) { argument
44 mHeight = checkArgumentFinite(height, "height");
56 * Get the height o
[all...]
/frameworks/base/core/jni/android/graphics/
H A DPicture.cpp27 mHeight = src->height();
39 Canvas* Picture::beginRecording(int width, int height) { argument
43 mHeight = height;
44 SkCanvas* canvas = mRecorder->beginRecording(width, height, NULL, 0);
62 SkASSERT(mPicture->height() == mHeight);
68 int Picture::height() const { function in class:android::Picture
71 SkASSERT(mPicture->height() == mHeight);
83 newPict->mHeight = newPict->mPicture->height();
/frameworks/base/graphics/java/android/graphics/drawable/shapes/
H A DPathShape.java44 * @param stdHeight the standard height for the shape. Any changes to the
45 * height with resize() will result in a height scaled based
46 * on the new height divided by this height.
63 protected void onResize(float width, float height) { argument
65 mScaleY = height / mStdHeight;
H A DShape.java42 * Returns the height of the Shape.
62 * @param height the height of the shape (in pixels)
64 public final void resize(float width, float height) { argument
68 if (height < 0) {
69 height =0;
71 if (mWidth != width || mHeight != height) {
73 mHeight = height;
74 onResize(width, height);
92 * @param height th
94 onResize(float width, float height) argument
[all...]
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/widget/
H A DEmbeddedContentContainer.java25 public void onSizeChanged(int width, int height); argument
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/glrenderer/
H A DRawTexture.java29 public RawTexture(int width, int height, boolean opaque) { argument
31 setSize(width, height);
/frameworks/base/telecomm/java/android/telecom/
H A DCameraCapabilities.java44 * The height of the camera video in pixels.
54 * @param height The height of the camera video (in pixels).
56 public CameraCapabilities(boolean zoomSupported, float maxZoom, int width, int height) { argument
60 mHeight = height;
79 int height = source.readInt();
81 return new CameraCapabilities(supportsZoom, maxZoom, width, height);
139 * The height of the camera video in pixels.
/frameworks/base/tests/AccessoryDisplay/source/src/com/android/accessorydisplay/source/presentation/
H A DCubeRenderer.java85 public void onSurfaceChanged(GL10 gl, int width, int height) { argument
86 gl.glViewport(0, 0, width, height);
94 float ratio = (float) width / height;
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DColorSpace.java31 * The input data is expected to be laid out in 3 planes. The width x height Y plane, followed
39 * @param height the height of the image (must be a multiple of 2)
42 ByteBuffer input, ByteBuffer output, int width, int height) {
43 expectInputSize(input, (3 * width * height) / 2);
44 expectOutputSize(output, width * height * 4);
45 nativeYuv420pToRgba8888(input, output, width, height);
58 * @param height the height of the image
61 ByteBuffer input, ByteBuffer output, int width, int height) {
41 convertYuv420pToRgba8888( ByteBuffer input, ByteBuffer output, int width, int height) argument
60 convertArgb8888ToRgba8888( ByteBuffer input, ByteBuffer output, int width, int height) argument
79 convertRgba8888ToHsva8888( ByteBuffer input, ByteBuffer output, int width, int height) argument
98 convertRgba8888ToYcbcra8888( ByteBuffer input, ByteBuffer output, int width, int height) argument
121 nativeYuv420pToRgba8888( ByteBuffer input, ByteBuffer output, int width, int height) argument
124 nativeArgb8888ToRgba8888( ByteBuffer input, ByteBuffer output, int width, int height) argument
127 nativeRgba8888ToHsva8888( ByteBuffer input, ByteBuffer output, int width, int height) argument
130 nativeRgba8888ToYcbcra8888( ByteBuffer input, ByteBuffer output, int width, int height) argument
[all...]
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/samples/simplecamera/
H A DExposureFilter.java103 private static native float overExposureOperator(int width, int height, argument
105 private static native float underExposureOperator(int width, int height, argument
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DTextureViewActivity.java101 public void onSurfaceTextureAvailable(SurfaceTexture surface, int width, int height) { argument
107 previewSize.width, previewSize.height, Gravity.CENTER));
147 public void onSurfaceTextureSizeChanged(SurfaceTexture surface, int width, int height) { argument

Completed in 906 milliseconds

1234567891011>>