HomeSort by relevance Sort by last modified time
    Searched defs:viewHeight (Results 1 - 25 of 26) sorted by null

1 2

  /external/replicaisland/src/com/replica/replicaisland/
ContextParameters.java 24 public int viewHeight;
DrawableBitmap.java 69 * @param viewHeight The height of the screen.
71 public static void beginDrawing(GL10 gl, float viewWidth, float viewHeight) {
80 gl.glOrthof(0.0f, viewWidth, 0.0f, viewHeight, 0.0f, 1.0f);
114 final float viewHeight = mViewHeight;
121 || snappedY > viewHeight
  /frameworks/base/core/java/com/android/internal/widget/
FaceUnlockView.java 57 int viewHeight = resolveMeasured(heightMeasureSpec, minimumHeight);
59 final int chosenSize = Math.min(viewWidth, viewHeight);
LockPatternView.java 499 int viewHeight = resolveMeasured(heightMeasureSpec, minimumHeight);
503 viewWidth = viewHeight = Math.min(viewWidth, viewHeight);
506 viewHeight = Math.min(viewWidth, viewHeight);
509 viewWidth = Math.min(viewWidth, viewHeight);
512 // Log.v(TAG, "LockPatternView dimensions: " + viewWidth + "x" + viewHeight);
513 setMeasuredDimension(viewWidth, viewHeight);
    [all...]
  /packages/apps/InCallUI/src/com/android/incallui/
SmallerHitTargetTouchListener.java 67 final int viewHeight = v.getHeight();
78 if (viewWidth < targetMinSizeX || viewHeight < targetMinSizeY) {
90 final int maxTouchY = viewHeight - edgeIgnoreY;
  /frameworks/base/test-runner/src/android/test/
TouchUtils.java 225 final int viewHeight = v.getHeight();
228 float fromY = xy[1] + (viewHeight / 2.0f);
245 final int viewHeight = v.getHeight();
248 float y = xy[1] + (viewHeight / 2.0f);
285 final int viewHeight = v.getHeight();
288 float y = xy[1] + (viewHeight / 2.0f);
320 final int viewHeight = v.getHeight();
323 float y = xy[1] + (viewHeight / 2.0f);
381 final int viewHeight = v.getHeight();
384 float y = xy[1] + (viewHeight / 2.0f)
    [all...]
  /frameworks/support/v4/java/android/support/v4/widget/
CircleImageView.java 147 final int viewHeight = CircleImageView.this.getHeight();
148 canvas.drawCircle(viewWidth / 2, viewHeight / 2, (mCircleDiameter / 2 + mShadowRadius),
150 canvas.drawCircle(viewWidth / 2, viewHeight / 2, (mCircleDiameter / 2), paint);
  /packages/apps/FMRadio/src/com/android/fmradio/views/
FmVisualizerView.java 150 int viewHeight = getHeight();
159 float colHeight = (float) (viewHeight - paddingBottom - paddingTop);
175 float bottom = viewHeight - paddingBottom;
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
SlideshowView.java 140 int viewHeight = getHeight();
143 viewWidth / mWidth, (float) viewHeight / mHeight);
147 float centerY = viewHeight / 2 + mMovingVector.y * mProgress;
  /cts/tests/tests/widget/src/android/widget/cts/
MediaControllerTest.java 220 final int viewHeight = videoView.getHeight();
223 final float y = xy[1] + viewHeight / 2.0f;
CompoundButtonTest.java 253 int viewHeight;
270 viewHeight = compoundButton.getHeight();
287 assertEquals(viewHeight - drawableHeight, bounds.top);
288 assertEquals(viewHeight, bounds.bottom);
296 assertEquals( (viewHeight - drawableHeight) / 2, bounds.top);
297 assertEquals( (viewHeight - drawableHeight) / 2 + drawableHeight, bounds.bottom);
PopupWindowTest.java 722 final int viewHeight = mPopupWindow.getContentView().getHeight();
724 float y = xy[1] + (viewHeight / 2.0f);
    [all...]
  /external/chromium_org/third_party/webrtc/modules/video_render/android/java/src/org/webrtc/videoengine/
ViEAndroidGLES20.java 41 private int viewHeight = 0;
319 if(0 != CreateOpenGLNative(nativeObject, viewWidth, viewHeight)) {
331 viewHeight = height;
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderView.cpp 173 if (height() != viewHeight()) {
201 bool relayoutChildren = !shouldUsePrintingLayout() && (!m_frameView || width() != viewWidth() || height() != viewHeight());
380 rect.setY(viewHeight() - rect.maxY());
773 int RenderView::viewHeight(IncludeScrollbarsInRect scrollbarInclusion) const
793 return style()->isHorizontalWritingMode() ? viewHeight(ExcludeScrollbars) : viewWidth(ExcludeScrollbars);
    [all...]
  /packages/apps/Gallery/src/com/android/camera/
ImageViewTouchBase.java 205 int viewHeight = getHeight();
206 if (height < viewHeight) {
207 deltaY = (viewHeight - height) / 2 - rect.top;
210 } else if (rect.bottom < viewHeight) {
261 float viewHeight = getHeight();
270 float heightScale = Math.min(viewHeight / h, 3.0f);
278 (viewHeight - h * scale) / 2F);
  /cts/tests/tests/hardware/src/android/hardware/camera2/cts/testcases/
Camera2MultiViewTestCase.java 177 int viewHeight = textureView.getHeight();
178 RectF viewRect = new RectF(0, 0, viewWidth, viewHeight);
197 Math.max(viewWidth / (float) effectiveWidth, viewHeight / (float) effectiveHeight);
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
BaseCardView.java 443 int viewHeight = infoView.getMeasuredHeight();
444 if (viewHeight > infoHeight) {
445 viewHeight = (int) infoHeight;
450 (int) (currBottom + viewHeight));
451 currBottom += viewHeight;
452 infoHeight -= viewHeight;
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
ImageStraighten.java 207 int imageHeight, int viewWidth, int viewHeight) {
225 float scale = GeometryMathUtils.scale(iw, ih, viewWidth, viewHeight);
229 tmp.offset(viewWidth / 2f - tmp.centerX(), viewHeight / 2f - tmp.centerY());
232 imageHeight, viewWidth, viewHeight);
254 int viewHeight = canvas.getHeight();
258 imageHeight, viewWidth, viewHeight);
269 imageHeight, viewWidth, viewHeight);
281 float step = Math.max(viewWidth, viewHeight) / NBLINES;
290 canvas.drawLine(p, 0, p, viewHeight, mPaint);
  /pdk/apps/TestingCamera/src/com/android/testingcamera/
TestingCamera.java     [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
WebViewImpl.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/web/tests/
WebFrameTest.cpp     [all...]
  /cts/tests/tests/view/src/android/view/cts/
ViewTest.java     [all...]
  /prebuilts/sdk/current/support/v17/leanback/libs/
android-support-v17-leanback.jar 
  /prebuilts/sdk/current/support/v13/
android-support-v13.jar 
  /prebuilts/sdk/current/support/v4/
android-support-v4.jar 

Completed in 938 milliseconds

1 2