HomeSort by relevance Sort by last modified time
    Searched refs:Circle (Results 1 - 15 of 15) sorted by null

  /external/clang/test/PCH/
enum.h 13 Circle
16 enum Shape aRoundShape = Circle;
  /art/test/530-checker-lse-ctor-fences/src/
Main.java 20 class Circle {
21 Circle(double radius) {
41 class Ellipse extends Circle {
93 return new Circle(radius).getArea();
150 /// CHECK-START: Circle Main.makeCircle(double) load_store_elimination (after)
159 static Circle makeCircle(double radius) {
160 return new Circle(radius);
192 assertInstanceOf(makeCircle(Math.PI), Circle.class);
  /external/autotest/client/site_tests/firmware_TouchMTB/tests/
geometry_unittest.py 16 from geometry.elements import Circle, Point
78 expected_circle = Circle(Point(*center_values), radius)
  /external/autotest/client/site_tests/firmware_TouchMTB/geometry/
minicircle.py 5 """minicircle: calculating the minimal enclosing circle given a set of points
10 [2] Circumscribed circle. http://en.wikipedia.org/wiki/Circumscribed_circle
24 from elements import Point, Circle
28 """Derive the mini circle with p1 and p2 composing the diameter.
34 return Circle(center, radius)
38 """Derive the mini circle enclosing arbitrary three points, A, B, C.
70 return Circle(center, radius)
74 """build minicircle0: build the mini circle with an empty P and has R
78 of the circle to be built
81 return Circle(None, None
    [all...]
elements.py 73 class Circle:
74 """A circle class."""
76 """Initialize a circle.
78 @param center: the center point of the circle
79 @param radius: the radius of the circle
85 """A boolean indicating if this circle is defined."""
89 """Determine if p is enclosed in the circle.
96 """Determine if this circle is equal to the specified circle, c.
98 @param c: a circle
    [all...]
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/
Example2_24Test.java 43 this.yamlConstructors.put(new Tag("tag:clarkevans.com,2002:circle"),
65 Circle circle = new Circle((Map<String, Integer>) values.get("center"), local
67 return circle;
97 this.representers.put(Circle.class, new RepresentCircle());
113 Circle circle = (Circle) data; local
115 map.put("center", circle.getCenter())
    [all...]
  /frameworks/base/libs/hwui/
PathCache.h 108 enum class ShapeType { None, Rect, RoundRect, Circle, Oval, Arc, Path };
129 struct Circle {
131 } circle; member in union:android::uirenderer::PathDescription::Shape
PathCache.cpp 114 case ShapeType::Circle:
115 return shape.circle.mRadius == rhs.shape.circle.mRadius;
464 PathDescription entry(ShapeType::Circle, paint);
465 entry.shape.circle.mRadius = radius;
  /art/test/530-checker-lse/src/
Main.java 17 class Circle {
18 Circle(double radius) {
94 return new Circle(radius).getArea();
946 area = new Circle(radius).getArea();
966 Circle circle1 = new Circle(radius);
972 return new Circle(Math.PI).getArea();
    [all...]
  /cts/apps/CameraITS/tests/rolling_shutter_skew/
test_rolling_shutter_skew.py 35 # Each circle in a cluster must be within this many pixels of some other circle
399 """Converts given contours into circle objects.
408 class Circle(object):
409 """Holds data to uniquely define a circle."""
429 return list(map(Circle, contours))
456 for circle in largest_cluster:
457 cv2.circle(frame, (int(circle.x), int(circle.y)), int(circle.r)
    [all...]
  /external/pdfium/xfa/fxfa/
cxfa_ffcheckbutton.cpp 64 case XFA_AttributeEnum::Circle:
fxfa_basic.h 237 Circle,
  /external/skia/src/gpu/ops/
GrOvalOpFactory.cpp 51 * The output of this effect is a modulation of the input color and coverage for a circle. It
52 * operates in a space normalized by the circle radius (outer radius in the case of a stroke)
53 * with origin at the circle center. Three vertex attributes are used:
65 * Round caps for stroking are allowed as well. The caps are specified as two circle center points
369 // circle.
435 // Clip the end of the next dash to the end of the circle
448 // Clip the start previous dash to the start of the circle
643 * implict equation used is for a unit circle (x^2 + y^2 - 1 = 0) and the edge corrected by
    [all...]
  /external/pdfium/xfa/fxfa/parser/
xfa_basic_data_enum.cpp 150 {0x7abec0d2, L"circle", XFA_AttributeEnum::Circle},
  /external/skqp/src/gpu/ops/
GrOvalOpFactory.cpp 51 * The output of this effect is a modulation of the input color and coverage for a circle. It
52 * operates in a space normalized by the circle radius (outer radius in the case of a stroke)
53 * with origin at the circle center. Three vertex attributes are used:
369 * implict equation used is for a unit circle (x^2 + y^2 - 1 = 0) and the edge corrected by
532 // We have two possible cases for geometry for a circle:
534 // In the case of a normal fill, we draw geometry for the circle as an octagon.
587 /** Optional extra params to render a partial arc rather than a full circle. */
658 // rendered and the outset ensures the box will cover all partially covered by the circle.
671 // The shader operates in a space where the circle is translated to be centered at the
672 // origin. Here we compute points on the unit circle at the starting and ending angles
    [all...]

Completed in 367 milliseconds