HomeSort by relevance Sort by last modified time
    Searched defs:height (Results 251 - 275 of 1547) sorted by null

<<11121314151617181920>>

  /frameworks/base/media/jni/mediaeditor/
VideoEditorPropertiesMain.cpp 94 M4OSA_UInt32 height = 0; local
279 pProperties->uiVideoHeight = height;
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
FixedRotationFilter.java 74 int height = inputFormat.getHeight(); local
83 outputFormat.setDimensions(height, width);
90 outputFormat.setDimensions(height, width);
FlipFilter.java 116 float height = (mVertical) ? -1.0f : 1.0f; local
118 ((ShaderProgram) mProgram).setSourceRect(x_origin, y_origin, width, height);
  /frameworks/base/media/mca/filterpacks/native/base/
geometry.h 81 float height() const { return height_; } function in class:android::filterfw::SlantedRect
89 float x, y, width, height; member in struct:android::filterfw::Rect
93 width = height = 1.0f;
96 Rect(float x, float y, float width, float height) {
100 this->height = height;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
TrackingPatternView.java 53 final int height = getHeight(); local
63 while (y < height) {
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
BitmapMeshActivity.java 49 final float height = mBitmap1.getHeight() / 3.0f; local
53 0.0f, height, width, height, width * 2, height, width * 4, height,
54 0.0f, height * 2, width, height * 2, width * 2, height * 2, width * 3, height * 2,
55 0.0f, height * 4, width, height * 4, width * 2, height * 4, width * 4, height * 4
    [all...]
  /frameworks/base/tests/RenderScriptTests/ImageProcessing/src/com/android/rs/image/
Blur25.java 68 int height = mInPixelsAllocation.getType().getY(); local
78 tb.setY(height);
84 mScript.set_height(height);
Grain.java 60 int height = mInPixelsAllocation.getType().getY(); local
63 int noiseH = findHighBit(height);
Mandelbrot.java 84 int height = mOutPixelsAllocation.getType().getY(); local
88 mScript.set_gDimY(height);
  /frameworks/base/tests/RenderScriptTests/ImageProcessing2/src/com/android/rs/image/
Blur25.java 64 int height = mInPixelsAllocation.getType().getY(); local
74 tb.setY(height);
80 mScript.set_height(height);
Grain.java 55 int height = mInPixelsAllocation.getType().getY(); local
58 int noiseH = findHighBit(height);
Mandelbrot.java 79 int height = mOutPixelsAllocation.getType().getY(); local
83 mScript.set_gDimY(height);
  /frameworks/native/include/ui/
ANativeObjectBase.h 33 int32_t height; member in struct:egl_native_pixmap_t
Rect.h 54 // a valid rectangle has a non negative width and height
56 return (width()>=0) && (height()>=0);
59 // an empty rect has a zero width or height, or is invalid
61 return (width()<=0) || (height()<=0);
73 // rectangle's height
83 inline int32_t height() const { return getHeight(); } function in class:android::Rect
154 // the origin and extending to (width, height). If the transform includes
156 // (height, width). Otherwise the output rectangle is in the same space as
158 Rect transform(uint32_t xform, int32_t width, int32_t height) const;
  /frameworks/native/opengl/tests/hwc/
hwcTestLib.h 42 uint32_t wMod, hMod; // Width/height mod this value must equal zero
89 // Dimension - width and height of a rectanguler area
95 uint32_t height(void) const { return _h; } function in class:HwcTestDim
109 EGLint *width, EGLint *height);
  /hardware/libhardware/include/hardware/
fb.h 46 const uint32_t height; member in struct:framebuffer_device_t
98 * return -EINVAL if width or height <=0, or if left or top < 0
101 int left, int top, int width, int height);
107 * buffer must be the same width and height as the display and must NOT
  /packages/apps/Camera/jni/feature_mos/src/mosaic/
AlignFeatures.h 61 int initialize(int width, int height, bool quarter_res, float thresh_still);
85 int width,height; member in class:Align
Mosaic.h 45 int height = 480;
53 mosaic.initialize(blendingType, stripType, width, height, -1, false, 5.0f);
92 * \param height Height of input images (note: all images must be same size)
98 int initialize(int blendingType, int stripType, int width, int height, int nframes = -1, bool quarter_res = false, float thresh_still = 0.0);
124 * \param height Height of the resulting mosaic (returned)
127 ImageType getMosaic(int &width, int &height);
157 int width, height; member in class:Mosaic
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
ExtTexture.java 40 int height = getHeight(); local
43 // height. Negative value of width or height means flip.
45 sCropRect[1] = height;
47 sCropRect[3] = -height;
  /packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
AlignFeatures.h 61 int initialize(int width, int height, bool quarter_res, float thresh_still);
85 int width,height; member in class:Align
Mosaic.h 45 int height = 480;
53 mosaic.initialize(blendingType, stripType, width, height, -1, false, 5.0f);
92 * \param height Height of input images (note: all images must be same size)
98 int initialize(int blendingType, int stripType, int width, int height, int nframes = -1, bool quarter_res = false, float thresh_still = 0.0);
124 * \param height Height of the resulting mosaic (returned)
127 ImageType getMosaic(int &width, int &height);
157 int width, height; member in class:Mosaic
  /sdk/emulator/opengl/tests/emulator_test_renderer/
main.cpp 40 int width, height; local
47 if (env && sscanf(env, "%dx%d", &width, &height) == 2) {
49 winHeight = height;
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/
CaptureRenderer.java 40 d.height += node.marginTop + node.marginBottom;
55 int height = icon.getIconHeight(); local
58 int y = (getHeight() - height) / 2;
70 height - node.paddingBottom - node.paddingTop);
81 node.marginTop + height + node.marginBottom);
  /sdk/hierarchyviewer2/libs/hierarchyviewerlib/src/com/android/hierarchyviewerlib/ui/
PixelPerfectPixelPanel.java 61 int height = PREFERRED_HEIGHT; local
63 return new Point(width, height);
78 e.gc.fillRectangle(0, 0, getBounds().width, getBounds().height);
109 - (mImage.getBounds().height - mOverlayImage.getBounds().height);
112 && yInOverlay < mOverlayImage.getBounds().height) {
  /system/core/adb/
framebuffer_service.c 44 unsigned int height; member in struct:fbinfo
93 fbinfo.height = h;
107 fbinfo.height = h;
121 fbinfo.height = h;
135 fbinfo.height = h;
149 fbinfo.height = h;

Completed in 831 milliseconds

<<11121314151617181920>>