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

  /external/webkit/WebCore/rendering/
SVGRenderSupport.cpp 217 int viewHeight = frameView->visibleHeight();
222 if (size.height() > viewHeight)
223 size.setHeight(viewHeight);
RenderView.cpp 84 setHeight(viewHeight());
118 bool relayoutChildren = !printing() && (!m_frameView || width() != viewWidth() || height() != viewHeight());
634 int RenderView::viewHeight() const
  /frameworks/base/test-runner/src/android/test/
TouchUtils.java 236 final int viewHeight = v.getHeight();
239 float fromY = xy[1] + (viewHeight / 2.0f);
256 final int viewHeight = v.getHeight();
259 float y = xy[1] + (viewHeight / 2.0f);
296 final int viewHeight = v.getHeight();
299 float y = xy[1] + (viewHeight / 2.0f);
331 final int viewHeight = v.getHeight();
334 float y = xy[1] + (viewHeight / 2.0f);
392 final int viewHeight = v.getHeight();
395 float y = xy[1] + (viewHeight / 2.0f)
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
MediaControllerTest.java 295 final int viewHeight = videoView.getHeight();
298 final float y = xy[1] + viewHeight / 2.0f;
CompoundButtonTest.java 337 int viewHeight;
353 viewHeight = compoundButton.getHeight();
370 assertEquals(viewHeight - drawableHeight, bounds.top);
371 assertEquals(viewHeight, bounds.bottom);
379 assertEquals( (viewHeight - drawableHeight) / 2, bounds.top);
380 assertEquals( (viewHeight - drawableHeight) / 2 + drawableHeight, bounds.bottom);
PopupWindowTest.java     [all...]
  /frameworks/base/core/java/android/widget/
FastScroller.java 457 final int viewHeight = mList.getHeight();
462 } else if (newThumbY + mThumbH > viewHeight) {
463 newThumbY = viewHeight - mThumbH;
471 scrollTo((float) mThumbY / (viewHeight - mThumbH));
  /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);
  /packages/apps/Gallery3D/src/com/cooliris/media/
ImageViewTouchBase.java 190 int viewHeight = getHeight();
191 if (height < viewHeight) {
192 deltaY = (viewHeight - height) / 2 - rect.top;
195 } else if (rect.bottom < viewHeight) {
246 float viewHeight = getHeight();
255 float heightScale = Math.min(viewHeight / h, 2.0f);
261 matrix.postTranslate((viewWidth - w * scale) / 2F, (viewHeight - h * scale) / 2F);
  /frameworks/base/core/java/com/android/internal/widget/
LockPatternView.java 451 int viewHeight = height;
454 viewWidth = viewHeight = Math.min(width, height);
458 viewHeight = Math.min(width, height);
462 viewHeight = height;
465 setMeasuredDimension(viewWidth, viewHeight);
    [all...]
  /packages/apps/Phone/src/com/android/phone/
InCallTouchUi.java     [all...]
  /cts/tests/tests/view/src/android/view/cts/
ViewTest.java     [all...]
  /frameworks/base/core/java/android/webkit/
WebView.java     [all...]

Completed in 422 milliseconds