HomeSort by relevance Sort by last modified time
    Searched refs:imageHeight (Results 1 - 25 of 105) sorted by null

1 2 3 4 5

  /external/chromium_org/remoting/android/java/src/org/chromium/chromoting/
RenderData.java 21 public int imageHeight = 0;
TrackingInputHandler.java 119 if (newY > mRenderData.imageHeight) newY = mRenderData.imageHeight;
148 float[] rectScreen = {0, 0, mRenderData.imageWidth, mRenderData.imageHeight};
192 if (mRenderData.imageWidth == 0 || mRenderData.imageHeight == 0) {
203 float[] imageSize = {mRenderData.imageWidth, mRenderData.imageHeight};
210 (float) mRenderData.screenHeight / mRenderData.imageHeight);
  /external/chromium_org/third_party/angle/tests/perf_tests/
TexSubImage.h 12 int imageHeight;
TexSubImage.cpp 19 << " - " << imageWidth << "x" << imageHeight
53 glTexStorage2DEXT(GL_TEXTURE_2D, 1, GL_RGBA8, mParams.imageWidth, mParams.imageHeight);
189 rand() % (mParams.imageHeight - mParams.subImageHeight),
SimpleBenchmarks.cpp 94 params.imageHeight = 1024;
  /developers/build/prebuilts/gradle/Notifications/Wearable/src/main/java/com/example/android/support/wearable/notifications/
AnimatedNotificationDisplayActivity.java 126 int imageHeight = imageView.getDrawable().getIntrinsicHeight();
128 if (imageWidth > imageHeight) {
129 imageWidth = minSize * imageWidth / imageHeight;
130 imageHeight = minSize;
132 imageHeight = minSize * imageHeight / imageWidth;
135 imageView.layout(left, top, left + imageWidth, top + imageHeight);
  /developers/samples/android/wearable/wear/Notifications/Wearable/src/main/java/com/example/android/support/wearable/notifications/
AnimatedNotificationDisplayActivity.java 126 int imageHeight = imageView.getDrawable().getIntrinsicHeight();
128 if (imageWidth > imageHeight) {
129 imageWidth = minSize * imageWidth / imageHeight;
130 imageHeight = minSize;
132 imageHeight = minSize * imageHeight / imageWidth;
135 imageView.layout(left, top, left + imageWidth, top + imageHeight);
  /development/samples/browseable/Notifications/Wearable/src/com.example.android.support.wearable.notifications/
AnimatedNotificationDisplayActivity.java 126 int imageHeight = imageView.getDrawable().getIntrinsicHeight();
128 if (imageWidth > imageHeight) {
129 imageWidth = minSize * imageWidth / imageHeight;
130 imageHeight = minSize;
132 imageHeight = minSize * imageHeight / imageWidth;
135 imageView.layout(left, top, left + imageWidth, top + imageHeight);
  /external/deqp/modules/gles2/functional/
es2fPrerequisiteTests.cpp 183 int imageHeight = 0;
195 imageHeight = targetHeight;
202 imageHeight = targetHeight / 2;
209 imageHeight = targetHeight - y;
215 imageHeight = 1 + (deRandom_getUint32(&rnd) % (targetHeight - y - 1));
219 Surface resImage(imageWidth, imageHeight);
220 Surface refImage(imageWidth, imageHeight);
221 Surface diffImage(imageWidth, imageHeight);
239 for (int j = 0; j < imageHeight; j++)
  /external/deqp/modules/gles3/functional/
es3fPrerequisiteTests.cpp 183 int imageHeight = 0;
195 imageHeight = targetHeight;
202 imageHeight = targetHeight / 2;
209 imageHeight = targetHeight - y;
215 imageHeight = 1 + (deRandom_getUint32(&rnd) % (targetHeight - y - 1));
219 Surface resImage(imageWidth, imageHeight);
220 Surface refImage(imageWidth, imageHeight);
221 Surface diffImage(imageWidth, imageHeight);
239 for (int j = 0; j < imageHeight; j++)
  /frameworks/base/packages/WallpaperCropper/src/com/android/wallpapercropper/
CropView.java 73 final float imageHeight = mRenderer.source.getImageHeight();
76 imageDims[1] = imageHeight;
88 final float imageHeight = imageDims[1];
98 rendererCenter[1] += imageHeight / 2;
103 float centerY = (height / 2f - rendererCenter[1] + (imageHeight - height) / 2f)
107 float topEdge = centerY - imageHeight / 2f * scale;
108 float bottomEdge = centerY + imageHeight / 2f * scale;
166 final float imageHeight = imageDims[1];
167 mMinScale = Math.max(w / imageWidth, h / imageHeight);
  /packages/apps/Launcher3/WallpaperPicker/src/com/android/launcher3/
CropView.java 73 final float imageHeight = mRenderer.source.getImageHeight();
76 imageDims[1] = imageHeight;
88 final float imageHeight = imageDims[1];
98 rendererCenter[1] += imageHeight / 2;
103 float centerY = (height / 2f - rendererCenter[1] + (imageHeight - height) / 2f)
107 float topEdge = centerY - imageHeight / 2f * scale;
108 float bottomEdge = centerY + imageHeight / 2f * scale;
166 final float imageHeight = imageDims[1];
167 mMinScale = Math.max(w / imageWidth, h / imageHeight);
  /packages/apps/Camera2/src/com/android/camera/data/
LocalDataUtil.java 107 * @param imageHeight Image height.
116 int imageHeight, int widthBound, int heightBound, int orientation,
123 int dummy = imageHeight;
124 imageHeight = imageWidth;
131 int targetHeight = imageHeight;
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/ui/
DrawUtils.java 102 int imageHeight = image.getBounds().height;
106 if (imageWidth <= targetRectangle.width && imageHeight <= targetRectangle.height) {
108 newImageHeight = imageHeight;
114 double k_h = targetRectangle.height / (double) imageHeight;
119 newImageHeight = (int) (imageHeight * k);
124 gc.drawImage(image, 0, 0, imageWidth, imageHeight, destX, destY, newImageWidth, newImageHeight);
232 int imageHeight = imageBounds.height;
233 if (imageWidth < minWidth && imageHeight < minHeight) {
250 } else if (imageWidth <= maxWidth && imageHeight <= maxHeight) {
254 double kY = (double) maxHeight / imageHeight;
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
ImageStraighten.java 207 int imageHeight, int viewWidth, int viewHeight) {
208 tmp.set(0, 0, imageHeight, imageWidth);
217 tmp.set(0, 0, imageHeight, imageWidth);
218 iw = imageHeight;
221 tmp.set(0, 0, imageWidth, imageHeight);
223 ih = imageHeight;
232 imageHeight, viewWidth, viewHeight);
237 FilterCropRepresentation.findNormalizedCrop(mCrop, imageWidth, imageHeight);
252 int imageHeight = image.getHeight();
258 imageHeight, viewWidth, viewHeight)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/widgets/
ImageCanvas.java 118 int imageWidth, imageHeight;
121 imageHeight = mImage.getBounds().height;
124 imageHeight = client.height;
128 mVerticalScrollBar.setMaximum(imageHeight);
130 mVerticalScrollBar.setThumb(Math.min(imageHeight, client.height));
133 int vPage = imageHeight - client.height;
  /external/opencv/cv/src/
cvoptflowhs.cpp 108 int imageHeight = imgSize.height;
177 BufferSize = imageHeight * imageWidth;
215 for( i = 1; i < imageHeight - 1; i++ )
226 MemX[0][imageHeight - 1] =
227 MemX[1][imageHeight - 1] = CONV( imgA[pixNumber - imgStep],
238 LastLine = imgStep * (imageHeight - 1);
239 while( ConvLine < imageHeight )
326 for( i = 0; i < imageHeight; i++ )
340 LastLine = velStep * (imageHeight - 1);
351 for( i = 0; i < imageHeight; i++
    [all...]
cvoptflowlk.cpp 111 int imageHeight = imgSize.height;
156 if( imageHeight < winHeight )
252 for( i = 1; i < imageHeight - 1; i++ )
263 MemX[0][imageHeight - 1] =
264 MemX[1][imageHeight - 1] = CONV( imgA[pixNumber - imgStep],
276 while( PixelLine < imageHeight )
278 if( ConvLine < imageHeight )
292 if( L3 >= imageHeight )
293 L3 = imageHeight - 1;
464 if( PixelLine >= imageHeight - VerRadius
    [all...]
  /external/chromium_org/third_party/mesa/src/src/glx/
pixelstore.c 93 state->storePack.imageHeight = a;
154 state->storeUnpack.imageHeight = a;
240 state->storePack.imageHeight = param;
295 state->storeUnpack.imageHeight = param;
pixel.c 170 GLint imageHeight = state->storeUnpack.imageHeight;
192 if (imageHeight > 0) {
193 rowsPerImage = imageHeight;
397 GLint imageHeight = state->storePack.imageHeight;
418 if (imageHeight > 0) {
419 rowsPerImage = imageHeight;
  /external/mesa3d/src/glx/
pixelstore.c 93 state->storePack.imageHeight = a;
154 state->storeUnpack.imageHeight = a;
240 state->storePack.imageHeight = param;
295 state->storeUnpack.imageHeight = param;
pixel.c 170 GLint imageHeight = state->storeUnpack.imageHeight;
192 if (imageHeight > 0) {
193 rowsPerImage = imageHeight;
397 GLint imageHeight = state->storePack.imageHeight;
418 if (imageHeight > 0) {
419 rowsPerImage = imageHeight;
  /developers/build/prebuilts/gradle/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/
ImageResizer.java 46 * @param imageHeight
48 public ImageResizer(Context context, int imageWidth, int imageHeight) {
50 setImageSize(imageWidth, imageHeight);
  /developers/samples/android/ui/graphics/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/
ImageResizer.java 46 * @param imageHeight
48 public ImageResizer(Context context, int imageWidth, int imageHeight) {
50 setImageSize(imageWidth, imageHeight);
  /development/samples/browseable/DisplayingBitmaps/src/com.example.android.displayingbitmaps/util/
ImageResizer.java 46 * @param imageHeight
48 public ImageResizer(Context context, int imageWidth, int imageHeight) {
50 setImageSize(imageWidth, imageHeight);

Completed in 696 milliseconds

1 2 3 4 5