Searched refs:bounds (Results 1 - 25 of 512) sorted by relevance

1234567891011>>

/external/valgrind/main/drd/tests/
H A Dmatinv.stdout.exp1 Error within bounds.
H A Domp_matinv.stdout.exp1 Error within bounds.
H A Domp_matinv_racy.stdout.exp1 Error within bounds.
/external/chromium/chrome/browser/ui/
H A Dwindow_sizer.cc26 virtual bool GetPersistentState(gfx::Rect* bounds, argument
29 DCHECK(bounds && maximized);
50 bounds->SetRect(left, top, std::max(0, right - left),
70 virtual bool GetLastActiveWindowState(gfx::Rect* bounds) const {
95 *bounds = window->GetRestoredBounds();
159 gfx::Rect* bounds,
161 *bounds = specified_bounds;
162 if (bounds->IsEmpty()) {
164 if (!GetLastWindowBounds(bounds)) {
165 if (!GetSavedWindowBounds(bounds, maximize
158 DetermineWindowBounds(const gfx::Rect& specified_bounds, gfx::Rect* bounds, bool* maximized) const argument
186 GetSavedWindowBounds(gfx::Rect* bounds, bool* maximized) const argument
[all...]
H A Dwindow_sizer.h21 // window of the same type, the last saved bounds of the window from the
48 // Returns the bounds of the work area of the primary monitor.
51 // Returns the bounds of the primary monitor.
54 // Returns the bounds of the work area of the monitor that most closely
55 // intersects the provided bounds.
59 // Returns the delta between the work area and the monitor bounds for the
60 // monitor that most closely intersects the provided bounds.
74 // Returns the bounds of the work area of the monitor at the specified
90 // Retrieve the persisted bounds of the window. Returns true if there was
92 virtual bool GetPersistentState(gfx::Rect* bounds,
[all...]
/external/chromium/chrome/browser/chromeos/frame/
H A Dpanel_browser_view.cc33 void PanelBrowserView::LimitBounds(gfx::Rect* bounds) const {
38 if (bounds->width() == 0 && bounds->height() == 0) {
39 bounds->set_width(kPanelDefaultWidthPixels);
40 bounds->set_height(kPanelDefaultHeightPixels);
43 if (bounds->width() < kPanelMinWidthPixels)
44 bounds->set_width(kPanelMinWidthPixels);
45 else if (bounds->width() > max_width)
46 bounds->set_width(max_width);
48 if (bounds
77 SetBounds(const gfx::Rect& bounds) argument
[all...]
/external/webkit/Source/WebKit/chromium/src/
H A DDragScrollTimer.cpp110 IntRect bounds(0, 0, view->visibleWidth(), view->visibleHeight());
111 if (!bounds.contains(location))
114 bounds.setY(bounds.y() + scrollMargin);
115 bounds.setHeight(bounds.height() - scrollMargin * 2);
116 bounds.setX(bounds.x() + scrollMargin);
117 bounds.setWidth(bounds
[all...]
/external/chromium/chrome/browser/ui/cocoa/
H A Dbrowser_frame_view.h50 bounds:(NSRect)bounds
/external/clang/test/SemaCXX/
H A Darray-bounds-system-header.cpp2 #include <array-bounds-system-header.h>
/external/webkit/Source/WebKit/chromium/public/
H A DWebExternalPopupMenu.h40 virtual void show(const WebRect& bounds) = 0;
/external/skia/src/animator/
H A DSkDrawSaveLayer.cpp19 SK_MEMBER(bounds, Rect),
27 SkSaveLayer::SkSaveLayer() : paint(NULL), bounds(NULL) {
35 if (!bounds) {
44 maker.fCanvas->saveLayer(&bounds->fRect, &realPaint, SkCanvas::kHasAlphaLayer_SaveFlag);
47 maker.fCanvas->saveLayer(&bounds->fRect, save, SkCanvas::kHasAlphaLayer_SaveFlag);
64 if (bounds)
65 SkDebugf("bounds=\"%s\" ", bounds->id);
73 if (!bounds)
/external/skia/samplecode/
H A DSampleStrokeText.cpp39 SkRect bounds = path.getBounds(); local
41 bounds.inset(sw, sw);
42 path.offset(-bounds.fLeft, -bounds.fTop);
43 bounds.offset(-bounds.fLeft, -bounds.fTop);
45 int w = SkScalarRound(bounds.width());
46 int h = SkScalarRound(bounds.height());
85 SkRect bounds local
[all...]
H A DSampleLayerMask.cpp43 SkRect bounds = r; local
44 bounds.offset(-bounds.fLeft, -bounds.fTop);
45 c.drawOval(bounds, paint);
/external/qemu/distrib/sdl-1.2.15/src/video/gem/
H A DSDL_gemwm.c59 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/automation/
H A Dtesting_automation_provider_gtk.cc36 gfx::Rect* bounds) {
46 *bounds = gfx::Rect(widget->allocation.width, widget->allocation.height);
56 bounds->set_origin(gfx::Point(x, y));
62 gfx::Rect* bounds,
69 const gfx::Rect& bounds,
74 gtk_window_move(window, bounds.x(), bounds.height());
75 gtk_window_resize(window, bounds.width(), bounds.height());
32 WindowGetViewBounds(int handle, int view_id, bool screen_coordinates, bool* success, gfx::Rect* bounds) argument
61 GetWindowBounds(int handle, gfx::Rect* bounds, bool* result) argument
68 SetWindowBounds(int handle, const gfx::Rect& bounds, bool* success) argument
H A Dtesting_automation_provider_win.cc46 gfx::Rect* bounds,
54 *bounds = window_placement.rcNormalPosition;
59 const gfx::Rect& bounds,
64 if (::MoveWindow(hwnd, bounds.x(), bounds.y(), bounds.width(),
65 bounds.height(), true)) {
45 GetWindowBounds(int handle, gfx::Rect* bounds, bool* success) argument
58 SetWindowBounds(int handle, const gfx::Rect& bounds, bool* success) argument
/external/chromium/chrome/browser/ui/panels/
H A Dpanel_manager.cc78 gfx::Rect bounds = browser->override_bounds(); local
79 bool is_within_bounds = ComputeBoundsForNextPanel(&bounds, true);
81 Panel* panel = new Panel(browser, bounds);
93 gfx::Rect bounds = panel->bounds(); local
94 if (ComputeBoundsForNextPanel(&bounds, true)) {
131 current_x_ = (*iter)->bounds().x() + (*iter)->bounds().width();
141 dragging_panel_bounds_ = panel->bounds();
155 gfx::Rect new_bounds(active_panels_[dragging_panel_index_]->bounds());
281 ComputeBoundsForNextPanel(gfx::Rect* bounds, bool allow_size_change) argument
[all...]
/external/chromium/chrome/browser/prefs/
H A Dpref_service_uitest.cc110 gfx::Rect bounds; local
111 ASSERT_TRUE(window->GetBounds(&bounds));
118 EXPECT_EQ(bottom, bounds.y() + bounds.height());
123 EXPECT_EQ(top, bounds.y());
128 EXPECT_EQ(left, bounds.x());
133 EXPECT_EQ(right, bounds.x() + bounds.width());
166 gfx::Rect bounds; local
167 ASSERT_TRUE(window->GetBounds(&bounds));
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/bwindow/
H A DSDL_BView.h64 BRect bounds; local
65 bounds.top = bounds.left = 0;
66 bounds.right = width;
67 bounds.bottom = height;
69 FillRect(bounds, B_SOLID_HIGH);
72 bounds = image->Bounds();
73 Draw(bounds);
/external/valgrind/main/none/tests/x86/
H A Dint.stderr.exp4 GPF (Pointer out of bounds?)
/external/skia/bench/
H A DChromeBench.cpp483 SkIRect bounds; local
484 canvas->getClipDeviceBounds(&bounds);
485 SkASSERT(bounds.right()-bounds.left() >= W);
486 SkASSERT(bounds.bottom()-bounds.top() >= H);
/external/chromium/chrome/browser/chromeos/login/
H A Dusername_view.cc48 gfx::Rect frame_bounds = this->bounds();
65 // The rectangle will be intersected with the bounds, so the correct half
85 gfx::Rect bounds = GetContentsBounds(); local
87 PaintUsername(bounds);
89 DCHECK(bounds.size() ==
91 canvas->DrawBitmapInt(*text_image_, bounds.x(), bounds.y());
106 void UsernameView::PaintUsername(const gfx::Rect& bounds) { argument
107 margin_width_ = bounds.height() * kMarginRatio;
108 gfx::CanvasSkia canvas(bounds
[all...]
/external/webkit/Source/WebCore/editing/mac/
H A DSelectionControllerMac.mm36 static CGRect accessibilityConvertScreenRect(CGRect bounds)
41 bounds.origin.y = (screenHeight - (bounds.origin.y + bounds.size.height));
43 bounds = CGRectZero;
45 return bounds;
/external/skia/src/effects/
H A DSkRectShape.cpp22 void SkRectShape::setRect(const SkRect& bounds) { argument
23 fBounds = bounds;
27 void SkRectShape::setOval(const SkRect& bounds) { argument
28 fBounds = bounds;
37 void SkRectShape::setRRect(const SkRect& bounds, SkScalar rx, SkScalar ry) { argument
45 fBounds = bounds;
/external/chromium/chrome/browser/ui/tabs/
H A Ddock_info_win.cc210 RECT bounds; local
212 !GetWindowRect(hwnd, &bounds)) {
218 if (CheckPoint(hwnd, bounds.left, (bounds.top + bounds.bottom) / 2,
220 CheckPoint(hwnd, bounds.right - 1, (bounds.top + bounds.bottom) / 2,
222 CheckPoint(hwnd, (bounds.left + bounds
[all...]

Completed in 714 milliseconds

1234567891011>>