Searched defs:height (Results 1 - 25 of 280) sorted by relevance

1234567891011>>

/packages/wallpapers/MagicSmoke/src/com/android/magicsmoke/
H A DMagicSmoke.java22 protected MagicSmokeRS createScene(int width, int height) { argument
23 return new MagicSmokeRS(this, width, height);
/packages/apps/Camera/jni/feature_mos/src/mosaic/
H A DPyramid.h35 real width, height; // Width and height of input images member in class:PyramidShort
40 static PyramidShort *allocatePyramidPacked(real width, real height, real levels, real border = 0);
41 static PyramidShort *allocateImage(real width, real height, real border);
45 static unsigned int calcStorage(real width, real height, real border2, int levels, int *lines);
/packages/apps/Gallery2/jni/filters/
H A Dexposure.c19 void JNIFUNCF(ImageFilterExposure, nativeApplyFilter, jobject bitmap, jint width, jint height, jfloat bright) argument
25 int len = width * height * 4;
H A Dnegative.c19 void JNIFUNCF(ImageFilterNegative, nativeApplyFilter, jobject bitmap, jint width, jint height) argument
24 int tot_len = height * width * 4;
H A Dredeye.c20 void JNIFUNCF(ImageFilterRedEye, nativeApplyFilter, jobject bitmap, jint width, jint height, jshortArray vrect) argument
27 filterRedEye(rgb,rgb,width,height,rect);
H A Dcontrast.c39 void JNIFUNCF(ImageFilterContrast, nativeApplyFilter, jobject bitmap, jint width, jint height, jfloat bright) argument
45 int len = width * height * 4;
H A Dgradient.c19 void JNIFUNCF(ImageFilter, nativeApplyGradientFilter, jobject bitmap, jint width, jint height, argument
35 int len = width * height * 4;
H A Dhighlight.c21 jint width, jint height, jfloatArray luminanceMap){
26 int len = width * height * 4;
20 JNIFUNCF(ImageFilterHighlights, nativeApplyFilter, jobject bitmap, jint width, jint height, jfloatArray luminanceMap) argument
H A Dhue.c19 void JNIFUNCF(ImageFilterHue, nativeApplyFilter, jobject bitmap, jint width, jint height, jfloatArray matrix) argument
25 int len = width * height * 4;
H A Dshadows.c20 void JNIFUNCF(ImageFilterShadows, nativeApplyFilter, jobject bitmap, jint width, jint height, float scale){ argument
34 int len = width * height * 4;
/packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
H A DPyramid.h35 real width, height; // Width and height of input images member in class:PyramidShort
40 static PyramidShort *allocatePyramidPacked(real width, real height, real levels, real border = 0);
41 static PyramidShort *allocateImage(real width, real height, real border);
45 static unsigned int calcStorage(real width, real height, real border2, int levels, int *lines);
/packages/apps/Camera/jni/feature_mos/src/mosaic_renderer/
H A DFrameBuffer.cpp24 bool FrameBuffer::Init(int width, int height, GLenum format) { argument
37 height,
65 mHeight = height;
/packages/apps/Camera/src/com/android/camera/
H A DMosaicRenderer.java41 * Pass the drawing surface's width and height to initialize the
45 * @param height height of the drawing surface in pixels.
48 public static native void reset(int width, int height, boolean isLandscapeOrientation); argument
H A DPanoUtil.java45 public static void decodeYUV420SPQuarterRes(int[] rgb, byte[] yuv420sp, int width, int height) { argument
46 final int frameSize = width * height;
48 for (int j = 0, ypd = 0; j < height; j += 4) {
/packages/apps/Camera2/src/com/android/camera/
H A DPanoUtil.java45 public static void decodeYUV420SPQuarterRes(int[] rgb, byte[] yuv420sp, int width, int height) { argument
46 final int frameSize = width * height;
48 for (int j = 0, ypd = 0; j < height; j += 4) {
/packages/apps/Camera2/src/com/android/camera/session/
H A DStackSaver.java34 * @param height the height of the image in pixels
41 public Uri saveStackedImage(File inputImagePath, String title, int width, int height, argument
/packages/apps/Camera2/src/com/android/camera/tinyplanet/
H A DTinyPlanetNative.java34 * @param height the height of the input image.
36 * @param outputSize the width and height of the square output image.
40 public static native void process(Bitmap in, int width, int height, Bitmap out, int outputSize, argument
/packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
H A DCanvasTexture.java30 public CanvasTexture(int width, int height) { argument
32 setSize(width, height);
/packages/apps/LegacyCamera/jni/feature_mos/src/mosaic_renderer/
H A DFrameBuffer.cpp24 bool FrameBuffer::Init(int width, int height, GLenum format) { argument
37 height,
63 mHeight = height;
/packages/apps/LegacyCamera/src/com/android/camera/panorama/
H A DPanoUtil.java45 public static void decodeYUV420SPQuarterRes(int[] rgb, byte[] yuv420sp, int width, int height) { argument
46 final int frameSize = width * height;
48 for (int j = 0, ypd = 0; j < height; j += 4) {
/packages/apps/Messaging/src/com/android/messaging/datamodel/data/
H A DMediaPickerMessagePartData.java26 final Uri contentUri, final int width, final int height) {
27 this(startRect, null /* messageText */, contentType, contentUri, width, height);
31 final String contentType, final Uri contentUri, final int width, final int height) {
32 this(startRect, messageText, contentType, contentUri, width, height,
37 final Uri contentUri, final int width, final int height,
39 this(startRect, null /* messageText */, contentType, contentUri, width, height,
44 final String contentType, final Uri contentUri, final int width, final int height,
46 super(messageText, contentType, contentUri, width, height, onlySingleAttachment);
25 MediaPickerMessagePartData(final Rect startRect, final String contentType, final Uri contentUri, final int width, final int height) argument
30 MediaPickerMessagePartData(final Rect startRect, final String messageText, final String contentType, final Uri contentUri, final int width, final int height) argument
36 MediaPickerMessagePartData(final Rect startRect, final String contentType, final Uri contentUri, final int width, final int height, final boolean onlySingleAttachment) argument
43 MediaPickerMessagePartData(final Rect startRect, final String messageText, final String contentType, final Uri contentUri, final int width, final int height, final boolean onlySingleAttachment) argument
/packages/apps/Settings/src/com/android/settings/applications/
H A DSpacePreference.java28 * A blank preference that has a specified height by android:layout_height. It can be used
51 public void setHeight(int height) { argument
52 mHeight = height;
/packages/apps/UnifiedEmail/src/com/android/mail/ui/
H A DLeaveBehindData.java27 final int height; field in class:LeaveBehindData
29 public LeaveBehindData(Conversation conv, ToastBarOperation undoOp, int height) { argument
32 this.height = height;
44 arg.writeInt(height);
50 height = arg.readInt();
/packages/experimental/CameraPreviewTest/src/com/example/android/videochatcameratest/
H A DCameraPreviewView.java38 public void surfaceChanged(SurfaceHolder holder, int format, int width, int height) { argument
/packages/apps/Camera2/src/com/android/camera/burst/
H A DBurstController.java56 private final int height; field in class:BurstController.ImageStreamProperties
60 public ImageStreamProperties(int width, int height, argument
64 this.height = height;
74 return height;

Completed in 571 milliseconds

1234567891011>>