OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:windowWidth
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/third_party/angle/samples/angle/post_sub_buffer/
PostSubBuffer.cpp
144
size_t
windowWidth
= getWindow()->getWidth();
148
mPostSubBufferNV(display, surface, 60, 60,
windowWidth
- 120, windowHeight - 120);
/external/chromium_org/third_party/WebKit/Source/core/dom/
ViewportDescription.cpp
241
int
windowWidth
= mainFrame->document()->settings()->pinchVirtualViewportEnabled()
244
int overviewZoomPercent = 100 *
windowWidth
/ static_cast<float>(viewportWidth);
/external/deqp/modules/egl/
teglCreateSurfaceTests.cpp
148
EGLint
windowWidth
= 0;
151
TCU_CHECK_EGL_CALL(eglQuerySurface(display.getEGLDisplay(), surface.getEGLSurface(), EGL_WIDTH, &
windowWidth
));
154
if (
windowWidth
<= 0 || windowHeight <= 0)
156
log << TestLog::Message << " Fail, invalid surface size " <<
windowWidth
<< "x" << windowHeight << TestLog::EndMessage;
/external/chromium_org/third_party/webrtc/modules/video_render/mac/
video_render_agl.cc
1046
int
windowWidth
= 0; // Parent window width
1068
windowWidth
= globalBounds.right - globalBounds.left;
1078
_lastWindowWidth =
windowWidth
;
1092
windowWidth
!= _lastWindowWidth)
1132
_lastWindowWidth =
windowWidth
;
[
all
...]
/external/chromium_org/third_party/WebKit/Source/web/
PopupListBox.cpp
811
int
windowWidth
= baseWidth + scrollbarWidth + paddingWidth;
812
if (
windowWidth
> m_maxWindowWidth) {
813
//
windowWidth
exceeds m_maxWindowWidth, so we have to clip.
814
windowWidth
= m_maxWindowWidth;
815
baseWidth =
windowWidth
- scrollbarWidth - paddingWidth;
818
int contentWidth =
windowWidth
- scrollbarWidth;
820
if (
windowWidth
< m_baseWidth) {
821
windowWidth
= m_baseWidth;
827
resize(
windowWidth
, windowHeight);
[
all
...]
Completed in 332 milliseconds