HomeSort by relevance Sort by last modified time
    Searched refs:windowRect (Results 1 - 13 of 13) 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 46 void setTransLimit(const SkRect& contentRect, const SkRect& windowRect);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/
RecentsImpl.java 691 private void updateDummyStackViewLayout(TaskStack stack, Rect windowRect) {
701 windowRect.bottom -= systemInsets.bottom;
704 calculateWindowStableInsets(systemInsets, windowRect, displayRect);
705 windowRect.offsetTo(0, 0);
713 stackLayout.getTaskStackBounds(displayRect, windowRect, systemInsets.top,
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
TaskStackLayoutAlgorithm.java 459 public void initialize(Rect displayRect, Rect windowRect, Rect taskStackBounds,
463 int topMargin = getScaleForExtent(windowRect, displayRect, mBaseTopMargin, mMinMargin, HEIGHT);
464 int bottomMargin = getScaleForExtent(windowRect, displayRect, mBaseBottomMargin, mMinMargin,
466 mInitialTopOffset = getScaleForExtent(windowRect, displayRect, mBaseInitialTopOffset,
500 mTaskGridLayoutAlgorithm.initialize(windowRect);
    [all...]
RecentsTransitionHelper.java 117 final Rect windowRect = Recents.getSystemServices().getWindowRect();
119 () -> composeAnimationSpecs(task, stackView, destinationStack, windowRect));
281 final TaskStackView stackView, final int destinationStack, Rect windowRect) {
307 stackLayout.transformToScreenCoordinates(mTmpTransform, windowRect);
  /external/skia/src/views/
SkTouchGesture.cpp 334 void SkTouchGesture::setTransLimit(const SkRect& contentRect, const SkRect& windowRect) {
337 fWindowRect = windowRect;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/grid/
TaskGridLayoutAlgorithm.java 274 public void initialize(Rect windowRect) {
275 mWindowRect = windowRect;
  /external/skia/tools/debugger/
SkDebugCanvas.cpp 215 SkRect windowRect = SkRect::MakeWH(SkIntToScalar(originalCanvas->getBaseLayerSize().width()),
222 if (!windowRect.isEmpty()) {
223 originalCanvas->clipRect(windowRect, kReplace_SkClipOp);
296 if (!windowRect.isEmpty()) {
297 SkRect r = windowRect;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/misc/
SystemServicesProxy.java     [all...]
  /external/skia/tools/viewer/
Viewer.cpp 633 SkRect windowRect = fWindow->getContentRect();
634 fDefaultMatrixInv.mapRect(&windowRect);
637 windowRect);
    [all...]

Completed in 789 milliseconds