Searched defs:viewHeight (Results 1 - 8 of 8) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGFitToViewBox.cpp47 AffineTransform SVGFitToViewBox::viewBoxToViewTransform(const FloatRect& viewBoxRect, PassRefPtr<SVGPreserveAspectRatio> preserveAspectRatio, float viewWidth, float viewHeight) argument
49 if (!viewBoxRect.width() || !viewBoxRect.height() || !viewWidth || !viewHeight)
52 return preserveAspectRatio->getCTM(viewBoxRect.x(), viewBoxRect.y(), viewBoxRect.width(), viewBoxRect.height(), viewWidth, viewHeight);
/external/replicaisland/src/com/replica/replicaisland/
H A DContextParameters.java24 public int viewHeight; field in class:ContextParameters
H A DDrawableBitmap.java69 * @param viewHeight The height of the screen.
71 public static void beginDrawing(GL10 gl, float viewWidth, float viewHeight) { argument
80 gl.glOrthof(0.0f, viewWidth, 0.0f, viewHeight, 0.0f, 1.0f);
114 final float viewHeight = mViewHeight;
121 || snappedY > viewHeight
H A DGame.java62 public void bootstrap(Context context, int viewWidth, int viewHeight, int gameWidth, int gameHeight, int difficulty) { argument
73 params.viewHeight = viewHeight;
77 params.viewScaleY = (float)viewHeight / gameHeight;
/external/chromium_org/third_party/webrtc/modules/video_render/android/java/src/org/webrtc/videoengine/
H A DViEAndroidGLES20.java41 private int viewHeight = 0; field in class:ViEAndroidGLES20
319 if(0 != CreateOpenGLNative(nativeObject, viewWidth, viewHeight)) {
331 viewHeight = height;
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderView.cpp173 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 function in class:blink::RenderView
793 return style()->isHorizontalWritingMode() ? viewHeight(ExcludeScrollbars) : viewWidth(ExcludeScrollbars);
902 return viewHeight(IncludeScrollbars) / scale;
/external/chromium_org/third_party/WebKit/Source/web/tests/
H A DWebFrameTest.cpp2126 int viewHeight = 500; local
2133 webViewHelper.webView()->resize(WebSize(viewWidth, viewHeight));
2140 webViewHelper.webView()->resize(WebSize(viewWidth * 10, viewHeight * 10));
4004 int viewHeight = 500; local
4013 webViewHelper.webView()->resize(WebSize(viewWidth, viewHeight));
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebViewImpl.cpp2833 int viewHeight = m_size.height / newScale; local
2847 if (textboxRectInDocumentCoordinates.height() <= viewHeight) {
2849 newScroll.setY(textboxRectInDocumentCoordinates.y() - (viewHeight - textboxRectInDocumentCoordinates.height()) / 2);
2853 newScroll.setY(std::max<int>(textboxRectInDocumentCoordinates.y(), caretInDocumentCoordinates.y() + caretInDocumentCoordinates.height() + caretPadding - viewHeight));
2861 IntRect sizeRect(0, 0, viewWidth, viewHeight);

Completed in 368 milliseconds