HomeSort by relevance Sort by last modified time
    Searched refs:setFrameRect (Results 1 - 25 of 46) sorted by null

1 2

  /external/webkit/Source/WebCore/platform/brew/
WidgetBrew.cpp 50 void Widget::setFrameRect(const IntRect& rect)
  /external/webkit/Source/WebCore/platform/efl/
ScrollbarEfl.h 43 virtual void setFrameRect(const IntRect&);
ScrollbarEfl.cpp 56 Widget::setFrameRect(IntRect(0, 0, 0, 0));
140 setFrameRect(rect);
188 void ScrollbarEfl::setFrameRect(const IntRect& rect)
190 Widget::setFrameRect(rect);
  /external/webkit/Source/WebCore/platform/chromium/
WidgetChromium.cpp 82 void Widget::setFrameRect(const IntRect& rect)
  /external/webkit/Source/WebCore/platform/win/
WidgetWin.cpp 96 void Widget::setFrameRect(const IntRect& rect)
  /external/webkit/Source/WebCore/platform/qt/
WidgetQt.cpp 67 void Widget::setFrameRect(const IntRect& rect)
  /external/webkit/Source/WebCore/rendering/
RenderReplica.cpp 51 setFrameRect(parentBox()->borderBoxRect());
RenderSlider.cpp 167 thumb->setFrameRect(rect);
RenderScrollbar.cpp 62 setFrameRect(IntRect(0, 0, width, height));
197 setFrameRect(IntRect(x(), y(), isHorizontal ? width() : newThickness, isHorizontal ? newThickness : height()));
  /external/webkit/Source/WebCore/platform/
Widget.h 160 virtual void setFrameRect(const IntRect&);
165 void resize(int w, int h) { setFrameRect(IntRect(x(), y(), w, h)); setBoundsSize(IntSize(w, h)); }
166 void resize(const IntSize& s) { setFrameRect(IntRect(pos(), s)); setBoundsSize(s); }
167 void move(int x, int y) { setFrameRect(IntRect(x, y, width(), height())); }
168 void move(const IntPoint& p) { setFrameRect(IntRect(p, size())); }
Scrollbar.h 114 virtual void setFrameRect(const IntRect&);
Scrollbar.cpp 94 Widget::setFrameRect(IntRect(0, 0, thickness, thickness));
387 void Scrollbar::setFrameRect(const IntRect& rect)
418 Widget::setFrameRect(adjustedRect);
  /external/webkit/Source/WebCore/platform/android/
WidgetAndroid.cpp 91 void Widget::setFrameRect(const IntRect& rect)
  /external/webkit/Source/WebCore/platform/gtk/
WidgetGtk.cpp 109 void Widget::setFrameRect(const IntRect& rect)
ScrollbarThemeGtk.cpp 83 scrollbar->setFrameRect(IntRect(0, scrollbar->parent()->height() - thickness, scrollbar->width(), thickness));
85 scrollbar->setFrameRect(IntRect(scrollbar->parent()->width() - thickness, 0, thickness, scrollbar->height()));
  /external/webkit/Source/WebCore/platform/haiku/
WidgetHaiku.cpp 78 void Widget::setFrameRect(const IntRect& rect)
  /external/webkit/Source/WebCore/platform/wx/
WidgetWx.cpp 85 void Widget::setFrameRect(const IntRect& rect)
  /external/webkit/Source/WebKit/win/WebCoreSupport/
EmbeddedWidget.h 64 virtual void setFrameRect(const WebCore::IntRect&);
EmbeddedWidget.cpp 80 void EmbeddedWidget::setFrameRect(const IntRect& rect)
86 Widget::setFrameRect(rect);
  /external/webkit/Source/WebKit/chromium/src/
WebPluginContainerImpl.h 68 virtual void setFrameRect(const WebCore::IntRect&);
WebPluginContainerImpl.cpp 86 void WebPluginContainerImpl::setFrameRect(const IntRect& frameRect)
88 Widget::setFrameRect(frameRect);
WebPopupMenuImpl.cpp 145 m_widget->setFrameRect(newGeometry);
  /external/webkit/Source/WebKit2/WebProcess/Plugins/
PluginView.h 106 virtual void setFrameRect(const WebCore::IntRect&);
  /external/webkit/Source/WebCore/page/
FrameView.h 64 virtual void setFrameRect(const IntRect&);
  /external/webkit/Source/WebKit/win/
WebScrollBar.cpp 138 m_scrollBar->setFrameRect(rect);

Completed in 835 milliseconds

1 2