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

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/Source/WebCore/platform/brew/
WidgetBrew.cpp 27 #include "Widget.h"
36 Widget::Widget(PlatformWidget widget)
38 init(widget);
41 Widget::~Widget()
45 IntRect Widget::frameRect() const
50 void Widget::setFrameRect(const IntRect& rect)
55 void Widget::setFocus(bool
    [all...]
  /external/webkit/Source/WebCore/platform/chromium/
WidgetChromium.cpp 32 #include "Widget.h"
40 Widget::Widget(PlatformWidget widget)
42 init(widget);
45 Widget::~Widget()
50 void Widget::show()
54 void Widget::hide()
58 void Widget::setCursor(const Cursor& cursor
    [all...]
PlatformScreenChromium.cpp 39 int screenDepth(Widget* widget)
41 return PlatformBridge::screenDepth(widget);
44 int screenDepthPerComponent(Widget* widget)
46 return PlatformBridge::screenDepthPerComponent(widget);
49 bool screenIsMonochrome(Widget* widget)
51 return PlatformBridge::screenIsMonochrome(widget);
54 FloatRect screenRect(Widget* widget
    [all...]
  /external/webkit/Source/WebCore/platform/win/
WidgetWin.cpp 27 #include "Widget.h"
44 Widget::Widget(PlatformWidget widget)
46 init(widget);
49 Widget::~Widget()
54 void Widget::show()
58 void Widget::hide()
64 void Widget::setCursor(const Cursor& cursor
    [all...]
  /external/chromium/testing/gtest/xcode/Samples/FrameworkSample/
widget.cc 33 // widget.cc
36 // Widget is a very simple class used for demonstrating the use of gtest
38 #include "widget.h"
40 Widget::Widget(int number, const std::string& name)
44 Widget::~Widget() {}
46 float Widget::GetFloatValue() const {
50 int Widget::GetIntValue() const {
54 std::string Widget::GetStringValue() const
    [all...]
widget.h 33 // widget.h
36 // Widget is a very simple class used for demonstrating the use of gtest. It
42 class Widget {
44 Widget(int number, const std::string& name);
45 ~Widget();
widget_test.cc 36 // This is a simple test file for the Widget class in the Widget.framework
41 #include <Widget/widget.h>
44 // Widget class correctly.
46 Widget widget(1.0f, "name");
47 EXPECT_FLOAT_EQ(1.0f, widget.GetFloatValue());
48 EXPECT_EQ(std::string("name"), widget.GetStringValue());
54 Widget widget(1.0f, "name")
    [all...]
  /external/protobuf/gtest/xcode/Samples/FrameworkSample/
widget.cc 33 // widget.cc
36 // Widget is a very simple class used for demonstrating the use of gtest
38 #include "widget.h"
40 Widget::Widget(int number, const std::string& name)
44 Widget::~Widget() {}
46 float Widget::GetFloatValue() const {
50 int Widget::GetIntValue() const {
54 std::string Widget::GetStringValue() const
    [all...]
widget.h 33 // widget.h
36 // Widget is a very simple class used for demonstrating the use of gtest. It
42 class Widget {
44 Widget(int number, const std::string& name);
45 ~Widget();
widget_test.cc 36 // This is a simple test file for the Widget class in the Widget.framework
41 #include <Widget/widget.h>
44 // Widget class correctly.
46 Widget widget(1.0f, "name");
47 EXPECT_FLOAT_EQ(1.0f, widget.GetFloatValue());
48 EXPECT_EQ(std::string("name"), widget.GetStringValue());
54 Widget widget(1.0f, "name")
    [all...]
  /external/webkit/Source/WebCore/platform/qt/
ScrollViewQt.cpp 37 void ScrollView::platformAddChild(Widget*)
41 void ScrollView::platformRemoveChild(Widget* child)
WidgetQt.cpp 33 #include "Widget.h"
52 Widget::Widget(QWidget* widget)
54 init(widget);
57 Widget::~Widget()
62 IntRect Widget::frameRect() const
67 void Widget::setFrameRect(const IntRect& rect)
74 void Widget::setFocus(bool focused
    [all...]
  /external/webkit/Source/WebCore/platform/android/
ScreenAndroid.cpp 34 int screenDepth(Widget*)
39 int screenDepthPerComponent(Widget*)
44 bool screenIsMonochrome(Widget*)
51 FloatRect screenRect(Widget*)
58 FloatRect screenAvailableRect(Widget*)
WidgetAndroid.cpp 27 #include "Widget.h"
39 Widget::Widget(PlatformWidget widget)
41 init(widget);
44 Widget::~Widget()
50 IntRect Widget::frameRect() const
57 void Widget::setFocus(bool focused)
62 void Widget::paint(GraphicsContext* ctx, const IntRect& r
108 const Widget* widget = this; local
    [all...]
  /external/webkit/Source/WebCore/platform/wx/
ScreenWx.cpp 31 #include "Widget.h"
39 FloatRect scaleScreenRectToWidget(FloatRect rect, Widget*)
44 FloatRect scaleWidgetRectToScreen(FloatRect rect, Widget*)
49 FloatRect screenRect(Widget* widget)
53 Widget* widget = widget->widget();
54 displayNum = wxDisplay::GetFromWindow(widget->nativeWindow())
    [all...]
WidgetWx.cpp 26 #include "Widget.h"
40 Widget::Widget(PlatformWidget widget)
42 init(widget);
45 Widget::~Widget()
49 void Widget::setFocus(bool focused)
52 if (PlatformWidget widget = platformWidget())
53 widget->SetFocus()
    [all...]
  /external/webkit/Source/WebCore/platform/gtk/
WidgetGtk.cpp 29 #include "Widget.h"
44 Widget::Widget(PlatformWidget widget)
46 init(widget);
49 Widget::~Widget()
55 void Widget::setFocus(bool focused)
61 void Widget::setCursor(const Cursor& cursor)
69 void Widget::show(
    [all...]
GtkPluginWidget.h 30 #include "Widget.h"
33 class GtkPluginWidget : public Widget {
  /external/webkit/Source/WebCore/platform/
PlatformScreen.h 46 class Widget;
48 int screenDepth(Widget*);
49 int screenDepthPerComponent(Widget*);
50 bool screenIsMonochrome(Widget*);
52 FloatRect screenRect(Widget*);
53 FloatRect screenAvailableRect(Widget*);
Widget.cpp 27 #include "Widget.h"
36 void Widget::init(PlatformWidget widget)
41 m_widget = widget;
46 void Widget::setParent(ScrollView* view)
56 ScrollView* Widget::root() const
58 const Widget* top = this;
66 void Widget::removeFromParent()
72 IntRect Widget::convertFromContainingWindow(const IntRect& windowRect) const
81 IntRect Widget::convertToContainingWindow(const IntRect& localRect) cons
    [all...]
  /external/webkit/Source/WebCore/plugins/
IFrameShimSupport.h 27 class Widget;
30 void getPluginOcclusions(Element*, Widget* parentWidget, const IntRect& frameRect, Vector<IntRect>& occlusions);
  /external/webkit/Source/WebCore/platform/haiku/
WidgetHaiku.cpp 30 #include "Widget.h"
41 AutoPlatformWidgetLocker(PlatformWidget widget)
42 : m_widget(widget)
63 Widget::Widget(PlatformWidget widget)
66 init(widget);
69 Widget::~Widget()
73 IntRect Widget::frameRect() cons
    [all...]
ScreenHaiku.cpp 37 #include "Widget.h"
44 FloatRect screenRect(Widget*)
51 FloatRect screenAvailableRect(Widget* widget)
55 return screenRect(widget);
58 int screenDepth(Widget*)
72 int screenDepthPerComponent(Widget*)
78 bool screenIsMonochrome(Widget*)
  /external/webkit/Source/WebKit/chromium/src/
WebInputEventConversion.h 46 class Widget;
60 PlatformMouseEventBuilder(WebCore::Widget*, const WebMouseEvent&);
65 PlatformWheelEventBuilder(WebCore::Widget*, const WebMouseWheelEvent&);
78 PlatformTouchPointBuilder(WebCore::Widget*, const WebTouchPoint&);
83 PlatformTouchEventBuilder(WebCore::Widget*, const WebTouchEvent&);
94 WebMouseEventBuilder(const WebCore::Widget*, const WebCore::MouseEvent&);
101 WebMouseWheelEventBuilder(const WebCore::Widget*, const WebCore::WheelEvent&);
  /external/webkit/Source/WebKit/qt/tests/hybridPixmap/
widget.cpp 20 #include "widget.h"
28 Widget::Widget(QWidget* parent) :
30 ui(new Ui::Widget)
35 void Widget::refreshJS()
39 void Widget::start()
46 void Widget::completeTest()
55 void Widget::setPixmap(const QPixmap& p)
59 QPixmap Widget::pixmap() const
68 void Widget::setImage(const QImage& img
    [all...]

Completed in 791 milliseconds

1 2 3 4 5 6 7 8 91011>>