HomeSort by relevance Sort by last modified time
    Searched defs:viewRect (Results 1 - 12 of 12) sorted by null

  /external/webkit/Tools/WebKitTestRunner/win/
PlatformWebViewWin.cpp 55 RECT viewRect = {0, 0, 800, 600};
56 m_window = CreateWindowExW(0, hostWindowClassName, L"WebKitTestRunner", WS_OVERLAPPEDWINDOW, 0 /*XOFFSET*/, 0 /*YOFFSET*/, viewRect.right, viewRect.bottom, 0, 0, GetModuleHandle(0), 0);
57 m_view = WKViewCreate(viewRect, contextRef, pageGroupRef, m_window);
  /external/webkit/Tools/TestWebKitAPI/win/
PlatformWebViewWin.cpp 64 RECT viewRect = {0, 0, 800, 600};
65 m_window = CreateWindowExW(0, hostWindowClassName, L"TestWebKitAPI", WS_OVERLAPPEDWINDOW, viewRect.left, viewRect.top, viewRect.right, viewRect.bottom, 0, 0, 0, this);
66 m_view = WKViewCreate(viewRect, contextRef, pageGroupRef, m_window);
  /frameworks/base/tests/TileBenchmark/src/com/test/tilebenchmark/
PlaybackGraphs.java 210 // Shapes drawn here are drawn relative to the viewRect
211 Rect viewRect = shapes.get(shapes.size() - 1).getBounds();
212 canvas.translate(0, 5 * PlaybackView.TILE_SCALE - viewRect.top);
  /external/webkit/Source/WebCore/platform/win/
PopupMenuWin.cpp 166 RECT viewRect = {0};
167 ::GetWindowRect(hostWindow, &viewRect);
169 if (!::IsRectEmpty(&viewRect)) {
172 DWORD slideDirection = (m_windowRect.y() < viewRect.top + view->contentsToWindow(r.location()).y()) ? AW_VER_NEGATIVE : AW_VER_POSITIVE;
  /external/webkit/Source/WebCore/rendering/
RenderView.cpp 278 IntRect vr = viewRect();
654 IntRect RenderView::viewRect() const
RenderObject.cpp     [all...]
RenderLayer.cpp     [all...]
  /external/webkit/Source/WebKit2/UIProcess/win/
WebPopupMenuProxyWin.cpp 227 RECT viewRect = {0};
228 ::GetWindowRect(hostWindow, &viewRect);
230 if (!::IsRectEmpty(&viewRect)) {
233 DWORD slideDirection = (m_windowRect.y() < viewRect.top + rect.location().y()) ? AW_VER_NEGATIVE : AW_VER_POSITIVE;
  /external/webkit/Source/WebCore/platform/graphics/android/
GraphicsLayerAndroid.cpp 264 SkRect viewRect;
265 viewRect.set(paintingOffsetX, paintingOffsetY, paintingOffsetX + w, paintingOffsetY + h);
271 viewRect);
    [all...]
  /external/webkit/Source/WebCore/platform/
ScrollView.cpp 714 IntRect viewRect = convertFromContainingWindow(windowRect);
715 viewRect.move(scrollOffset());
716 return viewRect;
721 IntRect viewRect = contentsRect;
722 viewRect.move(-scrollOffset());
723 return convertToContainingWindow(viewRect);
    [all...]
  /external/webkit/Source/WebCore/accessibility/
AccessibilityRenderObject.cpp 687 FloatRect viewRect = view->visibleContentRect();
688 viewRect.intersect(contentRect);
689 return viewRect.isEmpty();
    [all...]
  /external/webkit/Source/WebKit/android/nav/
WebView.cpp 449 bool drawGL(WebCore::IntRect& viewRect, WebCore::IntRect* invalRect,
510 bool ret = m_glWebViewState->drawGL(viewRect, m_visibleRect, invalRect,
    [all...]

Completed in 3378 milliseconds