Searched refs:bounds (Results 1 - 25 of 1705) sorted by last modified time

1234567891011>>

/external/valgrind/main/none/tests/x86/
H A Dint.stderr.exp4 GPF (Pointer out of bounds?)
/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/stlport/test/unit/
H A Dset_test.cpp25 CPPUNIT_TEST(bounds);
42 void bounds();
123 void SetTest::bounds() function in class:SetTest
/external/skia/platform_tools/nacl/src/
H A Dnacl_hello.cpp37 SkRect bounds; local
38 canvas->getClipBounds(&bounds);
40 bounds.centerX(), bounds.centerY(),
/external/skia/samplecode/
H A DSampleAAClip.cpp78 SkRect bounds; local
80 bounds.set(0, 0, 20, 20);
81 bounds.inset(SK_ScalarHalf, SK_ScalarHalf);
83 // path.addRect(bounds);
84 // path.addOval(bounds);
85 path.addRoundRect(bounds, 4, 4);
H A DSampleAARectModes.cpp98 const SkRect bounds = SkRect::MakeWH(W, H); local
114 canvas->drawRect(bounds, fBGPaint);
115 canvas->saveLayer(&bounds, NULL);
H A DSampleApp.cpp1032 SkRect bounds; local
1033 paint.measureText(c_str, size, &bounds);
1034 bounds.offset(left, top);
1036 bounds.inset(inset, inset);
1037 canvas->drawRect(bounds, paint);
H A DSampleDither.cpp47 SkRect bounds = r; local
65 path.arcTo(bounds, 0, sweep, false);
H A DSampleDitherBitmap.cpp49 SkIRect bounds; local
50 path.getBounds().round(&bounds);
51 SkRegion clip(bounds);
H A DSampleDraw.cpp122 void getBounds(SkRect* bounds) { argument
123 this->onGetBounds(bounds);
152 SkRect bounds; local
153 this->getBounds(&bounds);
154 return bounds.contains(x, y);
212 virtual void onGetBounds(SkRect* bounds) { argument
213 *bounds = fRect;
H A DSampleHairModes.cpp96 const SkRect bounds = SkRect::MakeWH(W, H); local
112 canvas->drawRect(bounds, fBGPaint);
113 canvas->saveLayer(&bounds, NULL);
H A DSampleLayerMask.cpp42 SkRect bounds = r; local
43 bounds.offset(-bounds.fLeft, -bounds.fTop);
44 c.drawOval(bounds, paint);
H A DSampleMeasure.cpp52 SkRect bounds; local
61 SkScalar w = p.measureText(text, len, &bounds, scale);
65 canvas->drawRect(bounds, p);
H A DSampleRegion.cpp56 // Need a bounds for the text
57 SkRect bounds; local
61 bounds.set(x, y + fm.fTop, x + paint.measureText(text, len), y + fm.fBottom);
63 // may need to outset bounds a little, to account for hinting and/or
65 bounds.inset(-SkIntToScalar(2), -SkIntToScalar(2));
67 canvas->saveLayer(&bounds, NULL);
71 { bounds.fLeft, y },
72 { bounds.fRight, y }
85 canvas->drawRect(bounds, p);
H A DSampleStrokePath.cpp79 const SkRect& bounds = path->getBounds(); local
80 SkScalar scale = dstWidth / bounds.width();
119 const SkRect& bounds = fPath.getBounds(); local
120 fPath.offset(-bounds.fLeft, -bounds.fTop);
H A DSampleWarp.cpp216 void init(const SkRect& bounds, int rows, int cols,
219 const SkRect& bounds() const { return fBounds; } function in class:Mesh
268 void Mesh::init(const SkRect& bounds, int rows, int cols, argument
272 fBounds = bounds;
286 const SkScalar dx = bounds.width() / rows;
287 const SkScalar dy = bounds.height() / cols;
295 pts->set(bounds.fLeft + x*dx, bounds.fTop + y*dy);
342 SkRect bounds, texture; local
345 bounds
[all...]
/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
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);
47 maker.fCanvas->saveLayer(&bounds->fRect, save);
64 if (bounds)
65 SkDebugf("bounds=\"%s\" ", bounds->id);
73 if (!bounds)
H A DSkDrawSaveLayer.h30 SkDrawRect* bounds; member in class:SkSaveLayer
/external/skia/src/core/
H A DSkAAClip.cpp96 static RunHead* AllocRect(const SkIRect& bounds) { argument
97 SkASSERT(!bounds.isEmpty());
98 int width = bounds.width();
102 yoff->fY = bounds.height() - 1;
665 bool SkAAClip::setRect(const SkIRect& bounds) { argument
666 if (bounds.isEmpty()) {
674 r.set(bounds);
680 fBounds = bounds;
681 fRunHead = RunHead::AllocRect(bounds);
732 const SkIRect& bounds local
892 Builder(const SkIRect& bounds) argument
1388 RowIter(const uint8_t* row, const SkIRect& bounds) argument
1458 operatorX(SkAAClip::Builder& builder, int lastY, RowIter& iterA, RowIter& iterB, AlphaProc proc, const SkIRect& bounds) argument
1530 const SkIRect& bounds = builder.getBounds(); local
1578 SkASSERT(top < bot); if (!rowA && !rowB) { builder.addRun(bounds.fLeft, bot - 1, 0, bounds.width()); } else if (top >= bounds.fTop) argument
1613 SkIRect bounds; local
[all...]
H A DSkBBoxHierarchy.h46 * @param bounds The bounding box, should not be empty
52 virtual void insert(void* data, const SkIRect& bounds, bool defer = false) = 0;
H A DSkBBoxHierarchyRecord.cpp22 void SkBBoxHierarchyRecord::handleBBox(const SkRect& bounds) { argument
24 bounds.roundOut(&r);
34 SkCanvas::SaveLayerStrategy SkBBoxHierarchyRecord::willSaveLayer(const SkRect* bounds, argument
44 if (bounds) {
45 drawBounds = *bounds;
54 SkCanvas::SaveLayerStrategy strategy = this->INHERITED::willSaveLayer(bounds, paint, flags);
H A DSkBBoxHierarchyRecord.h24 virtual void handleBBox(const SkRect& bounds) SK_OVERRIDE;

Completed in 223 milliseconds

1234567891011>>