Home
last modified time | relevance | path

Searched refs:windowHeight (Results 1 – 4 of 4) sorted by relevance

/external/doclava/res/assets/templates/assets/
Ddoclava-developer-docs.js91 var windowHeight = ($(window).height() - HEADER_HEIGHT);
92 var swapperHeight = windowHeight - 13;
94 sidenav.css({height:windowHeight + "px"});
95 content.css({height:windowHeight + "px"});
234 var windowHeight = ($(window).height() - HEADER_HEIGHT);
235 var swapperHeight = windowHeight - 13; // move 13px for swapper link at the bottom
252 var windowHeight = ($(window).height() - HEADER_HEIGHT);
253 docContent.css({height:windowHeight + "px"});
254 $("#side-nav").css({height:windowHeight + "px"});
259 var swapperHeight = windowHeight - 13;
/external/eigen/doc/
Deigen_navtree_hacks.js71 var windowHeight = $(window).height() - headerHeight - footerHeight;
72 content.css({height:windowHeight + "px"});
73 navtree.css({height:(windowHeight-tocHeight) + "px"}); // <- we modified this line
74 sidenav.css({height:(windowHeight) + "px",top: headerHeight+"px"});
/external/deqp/modules/glshared/
DglsFragmentOpUtil.hpp96 IntegerQuad (int windowWidth, int windowHeight) in IntegerQuad()
98 , posB(windowWidth-1, windowHeight-1) in IntegerQuad()
/external/deqp/modules/egl/
DteglCreateSurfaceTests.cpp146 EGLint windowHeight = 0; in executeForConfig() local
149 EGLU_CHECK_CALL(egl, querySurface(display, *surface, EGL_HEIGHT, &windowHeight)); in executeForConfig()
151 if (windowWidth <= 0 || windowHeight <= 0) in executeForConfig()
153 …::Message << " Fail, invalid surface size " << windowWidth << "x" << windowHeight << TestLog::End… in executeForConfig()