Searched refs:gfx (Results 26 - 50 of 4811) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/browser/devtools/
H A Ddevtools_contents_resizing_strategy.h9 #include "ui/gfx/insets.h"
10 #include "ui/gfx/rect.h"
11 #include "ui/gfx/size.h"
19 const gfx::Insets& insets,
20 const gfx::Size& min_size);
21 explicit DevToolsContentsResizingStrategy(const gfx::Rect& bounds);
26 const gfx::Insets& insets() const { return insets_; }
27 const gfx::Size& min_size() const { return min_size_; }
28 const gfx::Rect& bounds() const { return bounds_; }
32 gfx
[all...]
H A Ddevtools_contents_resizing_strategy_unittest.cc11 gfx::Size container_size(100, 200);
12 gfx::Rect old_devtools_bounds(0, 0, 100, 200);
13 gfx::Rect old_contents_bounds(20, 20, 60, 140);
14 gfx::Rect new_devtools_bounds;
15 gfx::Rect new_contents_bounds;
20 EXPECT_EQ(gfx::Rect(0, 0, 100, 200), new_devtools_bounds);
21 EXPECT_EQ(gfx::Rect(0, 0, 100, 200), new_contents_bounds);
26 gfx::Insets(10, 20, 30, 40), gfx::Size(0, 0));
27 gfx
[all...]
/external/chromium_org/chrome/browser/ui/window_sizer/
H A Dwindow_sizer_common_unittest.h13 #include "ui/gfx/rect.h"
16 static const gfx::Rect p1024x768(0, 0, 1024, 768);
17 static const gfx::Rect p1280x1024(0, 0, 1280, 1024);
18 static const gfx::Rect p1600x1200(0, 0, 1600, 1200);
19 static const gfx::Rect p1680x1050(0, 0, 1680, 1050);
20 static const gfx::Rect p1920x1200(0, 0, 1920, 1200);
24 static const gfx::Rect left_s1024x768(-1024, 0, 1024, 768);
28 static const gfx::Rect right_s1024x768(1024, 0, 1024, 768);
32 static const gfx::Rect top_s1024x768(0, -768, 1024, 768);
36 static const gfx
[all...]
/external/chromium_org/ui/views/
H A Drect_based_targeting_utils_unittest.cc8 #include "ui/gfx/rect.h"
13 gfx::Rect rect_1(gfx::Point(-22, 30), gfx::Size(1, 1));
14 gfx::Rect rect_2(gfx::Point(0, 0), gfx::Size(34, 55));
15 gfx::Rect rect_3(gfx::Point(12, 12), gfx
[all...]
H A Dnative_cursor.h8 #include "ui/gfx/native_widget_types.h"
13 VIEWS_EXPORT gfx::NativeCursor GetNativeIBeamCursor();
14 VIEWS_EXPORT gfx::NativeCursor GetNativeHandCursor();
15 VIEWS_EXPORT gfx::NativeCursor GetNativeColumnResizeCursor();
16 VIEWS_EXPORT gfx::NativeCursor GetNativeEastWestResizeCursor();
17 VIEWS_EXPORT gfx::NativeCursor GetNativeNorthSouthResizeCursor();
H A Dnative_cursor_aura.cc11 gfx::NativeCursor GetNativeIBeamCursor() {
15 gfx::NativeCursor GetNativeHandCursor() {
19 gfx::NativeCursor GetNativeColumnResizeCursor() {
23 gfx::NativeCursor GetNativeEastWestResizeCursor() {
27 gfx::NativeCursor GetNativeNorthSouthResizeCursor() {
/external/chromium_org/content/common/
H A Ddrag_messages.h14 #include "ui/gfx/point.h"
15 #include "ui/gfx/vector2d.h"
23 gfx::Point /* client_pt */,
24 gfx::Point /* screen_pt */,
29 gfx::Point /* client_pt */,
30 gfx::Point /* screen_pt */,
37 gfx::Point /* client_pt */,
38 gfx::Point /* screen_pt */,
43 gfx::Point /* client_pt */,
44 gfx
[all...]
/external/chromium_org/ui/base/l10n/
H A Dl10n_font_util.h9 #include "ui/gfx/size.h"
11 namespace gfx { namespace
22 const gfx::Font& font);
24 const gfx::Font& font);
25 UI_BASE_EXPORT gfx::Size GetLocalizedContentsSizeForFont(int col_resource_id,
27 const gfx::Font& font);
/external/chromium_org/ui/compositor/test/
H A Dtest_utils.h8 namespace gfx { namespace
15 void CheckApproximatelyEqual(const gfx::Transform& lhs,
16 const gfx::Transform& rhs);
17 void CheckApproximatelyEqual(const gfx::Rect& lhs, const gfx::Rect& rhs);
/external/chromium_org/ui/events/ozone/evdev/
H A Dcursor_delegate_evdev.h9 #include "ui/gfx/geometry/point_f.h"
10 #include "ui/gfx/native_widget_types.h"
12 namespace gfx { namespace
21 virtual void MoveCursor(const gfx::Vector2dF& delta) = 0;
22 virtual void MoveCursorTo(gfx::AcceleratedWidget widget,
23 const gfx::PointF& location) = 0;
26 virtual gfx::PointF location() = 0;
/external/chromium_org/mojo/services/view_manager/
H A Dscreen_impl.cc7 #include "ui/gfx/native_widget_types.h"
8 #include "ui/gfx/rect_conversions.h"
15 gfx::Screen* ScreenImpl::Create() {
16 return new ScreenImpl(gfx::Rect(0, 0, 800, 600));
27 gfx::Point ScreenImpl::GetCursorScreenPoint() {
29 return gfx::Point();
32 gfx::NativeWindow ScreenImpl::GetWindowUnderCursor() {
36 gfx::NativeWindow ScreenImpl::GetWindowAtScreenPoint(const gfx::Point& point) {
45 std::vector<gfx
[all...]
H A Dscreen_impl.h9 #include "ui/gfx/display.h"
10 #include "ui/gfx/screen.h"
12 namespace gfx { namespace
21 // A minimal implementation of gfx::Screen for the view manager.
22 class ScreenImpl : public gfx::Screen {
24 static gfx::Screen* Create();
28 // gfx::Screen overrides:
30 virtual gfx::Point GetCursorScreenPoint() OVERRIDE;
31 virtual gfx::NativeWindow GetWindowUnderCursor() OVERRIDE;
32 virtual gfx
[all...]
/external/chromium_org/ash/
H A Dscreen_util.h15 namespace gfx { namespace
28 static gfx::Display FindDisplayContainingPoint(const gfx::Point& point);
32 static gfx::Rect GetMaximizedWindowBoundsInParent(aura::Window* window);
35 static gfx::Rect GetDisplayBoundsInParent(aura::Window* window);
38 static gfx::Rect GetDisplayWorkAreaBoundsInParent(aura::Window* window);
43 static gfx::Rect ConvertRectToScreen(aura::Window* window,
44 const gfx::Rect& rect);
48 static gfx::Rect ConvertRectFromScreen(aura::Window* window,
49 const gfx
[all...]
/external/chromium_org/cc/quads/
H A Dcontent_draw_quad_base.h12 #include "ui/gfx/point.h"
13 #include "ui/gfx/size.h"
21 const gfx::Rect& rect,
22 const gfx::Rect& opaque_rect,
23 const gfx::Rect& visible_rect,
24 const gfx::RectF& tex_coord_rect,
25 const gfx::Size& texture_size,
30 const gfx::Rect& rect,
31 const gfx::Rect& opaque_rect,
32 const gfx
[all...]
/external/chromium_org/chrome/browser/download/
H A Ddrag_download_item.h8 #include "ui/gfx/native_widget_types.h"
14 namespace gfx { namespace
22 gfx::Image* icon,
23 gfx::NativeView view);
/external/chromium_org/chrome/browser/ui/autofill/
H A Dtest_popup_controller_common.cc10 const gfx::RectF& element_bounds)
14 gfx::Display TestPopupControllerCommon::GetDisplayNearestPoint(
15 const gfx::Point& point) const {
/external/chromium_org/chrome/browser/ui/
H A Dconfirm_bubble.h8 #include "ui/gfx/native_widget_types.h"
12 namespace gfx { namespace
21 void ShowConfirmBubble(gfx::NativeView view,
22 const gfx::Point& origin,
/external/chromium_org/chrome/browser/ui/views/frame/
H A Dtaskbar_decorator.h8 #include "ui/gfx/native_widget_types.h"
10 namespace gfx { namespace
19 void DrawTaskbarDecoration(gfx::NativeWindow window, const gfx::Image* image);
/external/chromium_org/ui/display/util/
H A Ddisplay_util.h9 #include "ui/gfx/geometry/size.h"
16 const gfx::Size& physical_size);
21 const gfx::Size& physical_size_in_mm,
22 const gfx::Size& screen_size_in_pixels);
/external/chromium_org/ui/gl/
H A Dgl_image_stub.cc7 namespace gfx { namespace
13 gfx::Size GLImageStub::GetSize() { return gfx::Size(1, 1); }
17 } // namespace gfx
/external/chromium_org/ui/views/widget/
H A Dmonitor_win.h10 namespace gfx { namespace
18 VIEWS_EXPORT gfx::Rect GetMonitorBoundsForRect(const gfx::Rect& rect);
/external/chromium_org/ui/views/window/
H A Dwindow_shape.h10 namespace gfx { namespace
19 VIEWS_EXPORT void GetDefaultWindowMask(const gfx::Size& size,
20 gfx::Path* window_mask);
/external/chromium_org/ash/host/
H A Droot_window_transformer.h10 namespace gfx { namespace
26 virtual gfx::Transform GetTransform() const = 0;
30 // |gfx::Transform::GetInverse| may contains computational error.
31 virtual gfx::Transform GetInverseTransform() const = 0;
36 virtual gfx::Rect GetRootWindowBounds(const gfx::Size& host_size) const = 0;
40 virtual gfx::Insets GetHostInsets() const = 0;
/external/chromium_org/cc/resources/
H A Dresource_update.h9 #include "ui/gfx/rect.h"
10 #include "ui/gfx/vector2d.h"
21 const gfx::Rect& content_rect,
22 const gfx::Rect& source_rect,
23 const gfx::Vector2d& dest_offset);
30 gfx::Rect content_rect;
31 gfx::Rect source_rect;
32 gfx::Vector2d dest_offset;
/external/chromium_org/chrome/browser/ui/views/app_list/win/
H A Dapp_list_win.h12 namespace gfx { namespace
28 static gfx::Point FindAnchorPoint(const gfx::Size& view_size,
29 const gfx::Display& display,
30 const gfx::Point& cursor,
31 const gfx::Rect& taskbar_rect,

Completed in 1449 milliseconds

1234567891011>>