HomeSort by relevance Sort by last modified time
    Searched defs:bounds (Results 1 - 25 of 701) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/numeric/conversion/
bounds.hpp 13 #include "boost/numeric/conversion/detail/bounds.hpp"
19 struct bounds : boundsdetail::get_impl<N>::type struct in namespace:boost::numeric
  /external/chromium_org/cc/layers/
paint_properties.h 16 gfx::Size bounds; member in struct:cc::PaintProperties
heads_up_display_layer.cc 29 gfx::Size bounds; local
36 bounds.SetSize(std::min(max_texture_size,
42 bounds.SetSize(size, size);
46 SetBounds(bounds);
  /external/chromium_org/extensions/common/
draggable_region.h 14 gfx::Rect bounds; member in struct:extensions::DraggableRegion
  /external/chromium_org/third_party/WebKit/public/web/
WebDraggableRegion.h 42 WebRect bounds; member in struct:WebKit::WebDraggableRegion
  /external/chromium_org/third_party/skia/src/animator/
SkDrawSaveLayer.h 30 SkDrawRect* bounds; member in class:SkSaveLayer
  /external/skia/src/animator/
SkDrawSaveLayer.h 30 SkDrawRect* bounds; member in class:SkSaveLayer
  /external/chromium/chrome/browser/ui/panels/
panel.h 37 const gfx::Rect& bounds() const { return bounds_; } function in class:Panel
44 virtual void SetBounds(const gfx::Rect& bounds);
141 Panel(Browser* browser, const gfx::Rect& bounds);
  /external/chromium_org/ash/keyboard_overlay/
keyboard_overlay_delegate_unittest.cc 37 gfx::Rect bounds = widget->GetRestoredBounds(); local
38 EXPECT_EQ(work_area.CenterPoint().x(), bounds.CenterPoint().x());
39 EXPECT_EQ(work_area.bottom(), bounds.bottom());
  /external/chromium_org/chrome/browser/ui/panels/
detached_panel_browsertest.cc 22 gfx::Rect bounds(300, 200, 250, 200);
23 CreatePanelParams params("1", bounds, SHOW_AS_ACTIVE);
32 EXPECT_EQ(bounds.x(), panel->GetBounds().x());
36 EXPECT_EQ(bounds.y(), panel->GetBounds().y());
37 EXPECT_EQ(bounds.width(), panel->GetBounds().width());
38 EXPECT_EQ(bounds.height(), panel->GetBounds().height());
166 gfx::Rect bounds = panel->GetBounds(); local
167 EXPECT_LE(primary_work_area.x(), bounds.x());
168 EXPECT_LE(bounds.x(), primary_work_area.right());
169 EXPECT_LE(primary_work_area.y(), bounds.y())
202 gfx::Rect bounds = panel->GetBounds(); local
    [all...]
  /external/skia/gm/
lerpmode.cpp 15 SkRect r, bounds = { 10, 10, 110, 110 }; local
17 r = bounds;
18 r.fRight = bounds.centerX();
21 canvas->saveLayer(&bounds, NULL);
24 r = bounds;
29 r = bounds;
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/grid/
GridModelTest.java 48 .bounds(new Rect(0, 0, 240, 480)).set(ANDROID_URI, ATTR_COLUMN_COUNT, "3");
68 .bounds(new Rect(0, 0, 240, 480)).set(ANDROID_URI, ATTR_COLUMN_COUNT, "3");
180 // Assign some bounds such that the model makes sense when merging spacer sizes
182 button1.bounds(new Rect(90, 10, 100, 40));
183 textView1.bounds(new Rect(200, 10, 100, 40));
184 wspace1.bounds(new Rect(0, 0, 90, 1));
185 wspace1.bounds(new Rect(190, 0, 10, 1));
186 hspace1.bounds(new Rect(0, 0, 1, 10));
317 // Assign some bounds such that the model makes sense when merging spacer sizes
319 button1.bounds(new Rect(0, 0, 100, 40))
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/app_current_window_internal/
app_current_window_internal_api.cc 18 using extensions::api::app_current_window_internal::Bounds;
106 // Start with the current bounds, and change any values that are specified in
108 gfx::Rect bounds = window->GetClientBounds(); local
111 if (params->bounds.left)
112 bounds.set_x(*(params->bounds.left));
113 if (params->bounds.top)
114 bounds.set_y(*(params->bounds.top));
115 if (params->bounds.width
    [all...]
  /external/chromium_org/chrome/browser/extensions/
window_controller.cc 53 gfx::Rect bounds; local
55 bounds = window()->GetRestoredBounds();
57 bounds = window()->GetBounds();
58 result->SetInteger(keys::kLeftKey, bounds.x());
59 result->SetInteger(keys::kTopKey, bounds.y());
60 result->SetInteger(keys::kWidthKey, bounds.width());
61 result->SetInteger(keys::kHeightKey, bounds.height());
  /external/chromium_org/ui/gfx/
path_aura.cc 14 const SkRect bounds = getBounds(); local
16 bounds.round(&ibounds);
  /external/chromium_org/ui/views/
mouse_watcher_view_host.cc 34 gfx::Rect bounds = view_->GetLocalBounds(); local
35 gfx::Point view_topleft(bounds.origin());
37 bounds.set_origin(view_topleft);
38 bounds.SetRect(view_topleft.x() - hot_zone_insets_.left(),
40 bounds.width() + hot_zone_insets_.width(),
41 bounds.height() + hot_zone_insets_.height());
43 return bounds.Contains(screen_point.x(), screen_point.y());
  /external/qemu/android/skin/
region.h 38 extern void skin_region_get_bounds( SkinRegion* r, SkinRect* bounds );
92 SkinRect bounds; member in struct:SkinRegion
  /external/qemu/distrib/sdl-1.2.15/src/video/gem/
SDL_gemwm.c 59 SDL_Rect bounds; local
78 bounds.x = 0;
79 bounds.y = 0;
80 bounds.w = icon->w;
81 bounds.h = icon->h;
82 if ( SDL_LowerBlit(icon, &bounds, sicon, &bounds) < 0 ) {
  /external/chromium/chrome/browser/ui/views/infobars/
infobar_button_border.cc 72 const gfx::Rect& bounds = view.bounds(); local
75 bounds.width() - set->top_right->width() - set->top_left->width(),
80 bounds.width() - set->top_right->width(), 0);
85 bounds.height() - set->top->height() - set->bottom_left->height(), false);
90 bounds.width() - set->right->width() - set->left->width(),
91 bounds.height() - set->bottom->height() - set->top->height(), false);
95 set->right->height(), bounds.width() - set->right->width(),
97 bounds.height() - set->bottom_right->height() - set->top_right->height(),
102 bounds.height() - set->bottom_left->height())
    [all...]
  /external/chromium_org/ash/shell/
lock_view.cc 51 gfx::Rect bounds = GetLocalBounds(); variable
53 bounds.set_y(bounds.bottom() - ps.height() - 5);
54 bounds.set_x((bounds.width() - ps.width()) / 2);
55 bounds.set_size(ps);
56 unlock_button_->SetBoundsRect(bounds);
89 gfx::Size root_window_size = Shell::GetPrimaryRootWindow()->bounds().size();
90 params.bounds = gfx::Rect((root_window_size.width() - ps.width()) / 2,
  /external/chromium_org/ash/system/tray/
fixed_sized_scroll_view.cc 38 gfx::Rect bounds = gfx::Rect(contents()->GetPreferredSize()); local
39 bounds.set_width(std::max(0, width() - GetScrollBarWidth()));
40 contents()->SetBoundsRect(bounds);
44 gfx::Rect bounds = contents()->bounds(); local
45 bounds.set_width(bounds.width() + GetScrollBarWidth());
46 contents()->SetBoundsRect(bounds);
51 gfx::Rect bounds = gfx::Rect(contents()->GetPreferredSize()); local
52 bounds.set_width(std::max(0, width() - GetScrollBarWidth()))
    [all...]
tray_item_more.cc 88 gfx::Rect bounds(size);
89 bounds.set_x(width() - size.width() - kTrayPopupPaddingBetweenItems);
90 bounds.set_y((height() - size.height()) / 2);
91 more_->SetBoundsRect(bounds);
93 // Adjust the label's bounds in case it got cut off by |more_|.
94 if (label_->bounds().Intersects(more_->bounds())) {
95 gfx::Rect bounds = label_->bounds(); local
96 bounds.set_width(more_->x() - kTrayPopupPaddingBetweenItems - label_->x())
    [all...]
  /external/chromium_org/ash/wm/gestures/
system_pinch_handler.cc 75 gfx::Rect bounds = local
78 phantom_.Show(bounds);
130 return window->bounds();
141 return window->bounds();
  /external/chromium_org/ash/wm/workspace/
phantom_window_controller.h 37 // Bounds last passed to Show().
38 const gfx::Rect& bounds() const { return bounds_; } function in class:ash::internal::PhantomWindowController
44 void Show(const gfx::Rect& bounds);
64 // Creates and shows the |phantom_widget_| at |bounds|.
67 void CreatePhantomWidget(const gfx::Rect& bounds);
75 // Initially the bounds of |window_|. Each time Show() is invoked
76 // |start_bounds_| is then reset to the bounds of |phantom_widget_| and
84 // Used to transition the bounds.
  /external/chromium_org/chrome/test/base/
interactive_test_utils_gtk.cc 77 gfx::Rect bounds = ui::GetWidgetScreenBounds(widget); local
79 bounds.x() + bounds.width() / 2,
80 bounds.y() + bounds.height() / 2,

Completed in 804 milliseconds

1 2 3 4 5 6 7 8 91011>>