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

1 2 3 4 5 6 7 8 91011>>

  /external/valgrind/main/drd/tests/
matinv.stdout.exp 1 Error within bounds.
omp_matinv.stdout.exp 1 Error within bounds.
omp_matinv_racy.stdout.exp 1 Error within bounds.
  /external/webkit/Source/WebKit/chromium/public/
WebExternalPopupMenu.h 40 virtual void show(const WebRect& bounds) = 0;
  /external/chromium/chrome/browser/ui/
window_sizer.cc 26 virtual bool GetPersistentState(gfx::Rect* bounds,
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, maximized))
    [all...]
  /cts/tests/tests/gesture/src/android/gesture/cts/
LineGestureStrokeHelper.java 61 RectF bounds = new RectF(); local
62 linePath.computeBounds(bounds, true);
66 Assert.assertEquals(LINE_MIDWAY_POINT, bounds.bottom);
67 Assert.assertEquals(LINE_START_POINT, bounds.left);
68 Assert.assertEquals(LINE_MIDWAY_POINT, bounds.right);
69 Assert.assertEquals(LINE_START_POINT, bounds.top);
73 * Helper method to assert expected values for a bounds derived from createLineGesture
77 void assertLineBoundingBox(RectF bounds) {
80 Assert.assertEquals(LINE_END_POINT, bounds.bottom);
81 Assert.assertEquals(LINE_START_POINT, bounds.left)
    [all...]
  /external/chromium/chrome/browser/chromeos/frame/
panel_browser_view.cc 33 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->height() < kPanelMinHeightPixels
    [all...]
  /external/webkit/Source/WebKit/chromium/src/
DragScrollTimer.cpp 110 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.width() - scrollMargin * 2)
    [all...]
  /external/chromium/chrome/browser/ui/cocoa/
browser_frame_view.h 50 bounds:(NSRect)bounds
  /external/clang/test/SemaCXX/
array-bounds-system-header.cpp 2 #include <array-bounds-system-header.h>
  /external/skia/legacy/src/animator/
SkDrawSaveLayer.cpp 19 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/src/animator/
SkDrawSaveLayer.cpp 19 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)
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/
FrameLayoutRuleTest.java 29 .bounds(new Rect(0, 0, 240, 480)).add(
30 TestNode.create("android.widget.Button").id("@+id/Button01").bounds(
32 TestNode.create("android.widget.Button").id("@+id/Button02").bounds(
34 TestNode.create("android.widget.Button").id("@+id/Button03").bounds(
36 TestNode.create("android.widget.Button").id("@+id/Button04").bounds(
45 // Bounds of the dragged item
53 // Bounds rectangle
58 // Without drag bounds we should just draw guide lines instead
  /frameworks/base/core/jni/android/graphics/
NinePatch.cpp 30 extern void NinePatch_Draw(SkCanvas* canvas, const SkRect& bounds,
68 static void draw(JNIEnv* env, SkCanvas* canvas, SkRect& bounds,
86 SkScalarToFloat(bounds.fLeft), SkScalarToFloat(bounds.fTop),
87 SkScalarToFloat(bounds.fRight), SkScalarToFloat(bounds.fBottom));
88 NinePatch_Draw(canvas, bounds, *bitmap, *chunk, paint, NULL);
93 canvas->translate(bounds.fLeft, bounds.fTop);
96 bounds.fRight = SkScalarDiv(bounds.fRight-bounds.fLeft, scale)
122 SkRect bounds; local
138 SkRect bounds; local
151 SkRect bounds; local
    [all...]
  /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/automation/
testing_automation_provider_gtk.cc 36 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());
  /external/chromium/chrome/browser/ui/panels/
panel_manager.cc 78 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());
    [all...]
  /external/webkit/Source/JavaScriptCore/wtf/
StackBounds.h 46 StackBounds bounds; local
47 bounds.initialize();
48 bounds.checkConsistency();
49 return bounds;
  /external/webkit/Source/WebCore/page/chromium/
ChromeClientChromium.h 46 // and size the widget with the given bounds, relative to the screen.
49 virtual void popupOpened(PopupContainer* popupContainer, const IntRect& bounds,
  /libcore/luni/src/test/java/tests/api/java/lang/reflect/
TypeVariableTest.java 38 Type[] bounds = typeVariable.getBounds(); local
39 assertLenghtOne(bounds);
40 assertEquals(Object.class, bounds[0]);
54 Type[] bounds = typeVariable.getBounds(); local
55 assertLenghtOne(bounds);
56 assertEquals(Object.class, bounds[0]);
70 Type[] bounds = typeVariable.getBounds(); local
71 assertLenghtOne(bounds);
72 assertEquals(Object.class, bounds[0]);
135 Type[] bounds = typeVariable.getBounds() local
145 Type[] bounds = typeVariable.getBounds(); local
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/cache/
ZoomCache.java 31 public Bitmap getImage(ImagePreset preset, Rect bounds) {
32 if (mBounds != bounds) {
44 public void setImage(ImagePreset preset, Rect bounds, Bitmap bitmap) {
46 mBounds = bounds;
  /external/qemu/distrib/sdl-1.2.15/src/video/bwindow/
SDL_BView.h 64 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/
int.stderr.exp 4 GPF (Pointer out of bounds?)
  /frameworks/base/core/java/android/view/
IMagnificationCallbacks.aidl 25 void onMagnifedBoundsChanged(in Region bounds);
  /external/skia/bench/
ChromeBench.cpp 483 SkIRect bounds; local
484 canvas->getClipDeviceBounds(&bounds);
485 SkASSERT(bounds.right()-bounds.left() >= W);
486 SkASSERT(bounds.bottom()-bounds.top() >= H);

Completed in 696 milliseconds

1 2 3 4 5 6 7 8 91011>>