HomeSort by relevance Sort by last modified time
    Searched full:bounds (Results 1 - 25 of 5192) 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/fonttools/Lib/fontTools/pens/
boundsPen.py 13 """Pen to calculate the "control bounds" of a shape. This is the
18 When the shape has been drawn, the bounds are available as the
19 'bounds' attribute of the pen object. It's a 4-tuple:
25 self.bounds = None
28 bounds = self.bounds
29 if bounds:
30 self.bounds = updateBounds(bounds, pt)
33 self.bounds = (x, y, x, y
    [all...]
  /external/chromium_org/tools/telemetry/telemetry/timeline/
bounds_unittest.py 6 from telemetry.timeline import bounds namespace
13 self.assertEquals(0, bounds.Bounds.GetOverlap(10, 20, 30, 40))
14 self.assertEquals(0, bounds.Bounds.GetOverlap(30, 40, 10, 20))
16 self.assertEquals(10, bounds.Bounds.GetOverlap(10, 30, 20, 40))
17 self.assertEquals(10, bounds.Bounds.GetOverlap(20, 40, 10, 30))
19 self.assertEquals(10, bounds.Bounds.GetOverlap(10, 40, 20, 30)
    [all...]
  /external/chromium_org/third_party/skia/src/gpu/
GrPathRenderer.cpp 17 SkRect* bounds) {
19 *bounds = SkRect::MakeWH(SkIntToScalar(devW), SkIntToScalar(devH));
22 *bounds = path.getBounds();
23 matrix.mapRect(bounds);
  /external/skia/src/gpu/
GrPathRenderer.cpp 17 SkRect* bounds) {
19 *bounds = SkRect::MakeWH(SkIntToScalar(devW), SkIntToScalar(devH));
22 *bounds = path.getBounds();
23 matrix.mapRect(bounds);
  /external/chromium_org/third_party/skia/tests/
PathOpsBoundsTest.cpp 18 {{2, 0, 4, 1}, {3, 0, 3, 0}}, // intersecting an empty bounds is OK
66 SkPathOpsBounds bounds; local
67 bounds.setEmpty();
68 bounds.add(1, 2, 3, 4);
71 REPORTER_ASSERT(reporter, bounds == expected);
72 bounds.setEmpty();
75 bounds.add(ordinal);
76 REPORTER_ASSERT(reporter, bounds == expected);
78 bounds.setPointBounds(topLeft);
80 bounds.add(botRight)
83 const SkPathOpsBounds& bounds = static_cast<const SkPathOpsBounds&>(reallyEmpty[index]); local
89 const SkPathOpsBounds& bounds = static_cast<const SkPathOpsBounds&>(notReallyEmpty[index]); local
    [all...]
  /external/skia/tests/
PathOpsBoundsTest.cpp 18 {{2, 0, 4, 1}, {3, 0, 3, 0}}, // intersecting an empty bounds is OK
66 SkPathOpsBounds bounds; local
67 bounds.setEmpty();
68 bounds.add(1, 2, 3, 4);
71 REPORTER_ASSERT(reporter, bounds == expected);
72 bounds.setEmpty();
75 bounds.add(ordinal);
76 REPORTER_ASSERT(reporter, bounds == expected);
78 bounds.setPointBounds(topLeft);
80 bounds.add(botRight)
83 const SkPathOpsBounds& bounds = static_cast<const SkPathOpsBounds&>(reallyEmpty[index]); local
89 const SkPathOpsBounds& bounds = static_cast<const SkPathOpsBounds&>(notReallyEmpty[index]); local
    [all...]
  /external/chromium_org/ash/system/tray/
fixed_sized_scroll_view.cc 37 gfx::Rect bounds = gfx::Rect(contents()->GetPreferredSize()); local
38 bounds.set_width(std::max(0, width() - GetScrollBarWidth()));
39 contents()->SetBoundsRect(bounds);
43 gfx::Rect bounds = contents()->bounds(); local
44 bounds.set_width(bounds.width() + GetScrollBarWidth());
45 contents()->SetBoundsRect(bounds);
50 gfx::Rect bounds = gfx::Rect(contents()->GetPreferredSize()); local
51 bounds.set_width(std::max(0, width() - GetScrollBarWidth()))
    [all...]
  /external/chromium_org/chrome/browser/ui/cocoa/panels/
panel_utils_cocoa.mm 9 NSRect ConvertRectToCocoaCoordinates(const gfx::Rect& bounds) {
14 bounds.x(), NSHeight([screen frame]) - bounds.height() - bounds.y(),
15 bounds.width(), bounds.height());
18 gfx::Rect ConvertRectFromCocoaCoordinates(NSRect bounds) {
23 NSMinX(bounds), NSHeight([screen frame]) - NSMaxY(bounds),
24 NSWidth(bounds), NSHeight(bounds))
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
vg_context.h 195 const VGfloat *bounds,
200 if (bounds) {
201 coords[2] = MIN2(coords[2], bounds[2]);
203 if ((coords[0] + coords[2]) > (bounds[0] + bounds[2])) {
204 coords[2] = (bounds[0] + bounds[2]) - coords[0];
210 const VGfloat *bounds,
215 if (bounds) {
216 coords[3] = MIN2(coords[3], bounds[3])
    [all...]
  /external/mesa3d/src/gallium/state_trackers/vega/
vg_context.h 195 const VGfloat *bounds,
200 if (bounds) {
201 coords[2] = MIN2(coords[2], bounds[2]);
203 if ((coords[0] + coords[2]) > (bounds[0] + bounds[2])) {
204 coords[2] = (bounds[0] + bounds[2]) - coords[0];
210 const VGfloat *bounds,
215 if (bounds) {
216 coords[3] = MIN2(coords[3], bounds[3])
    [all...]
  /external/chromium_org/chrome/browser/ui/panels/
panel_resize_browsertest.cc 36 gfx::Rect bounds = panel->GetBounds(); local
40 mouse_location = bounds.origin();
43 mouse_location.SetPoint(bounds.x() + bounds.width() / 2, bounds.y());
46 mouse_location.SetPoint(bounds.right(), bounds.y());
49 mouse_location.SetPoint(bounds.x(), bounds.y() + bounds.height() / 2)
88 gfx::Rect bounds = panel->GetBounds(); local
204 gfx::Rect bounds = panel->GetBounds(); local
303 gfx::Rect bounds = panel->GetBounds(); local
425 gfx::Rect bounds = panel->GetBounds(); local
472 gfx::Rect bounds = panel->GetBounds(); local
    [all...]
  /art/test/070-nio-buffer/
expected.txt 3 Got expected out-of-bounds exception
  /external/chromium_org/third_party/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);
47 maker.fCanvas->saveLayer(&bounds->fRect, save);
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);
47 maker.fCanvas->saveLayer(&bounds->fRect, save);
64 if (bounds)
65 SkDebugf("bounds=\"%s\" ", bounds->id);
73 if (!bounds)
  /external/chromium_org/chrome/browser/chromeos/first_run/steps/
tray_step.cc 25 gfx::Rect bounds = shell_helper()->GetTrayBubbleBounds(); local
26 actor()->AddRectangularHole(bounds.x(), bounds.y(), bounds.width(),
27 bounds.height());
29 position.SetTop(bounds.y());
35 position.SetRight(GetOverlaySize().width() - bounds.x());
37 position.SetLeft(bounds.right());
  /external/chromium_org/chrome/browser/resources/chromeos/first_run/app/
main.js 11 var bounds = {};
12 bounds.width = content.offsetWidth;
13 bounds.height = content.offsetHeight;
14 bounds.left = Math.round(0.5 * (window.screen.availWidth - bounds.width));
15 bounds.top = Math.round(0.5 * (window.screen.availHeight - bounds.height));
16 appWindow.setBounds(bounds);
  /external/chromium_org/chrome/browser/ui/cocoa/
info_bubble_view.mm 28 NSRect bounds = [self bounds];
30 bounds.size.height -= info_bubble::kBubbleArrowHeight;
40 [NSBezierPath gtm_bezierPathWithRoundRect:bounds
53 dX = NSWidth(bounds) - info_bubble::kBubbleArrowXOffset -
57 dX = NSMidX(bounds) - info_bubble::kBubbleArrowWidth / 2.0;
65 NSPoint arrowStart = NSMakePoint(NSMinX(bounds), NSMaxY(bounds));
82 NSRect bounds = [self bounds];
    [all...]
  /frameworks/base/core/jni/android/graphics/
NinePatch.cpp 34 extern void NinePatch_Draw(SkCanvas* canvas, const SkRect& bounds, const SkBitmap& bitmap,
92 static void draw(JNIEnv* env, SkCanvas* canvas, SkRect& bounds, const SkBitmap* bitmap,
96 SkScalarToFloat(bounds.fLeft), SkScalarToFloat(bounds.fTop),
97 SkScalarToFloat(bounds.fRight), SkScalarToFloat(bounds.fBottom));
98 NinePatch_Draw(canvas, bounds, *bitmap, *chunk, paint, NULL);
103 canvas->translate(bounds.fLeft, bounds.fTop);
106 bounds.fRight = SkScalarDiv(bounds.fRight-bounds.fLeft, scale)
134 SkRect bounds; local
153 SkRect bounds; local
166 SkRect bounds; local
    [all...]
  /external/chromium_org/third_party/skia/src/effects/
SkRectShaderImageFilter.cpp 58 SkIRect bounds; local
59 if (!this->applyCropRect(ctx, source, SkIPoint::Make(0, 0), &bounds)) {
63 SkAutoTUnref<SkBaseDevice> device(proxy->createDevice(bounds.width(),
64 bounds.height()));
72 matrix.postTranslate(SkIntToScalar(-bounds.left()), SkIntToScalar(-bounds.top()));
75 SkRect rect = SkRect::MakeWH(SkIntToScalar(bounds.width()), SkIntToScalar(bounds.height()));
79 offset->fX = bounds.fLeft;
80 offset->fY = bounds.fTop
    [all...]
  /external/skia/src/effects/
SkRectShaderImageFilter.cpp 58 SkIRect bounds; local
59 if (!this->applyCropRect(ctx, source, SkIPoint::Make(0, 0), &bounds)) {
63 SkAutoTUnref<SkBaseDevice> device(proxy->createDevice(bounds.width(),
64 bounds.height()));
72 matrix.postTranslate(SkIntToScalar(-bounds.left()), SkIntToScalar(-bounds.top()));
75 SkRect rect = SkRect::MakeWH(SkIntToScalar(bounds.width()), SkIntToScalar(bounds.height()));
79 offset->fX = bounds.fLeft;
80 offset->fY = bounds.fTop
    [all...]
  /frameworks/support/v7/cardview/eclair-mr1/android/support/v7/widget/
CardViewEclairMr1.java 37 public void drawRoundRect(Canvas canvas, RectF bounds, float cornerRadius,
40 final float innerWidth = bounds.width() - twoRadius;
41 final float innerHeight = bounds.height() - twoRadius;
42 sCornerRect.set(bounds.left, bounds.top,
43 bounds.left + cornerRadius * 2, bounds.top + cornerRadius * 2);
54 canvas.drawRect(bounds.left + cornerRadius, bounds.top,
55 bounds.right - cornerRadius, bounds.top + cornerRadius
    [all...]
  /external/chromium_org/chrome/browser/ui/window_sizer/
window_sizer.cc 45 gfx::Rect* bounds,
48 DCHECK(bounds); variable
65 bounds->SetRect(left, top, std::max(0, right - left),
88 gfx::Rect* bounds,
123 *bounds = window->GetRestoredBounds();
147 const gfx::Rect& bounds) const OVERRIDE {
155 // Find the size of the work area of the monitor that intersects the bounds
157 return screen->GetDisplayMatching(bounds);
219 gfx::Rect* bounds,
221 DCHECK(bounds);
    [all...]

Completed in 1239 milliseconds

1 2 3 4 5 6 7 8 91011>>