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

1234567891011>>

/external/valgrind/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/fonttools/Lib/fontTools/pens/
H A DboundsPen.py13 """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
[all...]
/external/fonttools/Tools/fontTools/pens/
H A DboundsPen.py13 """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
[all...]
/external/skia/src/core/
H A DSkBBHFactory.cpp13 SkBBoxHierarchy* SkRTreeFactory::operator()(const SkRect& bounds) const {
14 SkScalar aspectRatio = bounds.width() / bounds.height();
/external/skqp/src/core/
H A DSkBBHFactory.cpp13 SkBBoxHierarchy* SkRTreeFactory::operator()(const SkRect& bounds) const {
14 SkScalar aspectRatio = bounds.width() / bounds.height();
/external/skia/src/gpu/
H A DGrPathRenderer.cpp16 SkRect* bounds) {
18 *bounds = SkRect::MakeWH(SkIntToScalar(devW), SkIntToScalar(devH));
21 *bounds = path.getBounds();
22 matrix.mapRect(bounds);
13 GetPathDevBounds(const SkPath& path, int devW, int devH, const SkMatrix& matrix, SkRect* bounds) argument
/external/skqp/src/gpu/
H A DGrPathRenderer.cpp16 SkRect* bounds) {
18 *bounds = SkRect::MakeWH(SkIntToScalar(devW), SkIntToScalar(devH));
21 *bounds = path.getBounds();
22 matrix.mapRect(bounds);
13 GetPathDevBounds(const SkPath& path, int devW, int devH, const SkMatrix& matrix, SkRect* bounds) argument
/external/skia/src/svg/
H A DSkSVGCanvas.cpp13 std::unique_ptr<SkCanvas> SkSVGCanvas::Make(const SkRect& bounds, SkXMLWriter* writer) { argument
14 // TODO: pass full bounds to the device
15 SkISize size = bounds.roundOut().size();
21 std::unique_ptr<SkCanvas> SkSVGCanvas::Make(const SkRect& bounds, SkWStream* writer) { argument
23 return Make(bounds, &xmlWriter);
/external/skqp/src/svg/
H A DSkSVGCanvas.cpp13 std::unique_ptr<SkCanvas> SkSVGCanvas::Make(const SkRect& bounds, SkXMLWriter* writer) { argument
14 // TODO: pass full bounds to the device
15 SkISize size = bounds.roundOut().size();
21 std::unique_ptr<SkCanvas> SkSVGCanvas::Make(const SkRect& bounds, SkWStream* writer) { argument
23 return Make(bounds, &xmlWriter);
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
H A DShadowTouchDelegate.java13 private Rect bounds; field in class:ShadowTouchDelegate
17 public void __constructor__(Rect bounds, View delegateView) { argument
18 this.bounds = bounds;
23 return this.bounds;
/external/skia/tests/
H A DPathOpsBoundsTest.cpp19 {{2, 0, 4, 1}, {3, 0, 3, 0}}, // intersecting an empty bounds is OK
49 SkPathOpsBounds bounds; local
50 bounds.setEmpty();
51 bounds.add(1, 2, 3, 4);
54 REPORTER_ASSERT(reporter, bounds == expected);
55 bounds.setEmpty();
58 bounds.add(ordinal);
59 REPORTER_ASSERT(reporter, bounds == expected);
60 bounds.setEmpty();
62 bounds
[all...]
/external/skqp/tests/
H A DPathOpsBoundsTest.cpp19 {{2, 0, 4, 1}, {3, 0, 3, 0}}, // intersecting an empty bounds is OK
49 SkPathOpsBounds bounds; local
50 bounds.setEmpty();
51 bounds.add(1, 2, 3, 4);
54 REPORTER_ASSERT(reporter, bounds == expected);
55 bounds.setEmpty();
58 bounds.add(ordinal);
59 REPORTER_ASSERT(reporter, bounds == expected);
60 bounds.setEmpty();
62 bounds
[all...]
/external/python/cpython2/Mac/Demo/quicktime/
H A DVerySimplePlayer.py32 bounds = (175, 75, 175+160, 75+120)
33 theWindow = Win.NewCWindow(bounds, fss.as_tuple()[2], 0, 0, -1, 1, 0)
41 bounds = theMovie.GetMovieBox()
42 bounds = 0, 0, bounds[2]-bounds[0], bounds[3]-bounds[1]
43 theMovie.SetMovieBox(bounds)
46 theController = theMovie.NewMovieController(bounds, QuickTim
[all...]
/external/skia/gm/
H A Dmixedtextblobs.cpp56 SkRect bounds; variable
57 paint.measureText(text, strlen(text), &bounds);
59 SkScalar yOffset = bounds.height();
61 SkScalar corruptedAx = bounds.width();
64 const SkScalar boundsHalfWidth = bounds.width() * SK_ScalarHalf;
65 const SkScalar boundsHalfHeight = bounds.height() * SK_ScalarHalf;
76 paint.measureText(text, strlen(text), &bounds);
77 sk_tool_utils::add_to_text_blob(&builder, text, paint, xOffset - bounds.width() * 0.25f,
78 yOffset - bounds.height() * 0.5f);
79 yOffset += bounds
123 SkRect bounds = fBlob->bounds(); variable
[all...]
H A Dtextblobblockreordering.cpp32 SkRect bounds; variable
33 paint.measureText(text, strlen(text), &bounds);
35 SkScalar yOffset = bounds.height();
59 SkRect bounds = fBlob->bounds(); variable
60 const int yDelta = SkScalarFloorToInt(bounds.height()) + 20;
61 const int xDelta = SkScalarFloorToInt(bounds.width());
70 canvas->drawRect(bounds, redPaint);
/external/skqp/gm/
H A Dmixedtextblobs.cpp56 SkRect bounds; variable
57 paint.measureText(text, strlen(text), &bounds);
59 SkScalar yOffset = bounds.height();
61 SkScalar corruptedAx = bounds.width();
64 const SkScalar boundsHalfWidth = bounds.width() * SK_ScalarHalf;
65 const SkScalar boundsHalfHeight = bounds.height() * SK_ScalarHalf;
76 paint.measureText(text, strlen(text), &bounds);
77 sk_tool_utils::add_to_text_blob(&builder, text, paint, xOffset - bounds.width() * 0.25f,
78 yOffset - bounds.height() * 0.5f);
79 yOffset += bounds
123 SkRect bounds = fBlob->bounds(); variable
[all...]
H A Dtextblobblockreordering.cpp32 SkRect bounds; variable
33 paint.measureText(text, strlen(text), &bounds);
35 SkScalar yOffset = bounds.height();
59 SkRect bounds = fBlob->bounds(); variable
60 const int yDelta = SkScalarFloorToInt(bounds.height()) + 20;
61 const int xDelta = SkScalarFloorToInt(bounds.width());
70 canvas->drawRect(bounds, redPaint);
/external/clang/test/SemaCXX/
H A Darray-bounds-system-header.cpp2 #include <array-bounds-system-header.h>
/external/autotest/client/site_tests/documentscan_AppTestWithFakeLorgnette/document_scan_test_app/
H A Dbackground.js9 bounds: {
/external/skia/include/core/
H A DSkBBHFactory.h20 virtual SkBBoxHierarchy* operator()(const SkRect& bounds) const = 0;
26 SkBBoxHierarchy* operator()(const SkRect& bounds) const override;
/external/skia/include/svg/
H A DSkSVGCanvas.h26 * The 'bounds' parameter defines an initial SVG viewport (viewBox attribute on the root
29 static std::unique_ptr<SkCanvas> Make(const SkRect& bounds, SkWStream*);
32 static std::unique_ptr<SkCanvas> Make(const SkRect& bounds, SkXMLWriter*);
/external/skia/src/pathops/
H A DSkIntersectionHelper.h35 return bounds().fBottom;
38 const SkPathOpsBounds& bounds() const { function in class:SkIntersectionHelper
39 return fSegment->bounds();
51 return bounds().fLeft;
59 return bounds().fRight;
86 return bounds().fTop;
94 return bounds().fLeft;
102 return bounds().fTop;
/external/skqp/include/core/
H A DSkBBHFactory.h20 virtual SkBBoxHierarchy* operator()(const SkRect& bounds) const = 0;
26 SkBBoxHierarchy* operator()(const SkRect& bounds) const override;

Completed in 2442 milliseconds

1234567891011>>