HomeSort by relevance Sort by last modified time
    Searched refs:Insets (Results 26 - 50 of 261) sorted by null

12 3 4 5 6 7 8 91011

  /external/chromium_org/ui/gfx/
rect.h 36 class Insets;
39 : public RectBase<Rect, Point, Size, Insets, Vector2d, int> {
41 Rect() : RectBase<Rect, Point, Size, Insets, Vector2d, int>(Point()) {}
44 : RectBase<Rect, Point, Size, Insets, Vector2d, int>
48 : RectBase<Rect, Point, Size, Insets, Vector2d, int>
60 : RectBase<Rect, Point, Size, Insets, Vector2d, int>(size) {}
63 : RectBase<Rect, Point, Size, Insets, Vector2d, int>(origin, size) {}
140 extern template class RectBase<Rect, Point, Size, Insets, Vector2d, int>;
display.h 71 // Returns the work area insets.
72 Insets GetWorkAreaInsets() const;
75 // updates the work are using the same insets between old bounds and
80 // Sets the display's size. This updates the work area using the same insets
86 void UpdateWorkAreaFromInsets(const gfx::Insets& work_area_insets);
shadow_value.cc 10 #include "ui/gfx/insets.h"
49 Insets ShadowValue::GetMargin(const ShadowValues& shadows) {
67 return Insets(-top, -left, -bottom, -right);
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/laf/
UnifiedContentBorder.java 38 public Insets getBorderInsets(Component component) {
39 return new Insets(1, 0, 2, 0);
  /external/chromium/chrome/browser/
aeropeek_manager.h 14 #include "ui/gfx/insets.h"
47 virtual void GetContentInsets(gfx::Insets* insets) = 0;
103 void SetContentInsets(const gfx::Insets& insets);
133 virtual void GetContentInsets(gfx::Insets* insets);
196 gfx::Insets content_insets_;
  /external/chromium_org/ash/display/
display_info.h 14 #include "ui/gfx/insets.h"
44 // - properties can combination of 'o', which adds default overscan insets
91 // the |size_in_pixel| in case of overscan insets.
99 // The overscan insets for the display in DIP.
100 const gfx::Insets& overscan_insets_in_dip() const {
120 // Sets/Clears the overscan insets.
121 void SetOverscanInsets(const gfx::Insets& insets_in_dip);
122 gfx::Insets GetOverscanInsetsInPixel() const;
150 // of |bounds_in_pixel_| if the display has overscan insets and/or rotation.
152 gfx::Insets overscan_insets_in_dip_
    [all...]
display_controller.h 36 class Insets;
127 // Gets/Sets/Clears the overscan insets for the specified |display_id|. See
129 gfx::Insets GetOverscanInsets(int64 display_id) const;
130 void SetOverscanInsets(int64 display_id, const gfx::Insets& insets_in_dip);
146 // Sets the work area's |insets| to the display assigned to |window|.
148 const gfx::Insets& insets);
display_manager.h 25 class Insets;
119 // Sets the work area's |insets| to the display given by |display_id|.
120 bool UpdateWorkAreaOfDisplay(int64 display_id, const gfx::Insets& insets);
122 // Registers the overscan insets for the display of the specified ID. Note
123 // that the insets size should be specified in DIP size. It also triggers the
125 void SetOverscanInsets(int64 display_id, const gfx::Insets& insets_in_dip);
137 // the display has no custom overscan insets.
141 const gfx::Insets* overscan_insets,
152 // Returns the current overscan insets for the specified |display_id|
    [all...]
  /external/chromium_org/ui/views/
shadow_border.h 26 virtual gfx::Insets GetInsets() const OVERRIDE;
shadow_border.cc 8 #include "ui/gfx/insets.h"
37 bounds.Inset(gfx::Insets(blur_ / 2, blur_ / 2, blur_ / 2, blur_ / 2));
41 gfx::Insets ShadowBorder::GetInsets() const {
42 return gfx::Insets(blur_ / 2 - vertical_offset_,
painter.h 16 class Insets;
55 // are rendered at the size specified in insets (eg. the upper-left corner is
56 // rendered at 0 x 0 with a size of insets.left() x insets.top()). The center
59 const gfx::Insets& insets);
  /external/chromium_org/ui/aura/
root_window_host.h 18 class Insets;
64 // Sets/Gets the insets that specifies the effective root window area
66 virtual gfx::Insets GetInsets() const = 0;
67 virtual void SetInsets(const gfx::Insets& insets) = 0;
root_window_host_ozone.h 37 virtual gfx::Insets GetInsets() const OVERRIDE;
38 virtual void SetInsets(const gfx::Insets& bounds) OVERRIDE;
window.h 27 #include "ui/gfx/insets.h"
242 void SetHitTestBoundsOverrideOuter(const gfx::Insets& mouse_insets,
243 const gfx::Insets& touch_insets) {
248 gfx::Insets hit_test_bounds_override_outer_touch() const {
252 gfx::Insets hit_test_bounds_override_outer_mouse() const {
256 // Sets the window to grab hits for an area extending |insets| pixels inside
259 void set_hit_test_bounds_override_inner(const gfx::Insets& insets) {
260 hit_test_bounds_override_inner_ = insets;
262 gfx::Insets hit_test_bounds_override_inner() const
    [all...]
root_window_host_ozone.cc 67 gfx::Insets RootWindowHostOzone::GetInsets() const { return gfx::Insets(); }
69 void RootWindowHostOzone::SetInsets(const gfx::Insets& insets) {
root_window_host_x11.h 22 #include "ui/gfx/insets.h"
54 virtual gfx::Insets GetInsets() const OVERRIDE;
55 virtual void SetInsets(const gfx::Insets& insets) OVERRIDE;
124 // The insets that specifies the effective area within the |window_|.
125 gfx::Insets insets_;
  /external/chromium_org/ui/views/bubble/
bubble_delegate.h 79 const gfx::Insets& margins() const { return margins_; }
80 void set_margins(const gfx::Insets& margins) { margins_ = margins; }
82 const gfx::Insets& anchor_view_insets() const { return anchor_view_insets_; }
83 void set_anchor_view_insets(const gfx::Insets& i) { anchor_view_insets_ = i; }
192 gfx::Insets margins_;
194 // Insets applied to the |anchor_view_| bounds.
195 gfx::Insets anchor_view_insets_;
  /external/chromium/chrome/browser/ui/views/infobars/
infobar_button_border.h 29 virtual void GetInsets(gfx::Insets* insets) const;
  /external/chromium_org/chrome/browser/ui/views/message_center/
message_center_frame_view.h 36 virtual gfx::Insets GetInsets() const OVERRIDE;
  /external/chromium/chrome/browser/chromeos/frame/
bubble_frame_view.h 14 class Insets;
48 virtual gfx::Insets GetInsets() const OVERRIDE;
  /external/chromium_org/ui/views/controls/textfield/
native_textfield_wrapper.h 17 class Insets;
86 // Returns the insets for the text field.
87 virtual gfx::Insets CalculateInsets() = 0;
167 // any insets.
  /external/chromium/chrome/browser/ui/views/bubble/
border_contents.cc 69 gfx::Insets insets; local
70 bubble_border_->GetInsets(&insets);
71 contents_bounds->Inset(insets.left() + kLeftMargin, insets.top() + kTopMargin,
72 insets.right() + kRightMargin, insets.bottom() + kBottomMargin);
90 gfx::Insets offscreen_insets;
103 gfx::Insets new_offscreen_insets;
120 gfx::Insets* offscreen_insets)
    [all...]
  /external/chromium_org/ui/views/touchui/
touch_editing_menu.cc 12 #include "ui/gfx/insets.h"
44 const gfx::Insets& insets)
46 insets_(insets) {
54 virtual gfx::Insets GetInsets() const OVERRIDE {
58 gfx::Insets insets_;
72 set_margins(gfx::Insets(kMenuMargin, kMenuMargin, kMenuMargin, kMenuMargin));
162 gfx::Insets(v_border, h_border, v_border, h_border)));
  /external/chromium_org/chrome/browser/ui/views/frame/
browser_desktop_root_window_host_win.h 41 virtual bool GetClientAreaInsets(gfx::Insets* insets) const OVERRIDE;
  /external/chromium_org/ui/app_list/views/
progress_bar_view.cc 12 #include "ui/gfx/insets.h"
32 gfx::Insets(2, 2, 2, 2))),

Completed in 840 milliseconds

12 3 4 5 6 7 8 91011