Searched refs:bounds (Results 351 - 375 of 1705) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/ash/wm/
H A Dscreen_dimmer_unittest.cc68 EXPECT_EQ(gfx::Rect(root_layer->bounds().size()).ToString(),
69 dimming_layer->bounds().ToString());
75 EXPECT_EQ(kNewBounds.ToString(), dimming_layer->bounds().ToString());
H A Dwindow_util.h52 // Returns the bounds of a left snapped window with default width in parent
57 // Returns the bounds of a right snapped window with default width in parent
62 // Adjusts |bounds| so that the size does not exceed |max_size|.
64 gfx::Rect* bounds);
66 // Move the given bounds inside the given |visible_area| in parent coordinates,
68 // This also ensures that the top of the bounds is visible.
71 gfx::Rect* bounds);
73 // Move the given bounds inside the given |visible_area| in parent coordinates,
75 // This also ensures that the top of the bounds is visible.
80 gfx::Rect* bounds);
[all...]
H A Dresize_shadow.h44 // Updates the effect positions based on the |bounds| of the window.
45 void Layout(const gfx::Rect& bounds);
H A Dstacking_controller.h25 const gfx::Rect& bounds) OVERRIDE;
/external/chromium_org/content/renderer/
H A Dexternal_popup_menu.cc31 void ExternalPopupMenu::show(const blink::WebRect& bounds) { argument
32 blink::WebRect rect = bounds;
41 popup_params.bounds = rect;
/external/chromium_org/mojo/examples/sample_app/
H A Dsample_app.cc59 virtual void OnBoundsChanged(mojo::SizePtr bounds) MOJO_OVERRIDE {
60 assert(bounds); variable
62 gles2_client_->SetSize(*bounds);
/external/chromium_org/third_party/skia/gm/
H A Dbitmapsource.cpp58 SkRect bounds; variable
59 fBitmap.getBounds(&bounds);
63 SkAutoTUnref<SkImageFilter> bitmapSourceDstRectOnly(SkBitmapSource::Create(fBitmap, bounds, dstRect));
77 // Draw the entire bitmap scaled to a destination rect (bounds -> dstRect).
/external/chromium_org/third_party/skia/src/views/animated/
H A DSkBorderView.cpp58 SkRect bounds; local
59 fAnim.getInvalBounds(&bounds);
60 this->inval(&bounds);
H A DSkProgressBarView.cpp41 SkRect bounds; local
42 fAnim.getInvalBounds(&bounds);
43 this->inval(&bounds);
/external/chromium_org/ui/app_list/views/
H A Dfolder_background_view.cc42 const gfx::Rect bounds(layer()->bounds().size());
44 gfx::GetScaleTransform(bounds.CenterPoint(), kFolderInkBubbleScale);
/external/chromium_org/ui/aura/bench/
H A Dbench_main.cc182 gfx::Rect bounds(width, height);
183 webgl_.SetBounds(bounds);
221 bounds.size());
239 webgl_.SchedulePaint(gfx::Rect(webgl_.bounds().size()));
279 layer_->SchedulePaint(gfx::Rect(layer_->bounds().size()));
328 background.SetBounds(host->window()->bounds());
332 window.SetBounds(gfx::Rect(background.bounds().size()));
340 gfx::Rect bounds(window.bounds().size());
341 bounds
[all...]
/external/chromium_org/ui/events/gesture_detection/
H A Dsnap_scroll_controller.cc20 if (display.bounds().IsEmpty())
24 std::abs(hypot(static_cast<float>(display.bounds().width()),
25 static_cast<float>(display.bounds().height())));
/external/libcap-ng/libcap-ng-0.7/utils/
H A Dproc-llist.c54 newnode->bounds = node->bounds;
78 free(cur->bounds);
/external/skia/gm/
H A Dbitmapsource.cpp57 SkRect bounds; variable
58 fBitmap.getBounds(&bounds);
62 SkAutoTUnref<SkImageFilter> bitmapSourceDstRectOnly(SkBitmapSource::Create(fBitmap, bounds, dstRect));
76 // Draw the entire bitmap scaled to a destination rect (bounds -> dstRect).
/external/skia/src/views/animated/
H A DSkBorderView.cpp58 SkRect bounds; local
59 fAnim.getInvalBounds(&bounds);
60 this->inval(&bounds);
H A DSkProgressBarView.cpp41 SkRect bounds; local
42 fAnim.getInvalBounds(&bounds);
43 this->inval(&bounds);
/external/chromium-trace/trace-viewer/src/tracing/trace_model/
H A Dkernel.js73 this.bounds.addRange(cpu.bounds);
/external/chromium_org/ash/display/
H A Dcursor_window_controller.cc146 SetBoundsInScreen(display.bounds());
159 gfx::Rect bounds = cursor_window_->bounds(); local
160 bounds.set_origin(point);
161 cursor_window_->SetBounds(bounds);
207 SetBoundsInScreen(container->bounds());
210 void CursorWindowController::SetBoundsInScreen(const gfx::Rect& bounds) { argument
211 bounds_in_screen_ = bounds;
262 gfx::Rect(cursor_window_->bounds().size()));
H A Droot_window_transformers.cc76 rotate.Translate(display.bounds().height() - one_pixel, 0);
80 rotate.Translate(0, display.bounds().width() - one_pixel);
84 rotate.Translate(display.bounds().width() - one_pixel,
85 display.bounds().height() - one_pixel);
153 gfx::Rect bounds(host_size);
154 bounds.Inset(host_insets_);
155 bounds = ui::ConvertRectToDIP(root_window_->layer(), bounds);
156 gfx::RectF new_bounds(bounds);
165 // Floor the size because the bounds i
[all...]
H A Dscreen_position_controller.h26 const gfx::Rect& bounds,
H A Dshared_display_edge_indicator.cc39 canvas->FillRect(gfx::Rect(bounds().size()), color_);
47 views::Widget* CreateWidget(const gfx::Rect& bounds, argument
61 gfx::Display display = Shell::GetScreen()->GetDisplayMatching(bounds);
65 screen_position_client->SetBounds(window, bounds, display);
/external/chromium_org/ash/host/
H A Dash_window_tree_host_win.cc81 virtual void SetBounds(const gfx::Rect& bounds) OVERRIDE {
83 saved_window_rect_.right = saved_window_rect_.left + bounds.width();
84 saved_window_rect_.bottom = saved_window_rect_.top + bounds.height();
87 WindowTreeHostWin::SetBounds(bounds);
/external/chromium_org/ash/test/
H A Dash_test_base.h71 aura::Window* CreateTestWindowInShellWithBounds(const gfx::Rect& bounds);
74 const gfx::Rect& bounds);
78 const gfx::Rect& bounds);
83 const gfx::Rect& bounds);
/external/chromium_org/athena/home/public/
H A Dhome_card.h56 // Called when the virtual keyboard changed has changed to |bounds|. An empty
57 // |bounds| indicates that the virtual keyboard is not visible anymore.
59 const gfx::Rect& bounds) = 0;
/external/chromium_org/cc/test/
H A Dlayer_tree_host_common_test.h40 const gfx::Size& bounds,
46 layer->SetBounds(bounds);
55 const gfx::Size& bounds,
63 const gfx::Size& bounds,
35 SetLayerPropertiesForTestingInternal( LayerType* layer, const gfx::Transform& transform, const gfx::Point3F& transform_origin, const gfx::PointF& position, const gfx::Size& bounds, bool flatten_transform, bool is_3d_sorted) argument

Completed in 986 milliseconds

<<11121314151617181920>>