Searched refs:bounds (Results 26 - 50 of 592) sorted by relevance

1234567891011>>

/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...]
/external/qemu/distrib/sdl-1.2.15/src/video/bwindow/
H A DSDL_sysyuv.cc41 BBitmap * BE_GetOverlayBitmap(BRect bounds, color_space cs) { argument
43 bbitmap = new BBitmap(bounds,B_BITMAP_WILL_OVERLAY,cs);
50 uint32 width = bounds.IntegerWidth() + 1;
51 uint32 height = bounds.IntegerHeight() + 1;
78 fprintf(stderr,"GetOverlayBitmap failed bounds tests\n");
84 bounds.Set(bounds.left,bounds.top,bounds.right+width_padding,bounds
134 BRect bounds; local
[all...]
/external/skia/legacy/src/animator/
H A DSkBoundable.h23 void setBounds(SkIRect& bounds) { fBounds = bounds; } argument
25 void clearBounds() { fBounds.fLeft = (int16_t) SkToU16(0x8000); }; // mark bounds as unset
/external/skia/src/animator/
H A DSkBoundable.h23 void setBounds(SkIRect& bounds) { fBounds = bounds; } argument
25 void clearBounds() { fBounds.fLeft = (int16_t) SkToU16(0x8000); }; // mark bounds as unset
/external/chromium/chrome/browser/chromeos/frame/
H A Dbrowser_view.cc152 int LayoutTitlebarComponentsWithVerticalTabs(const gfx::Rect& bounds) { argument
153 if (bounds.IsEmpty())
162 int status_x = bounds.x();
164 status_area_->SetBounds(status_x, bounds.bottom() - status_height,
171 tabstrip_->SetBounds(bounds.x(), bounds.y(), tabstrip_w,
172 bounds.height() - status_height);
181 int tabstrip_max_x = tabstrip_->bounds().right();
183 bounds.y() - kVerticalTabStripToolbarOffset,
187 // Adjust the available bounds fo
196 LayoutTitlebarComponents(const gfx::Rect& bounds) argument
[all...]
H A Dbubble_window.h34 const gfx::Rect& bounds,
44 virtual void InitWindow(GtkWindow* parent, const gfx::Rect& bounds);
/external/webkit/Source/WebKit/android/
H A DRenderSkinMediaButton.cpp114 SkRect bounds(r);
181 SkScalar quarterHeight = SkScalarHalf(SkScalarHalf(bounds.height()));
182 bounds.fTop += quarterHeight + SkScalarHalf(3);
183 bounds.fBottom += -quarterHeight + SK_ScalarHalf;
189 bounds.fLeft += thumbHalfWidth;
190 bounds.fRight -= thumbHalfWidth;
195 SkRect playedRect(bounds);
198 bounds.fLeft = alreadyPlayed;
203 SkNinePatch::DrawNine(canvas, bounds, gButton[ninePatchIndex], margin);
211 canvas->translate(bounds
[all...]
H A DRenderSkinNinePatch.cpp37 extern void NinePatch_Draw(SkCanvas* canvas, const SkRect& bounds,
86 void RenderSkinNinePatch::DrawNinePatch(SkCanvas* canvas, const SkRect& bounds, argument
93 if (patch.m_bitmap.width() >= bounds.width() || patch.m_bitmap.height() >= bounds.height()) {
98 SkNinePatch::DrawMesh(canvas, bounds, patch.m_bitmap,
103 NinePatch_Draw(canvas, bounds, patch.m_bitmap, *data, 0, 0);
/external/chromium/chrome/browser/ui/views/
H A Dwindow.cc17 const gfx::Rect& bounds,
16 CreateViewsWindow(gfx::NativeWindow parent, const gfx::Rect& bounds, views::WindowDelegate* delegate) argument
H A Dwindow.h24 const gfx::Rect& bounds,
/external/skia/src/core/
H A DSkBBoxHierarchy.h27 * @param bounds The bounding box, should not be empty
33 virtual void insert(void* data, const SkIRect& bounds, bool defer = false) = 0;
/external/webkit/Source/JavaScriptCore/wtf/
H A DStackBounds.h46 StackBounds bounds; local
47 bounds.initialize();
48 bounds.checkConsistency();
49 return bounds;
/external/webkit/Source/WebCore/page/chromium/
H A DChromeClientChromium.h46 // and size the widget with the given bounds, relative to the screen.
49 virtual void popupOpened(PopupContainer* popupContainer, const IntRect& bounds,
/external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/
H A DPluginObjectMac.mm39 CGRect bounds = [self bounds];
42 CGContextShowTextAtPoint(context, bounds.origin.x + 3.0f, bounds.origin.y + bounds.size.height - 30.0f, text, strlen(text));
54 nullValue, @"bounds",
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowDrawable.java30 private Rect bounds = new Rect(0, 0, 0, 0); field in class:ShadowDrawable
76 return bounds;
81 this.bounds = rect;
86 bounds = new Rect(left, top, right, bottom);
91 Rect bounds = new Rect();
92 copyBounds(bounds);
93 return bounds;
97 public void copyBounds(Rect bounds) { argument
98 bounds.set(getBounds());
162 if (bounds !
[all...]
/external/chromium/chrome/browser/ui/gtk/infobars/
H A Dinfobar_arrow_model.cc73 const gfx::Rect& bounds,
79 path.moveTo(bounds.x() + 0.5, bounds.bottom() + 0.5);
80 path.rLineTo(bounds.width() / 2.0, -bounds.height());
81 path.lineTo(bounds.right() + 0.5, bounds.bottom() + 0.5);
90 grad_points[0].set(SkIntToScalar(0), SkIntToScalar(bounds.bottom()));
92 SkIntToScalar(bounds.bottom() + InfoBar::kInfoBarHeight));
71 Paint(GtkWidget* widget, GdkEventExpose* expose, const gfx::Rect& bounds, const GdkColor& border_color) argument
/external/chromium/chrome/browser/ui/views/autocomplete/
H A Dtouch_autocomplete_popup_contents_view.cc74 gfx::Rect bounds(GetContentsBounds());
76 static_cast<double>(bounds.width()) / visible_children.size();
77 int x = bounds.x();
79 int next_x = bounds.x() + static_cast<int>(((i + 1) * child_width) + 0.5);
80 visible_children[i]->SetBounds(x, bounds.y(), next_x - x, bounds.height());
95 gfx::Rect bounds(GetContentsBounds());
98 canvas->DrawLineInt(color, (*i)->x(), bounds.y(), (*i)->x(),
99 bounds.bottom());
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/ui/dialogs/
H A DResizableDialog.java68 // track the current dialog bounds
105 Rectangle bounds = loadBounds();
106 if (bounds != null) {
107 int x = bounds.x;
108 int y = bounds.y;
137 * Loads bounds from {@link IDialogSettings}.
152 * Saves bounds to {@link IDialogSettings}.
154 private void saveBounds(Rectangle bounds) { argument
156 settings.put(X, bounds.x);
157 settings.put(Y, bounds
[all...]
/external/webkit/Source/WebKit/mac/Carbon/
H A DHIViewAdapter.m144 NSRect targetBounds = [self bounds];
148 targetBounds = [view bounds];
201 Rect bounds;
202 GetRegionBounds(inRegion, &bounds);
204 bounds.top, bounds.left, bounds.bottom, bounds.right);
208 Rect bounds, cntlBounds;
214 bounds
[all...]
/external/chromium/chrome/browser/ui/views/infobars/
H A Dinfobar_button_border.cc72 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
[all...]
/external/webkit/Source/WebCore/platform/graphics/ca/win/
H A DLegacyCACFLayerTreeHost.cpp192 rootLayer()->setBounds(bounds());
224 rootLayer()->setBounds(bounds());
256 CGRect bounds = this->bounds(); local
261 if (!wkCACFContextBeginUpdate(m_context, space, sizeof(space), CACurrentMediaTime(), bounds, windowDirtyRects.data(), windowDirtyRects.size()))
279 rect.y1 = bounds.origin.y + bounds.size.height - (r->origin.y + r->size.height);
300 wkCACFContextAddUpdateRect(m_context, bounds);
348 CGRect bounds = this->bounds(); local
[all...]
/external/chromium-trace/trace-viewer/src/
H A Dmodel.js52 this.bounds = new base.Range();
118 this.bounds.reset();
121 this.bounds.addRange(this.kernel.bounds);
125 this.bounds.addRange(this.processes[pid].bounds);
130 this.bounds.addRange(this.cpus[cpuNumber].bounds);
135 if (this.bounds.isEmpty)
137 var timeBase = this.bounds
[all...]
/external/webkit/Source/WebKit/win/
H A DWebScrollBar.cpp135 /* [in] */ RECT bounds)
137 IntRect rect(bounds.left, bounds.top, bounds.right-bounds.left, bounds.bottom-bounds.top);
170 /* [retval][out] */ RECT* bounds)
172 if (!bounds)
175 bounds
134 setRect( RECT bounds) argument
169 frameRect( RECT* bounds) argument
[all...]
/external/chromium/chrome/browser/ui/views/tabs/
H A Dbase_tab.cc77 // Draws the icon image at the center of |bounds|.
83 const gfx::Rect& bounds,
85 // Center the image within bounds.
86 int dst_x = bounds.x() - (icon_width - bounds.width()) / 2;
87 int dst_y = bounds.y() - (icon_height - bounds.height()) / 2;
426 gfx::Rect bounds = GetIconBounds(); local
427 if (bounds.IsEmpty())
430 // The size of bounds ha
78 DrawIconCenter(gfx::Canvas* canvas, const SkBitmap& image, int image_offset, int icon_width, int icon_height, const gfx::Rect& bounds, bool filter) argument
560 gfx::Rect bounds = GetIconBounds(); local
[all...]
/external/chromium/chrome/browser/
H A Dblocked_content_container.cc16 const gfx::Rect& bounds,
20 bounds(bounds),
26 gfx::Rect bounds; member in struct:BlockedContentContainer::BlockedContent
38 const gfx::Rect& bounds,
48 BlockedContent(tab_contents, disposition, bounds, user_gesture));
72 content.bounds,
142 i->bounds = new_bounds;
14 BlockedContent(TabContents* tab_contents, WindowOpenDisposition disposition, const gfx::Rect& bounds, bool user_gesture) argument
36 AddTabContents(TabContents* tab_contents, WindowOpenDisposition disposition, const gfx::Rect& bounds, bool user_gesture) argument

Completed in 3061 milliseconds

1234567891011>>