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

  /external/chromium_org/third_party/WebKit/Source/core/frame/
RemoteFrameView.cpp 42 void RemoteFrameView::setFrameRect(const IntRect& newRect)
49 Widget::setFrameRect(newRect);
FrameView.cpp 146 view->Widget::setFrameRect(IntRect(view->location(), initialSize));
321 void FrameView::setFrameRect(const IntRect& newRect)
332 ScrollView::setFrameRect(newRect);
337 // This needs to be after the call to ScrollView::setFrameRect, because it reads the new width.
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/exported/
WebScrollbarThemeClientImpl.cpp 89 void WebScrollbarThemeClientImpl::setFrameRect(const IntRect&)
  /external/chromium_org/third_party/WebKit/Source/web/
ScrollbarGroup.cpp 126 void ScrollbarGroup::setFrameRect(const IntRect& frameRect)
WebPluginContainerImpl.cpp 101 void WebPluginContainerImpl::setFrameRect(const IntRect& frameRect)
103 Widget::setFrameRect(frameRect);
408 m_scrollbarGroup->setFrameRect(frameRect());
PopupListBox.cpp 931 void PopupListBox::setFrameRect(const IntRect& newRect)
937 Widget::setFrameRect(newRect);
992 m_verticalScrollbar->setFrameRect(vBarRect);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/
Widget.h 63 virtual void setFrameRect(const IntRect& frame) { m_frame = frame; }
67 void resize(int w, int h) { setFrameRect(IntRect(x(), y(), w, h)); }
68 void resize(const IntSize& s) { setFrameRect(IntRect(location(), s)); }
69 void move(int x, int y) { setFrameRect(IntRect(x, y, width(), height())); }
70 void move(const IntPoint& p) { setFrameRect(IntRect(p, size())); }
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
FloatingObjects.h 77 void setFrameRect(const LayoutRect& frameRect) { ASSERT(!isInPlacedTree()); m_frameRect = frameRect; }
RenderBox.h 179 void setFrameRect(const LayoutRect& rect) { m_frameRect = rect; }
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/scroll/
Scrollbar.cpp 81 Widget::setFrameRect(IntRect(0, 0, thickness, thickness));
474 void Scrollbar::setFrameRect(const IntRect& rect)
505 Widget::setFrameRect(adjustedRect);
ScrollView.cpp 389 m_horizontalScrollbar->setFrameRect(hBarRect);
409 m_verticalScrollbar->setFrameRect(vBarRect);
706 void ScrollView::setFrameRect(const IntRect& newRect)
713 Widget::setFrameRect(newRect);
    [all...]

Completed in 327 milliseconds