HomeSort by relevance Sort by last modified time
    Searched refs:windowRect (Results 1 - 15 of 15) sorted by null

  /external/swiftshader/src/Main/
FrameBufferGDI.cpp 52 RECT windowRect;
54 GetWindowRect(windowHandle, &windowRect);
55 int windowWidth = width + (windowRect.right - windowRect.left) - (clientRect.right - clientRect.left);
56 int windowHeight = height + (windowRect.bottom - windowRect.top) - (clientRect.bottom - clientRect.top);
  /external/swiftshader/src/OpenGL/libGL/
Surface.cpp 104 RECT windowRect;
105 GetClientRect(mWindow, &windowRect);
107 return reset(windowRect.right - windowRect.left, windowRect.bottom - windowRect.top);
  /external/webrtc/webrtc/examples/objc/AppRTCDemo/mac/
APPRTCAppDelegate.m 34 NSRect windowRect = NSMakeRect(NSMidX(visibleRect),
39 _window = [[NSWindow alloc] initWithContentRect:windowRect
  /external/skia/src/utils/win/
SkWGL_win.cpp 178 RECT windowRect;
179 windowRect.left = 0;
180 windowRect.right = 8;
181 windowRect.top = 0;
182 windowRect.bottom = 8;
205 AdjustWindowRectEx(&windowRect, style, false, exStyle);
211 windowRect.right-windowRect.left,
212 windowRect.bottom-windowRect.top
    [all...]
  /external/skia/include/views/
SkTouchGesture.h 47 void setTransLimit(const SkRect& contentRect, const SkRect& windowRect,
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/
RecentsImpl.java 135 Rect windowRect = getWindowRect(null /* windowRectOverride */);
136 if (windowRect.isEmpty()) {
154 updateDummyStackViewLayout(mBackgroundLayoutAlgorithm, stack, windowRect);
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
TaskStackLayoutAlgorithm.java 465 public void initialize(Rect displayRect, Rect windowRect, Rect taskStackBounds,
469 int topMargin = getScaleForExtent(windowRect, displayRect, mBaseTopMargin, mMinMargin, HEIGHT);
470 int bottomMargin = getScaleForExtent(windowRect, displayRect, mBaseBottomMargin, mMinMargin,
472 mInitialTopOffset = getScaleForExtent(windowRect, displayRect, mBaseInitialTopOffset,
493 + " displayRect=" + displayRect + " windowRect=" + windowRect
513 mTaskGridLayoutAlgorithm.initialize(windowRect);
514 mTaskStackLowRamLayoutAlgorithm.initialize(windowRect);
    [all...]
RecentsTransitionHelper.java 118 final Rect windowRect = Recents.getSystemServices().getWindowRect();
120 () -> composeAnimationSpecs(task, stackView, destinationStack, windowRect));
313 final TaskStackView stackView, final int destinationStack, Rect windowRect) {
339 stackLayout.transformToScreenCoordinates(mTmpTransform, windowRect);
RecentsView.java     [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/lowram/
TaskStackLowRamLayoutAlgorithm.java 64 public void initialize(Rect windowRect) {
65 mWindowRect = windowRect;
  /external/skia/src/views/
SkTouchGesture.cpp 332 void SkTouchGesture::setTransLimit(const SkRect& contentRect, const SkRect& windowRect,
336 fWindowRect = windowRect;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/grid/
TaskGridLayoutAlgorithm.java 274 public void initialize(Rect windowRect) {
275 mWindowRect = windowRect;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/misc/
SystemServicesProxy.java     [all...]
  /external/skia/tools/debugger/
SkDebugCanvas.cpp 171 SkRect windowRect = SkRect::MakeWH(SkIntToScalar(originalCanvas->getBaseLayerSize().width()),
178 if (!windowRect.isEmpty()) {
179 originalCanvas->clipRect(windowRect, kReplace_SkClipOp);
  /external/skia/tools/viewer/
Viewer.cpp 626 const SkRect windowRect = SkRect::MakeIWH(fWindow->width(), fWindow->height());
630 if (windowRect.width() > 0 && windowRect.height() > 0) {
631 fDefaultMatrix.setRectToRect(slideBounds, windowRect, SkMatrix::kStart_ScaleToFit);
636 fGesture.setTransLimit(slideBounds, windowRect, fDefaultMatrix);
    [all...]

Completed in 270 milliseconds