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

1 2 3 4 5 6 7 8 91011>>

  /external/valgrind/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/skia/src/core/
SkBBHFactory.cpp 13 SkBBoxHierarchy* SkRTreeFactory::operator()(const SkRect& bounds) const {
14 SkScalar aspectRatio = bounds.width() / bounds.height();
  /external/skqp/src/core/
SkBBHFactory.cpp 13 SkBBoxHierarchy* SkRTreeFactory::operator()(const SkRect& bounds) const {
14 SkScalar aspectRatio = bounds.width() / bounds.height();
  /external/skia/src/gpu/
GrPathRenderer.cpp 16 SkRect* bounds) {
18 *bounds = SkRect::MakeWH(SkIntToScalar(devW), SkIntToScalar(devH));
21 *bounds = path.getBounds();
22 matrix.mapRect(bounds);
  /external/skqp/src/gpu/
GrPathRenderer.cpp 16 SkRect* bounds) {
18 *bounds = SkRect::MakeWH(SkIntToScalar(devW), SkIntToScalar(devH));
21 *bounds = path.getBounds();
22 matrix.mapRect(bounds);
  /external/skia/include/core/
SkBBHFactory.h 20 virtual SkBBoxHierarchy* operator()(const SkRect& bounds) const = 0;
26 SkBBoxHierarchy* operator()(const SkRect& bounds) const override;
  /external/skia/include/svg/
SkSVGCanvas.h 26 * 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/skqp/include/core/
SkBBHFactory.h 20 virtual SkBBoxHierarchy* operator()(const SkRect& bounds) const = 0;
26 SkBBoxHierarchy* operator()(const SkRect& bounds) const override;
  /external/skqp/include/svg/
SkSVGCanvas.h 26 * 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*);
  /frameworks/base/core/java/com/android/internal/policy/
DockedDividerUtils.java 55 * Makes sure that the bounds are always valid, i. e. they are at least one pixel high and wide.
57 * @param bounds The bounds to sanitize.
58 * @param topLeft Pass true if the bounds are at the top/left of the screen, false if they are
60 * the bounds.
62 public static void sanitizeStackBounds(Rect bounds, boolean topLeft) {
64 // If the bounds are either on the top or left of the screen, rather move it further to the
68 if (bounds.left >= bounds.right) {
69 bounds.left = bounds.right - 1
    [all...]
  /external/skia/src/svg/
SkSVGCanvas.cpp 13 std::unique_ptr<SkCanvas> SkSVGCanvas::Make(const SkRect& bounds, SkXMLWriter* writer) {
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) {
23 return Make(bounds, &xmlWriter);
  /external/skqp/src/svg/
SkSVGCanvas.cpp 13 std::unique_ptr<SkCanvas> SkSVGCanvas::Make(const SkRect& bounds, SkXMLWriter* writer) {
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) {
23 return Make(bounds, &xmlWriter);
  /tools/metalava/src/test/java/com/android/tools/metalava/model/text/
TextTypeParameterItemTest.kt 25 Truth.assertThat(TextTypeParameterItem.bounds(null).toString()).isEqualTo("[]")
26 Truth.assertThat(TextTypeParameterItem.bounds("").toString()).isEqualTo("[]")
27 Truth.assertThat(TextTypeParameterItem.bounds("X").toString()).isEqualTo("[]")
28 Truth.assertThat(TextTypeParameterItem.bounds("DEF extends T").toString()).isEqualTo("[T]")
29 Truth.assertThat(TextTypeParameterItem.bounds("T extends java.lang.Comparable<? super T>").toString())
31 Truth.assertThat(TextTypeParameterItem.bounds("T extends java.util.List<Number> & java.util.RandomAccess").toString())
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowTouchDelegate.java 13 private Rect bounds; field in class:ShadowTouchDelegate
17 public void __constructor__(Rect bounds, View delegateView) {
18 this.bounds = bounds;
23 return this.bounds;
  /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...]
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue4232.go 14 _ = a[-1] // ERROR "invalid array index -1|index out of bounds"
15 _ = a[-1:] // ERROR "invalid slice index -1|index out of bounds"
16 _ = a[:-1] // ERROR "invalid slice index -1|index out of bounds"
17 _ = a[10] // ERROR "invalid array index 10|index out of bounds"
20 _ = a[9:12] // ERROR "invalid slice index 12|index out of bounds"
21 _ = a[11:12] // ERROR "invalid slice index 11|index out of bounds"
22 _ = a[1<<100 : 1<<110] // ERROR "overflows int" "invalid slice index 1 << 100|index out of bounds"
25 _ = s[-1] // ERROR "invalid slice index -1|index out of bounds"
26 _ = s[-1:] // ERROR "invalid slice index -1|index out of bounds"
27 _ = s[:-1] // ERROR "invalid slice index -1|index out of bounds"
    [all...]
  /prebuilts/go/linux-x86/test/fixedbugs/
issue4232.go 14 _ = a[-1] // ERROR "invalid array index -1|index out of bounds"
15 _ = a[-1:] // ERROR "invalid slice index -1|index out of bounds"
16 _ = a[:-1] // ERROR "invalid slice index -1|index out of bounds"
17 _ = a[10] // ERROR "invalid array index 10|index out of bounds"
20 _ = a[9:12] // ERROR "invalid slice index 12|index out of bounds"
21 _ = a[11:12] // ERROR "invalid slice index 11|index out of bounds"
22 _ = a[1<<100 : 1<<110] // ERROR "overflows int" "invalid slice index 1 << 100|index out of bounds"
25 _ = s[-1] // ERROR "invalid slice index -1|index out of bounds"
26 _ = s[-1:] // ERROR "invalid slice index -1|index out of bounds"
27 _ = s[:-1] // ERROR "invalid slice index -1|index out of bounds"
    [all...]
  /external/skia/tests/
PathOpsBoundsTest.cpp 19 {{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.add(botRight)
    [all...]
  /external/skqp/tests/
PathOpsBoundsTest.cpp 19 {{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.add(botRight)
    [all...]
  /external/skia/gm/
mixedtextblobs.cpp 56 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.height()
123 SkRect bounds = fBlob->bounds(); variable
    [all...]
  /external/skqp/gm/
mixedtextblobs.cpp 56 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.height()
123 SkRect bounds = fBlob->bounds(); variable
    [all...]
  /external/clang/test/SemaCXX/
array-bounds-system-header.cpp 2 #include <array-bounds-system-header.h>

Completed in 540 milliseconds

1 2 3 4 5 6 7 8 91011>>