HomeSort by relevance Sort by last modified time
    Searched defs:circle (Results 1 - 25 of 51) sorted by null

1 2 3

  /hardware/bsp/intel/peripheral/libupm/examples/c++/
grovecircularled.cxx 48 upm::GroveCircularLED *circle = new upm::GroveCircularLED(5, 4); local
53 circle->setSpinner(level);
61 delete circle;
  /hardware/bsp/intel/peripheral/libupm/examples/python/
grovecircularled.py 33 circle.setLevel(0, True)
43 circle = upmGroveCircularLED.GroveCircularLED(5, 4) variable
48 circle.setSpinner(level)
  /external/opencv3/modules/photo/misc/java/test/
PhotoTest.java 14 Imgproc.circle(gray255, p, 2, colorBlack, Core.FILLED);
15 Imgproc.circle(gray0, p, 2, colorWhite, Core.FILLED);
  /external/skia/src/effects/
GrCircleBlurFragmentProcessor.h 21 // This FP handles the special case of a blurred circle. It uses a 1D
22 // profile that is just rotated about the origin of the circle.
38 const SkRect& circle, float sigma) {
42 circle,
48 return new GrCircleBlurFragmentProcessor(circle, sigma, offset, blurProfile);
51 const SkRect& circle() const { return fCircle; } function in class:GrCircleBlurFragmentProcessor
57 GrCircleBlurFragmentProcessor(const SkRect& circle, float sigma,
66 // fOffset is computed from the circle width and the sigma
67 return this->circle().width() == cbfp.circle().width() && fSigma == cbfp.fSigma;
    [all...]
GrCircleBlurFragmentProcessor.cpp 40 // x,y - the center of the circle
76 const SkRect& circle = cbfp.circle(); local
79 // x,y - the center of the circle
82 pdman.set4f(fDataUniform, circle.centerX(), circle.centerY(), cbfp.offset(),
88 GrCircleBlurFragmentProcessor::GrCircleBlurFragmentProcessor(const SkRect& circle,
92 : fCircle(circle)
114 // Evaluate an AA circle function centered at the origin with 'radius' at (x,y)
157 // Apply the half-kernel at 't' away from the center of the circle
264 SkRect circle = SkRect::MakeWH(wh, wh); local
    [all...]
  /external/skia/experimental/docs/
exampleSlides.js 1 var circle = {
80 { "line": [ 200,200, 200 + circle.radius * Math.cos(-22.5 * Math.PI / 180),
81 200 + circle.radius * Math.sin(-22.5 * Math.PI / 180) ] }
205 "string":"A sector is a wedge of a circle", "x":400, "y":200
456 "range":[-22.5 * Math.PI / 180, (-22.5 - 360) * Math.PI / 180], "params":"circle",
460 "range":[-22.5 * Math.PI / 180, (-22.5 - 360) * Math.PI / 180], "params":"circle",
  /external/google-tv-pairing-protocol/java/src/com/google/polo/json/
XMLTokener.java 308 char[] circle = new char[n]; local
311 * First fill the circle buffer with as many characters as are in the
320 circle[i] = c;
329 * Compare the circle buffer with the to string.
332 if (circle[j] != to.charAt(i)) {
355 * Shove the character in the circle buffer and advance the
356 * circle offset. The offset is mod n.
358 circle[offset] = c;
  /external/skia/gm/
dashcircle.cpp 35 SkPath circle; local
36 circle.addCircle(0, 0, radius);
72 canvas->drawPath(circle, p);
hairlines.cpp 148 SkRect circle = SkRect::MakeLTRB(-kRad, -kRad, kRad, kRad); variable
149 bug->addArc(circle, kStartAngle, kSweepAngle);
  /external/skia/samplecode/
SampleCircle.cpp 17 // reconstruct the edges of the circle.
48 void circle(SkCanvas* canvas, int width, bool aa) { function in class:CircleView
67 circle(canvas, width, false);
69 circle(canvas, width, true);
SampleClipDrawMatch.cpp 58 SkRRect circle; local
59 circle.setOval(create_rect(offset));
60 return circle;
  /development/samples/ApiDemos/src/com/example/android/apis/animation/
AnimationLoading.java 153 OvalShape circle = new OvalShape(); local
154 circle.resize(BALL_SIZE, BALL_SIZE);
155 ShapeDrawable drawable = new ShapeDrawable(circle);
AnimationSeeking.java 127 OvalShape circle = new OvalShape(); local
128 circle.resize(BALL_SIZE, BALL_SIZE);
129 ShapeDrawable drawable = new ShapeDrawable(circle);
MultiPropertyAnimation.java 144 OvalShape circle = new OvalShape(); local
145 circle.resize(BALL_SIZE, BALL_SIZE);
146 ShapeDrawable drawable = new ShapeDrawable(circle);
CustomEvaluator.java 142 OvalShape circle = new OvalShape(); local
143 circle.resize(50f, 50f);
144 ShapeDrawable drawable = new ShapeDrawable(circle);
ReversingAnimation.java 103 OvalShape circle = new OvalShape(); local
104 circle.resize(50f, 50f);
105 ShapeDrawable drawable = new ShapeDrawable(circle);
AnimationCloning.java 107 OvalShape circle = new OvalShape(); local
108 circle.resize(50f * mDensity, 50f * mDensity);
109 ShapeDrawable drawable = new ShapeDrawable(circle);
  /cts/tests/tests/animation/src/android/animation/cts/
AnimationActivity.java 244 OvalShape circle = new OvalShape(); local
245 circle.resize(x, y);
246 ShapeDrawable drawable = new ShapeDrawable(circle);
  /art/test/044-proxy/src/
BasicTest.java 43 shapes.circle(3);
132 public void circle(int r); method in interface:Shapes
180 public void circle(int r) { method in class:Mix
181 System.out.println("--- circle " + r);
  /cts/tests/tests/graphics/src/android/graphics/cts/
PathMeasureTest.java 86 Path circle = new Path(); local
87 circle.addCircle(0, 0, 1, Direction.CW);
89 PathMeasure measure = new PathMeasure(circle, false);
91 measure.setPath(circle, true);
  /external/chromium-trace/catapult/third_party/graphy/graphy/
common.py 42 circle = 'o' variable in class:Marker
  /external/clang/test/Analysis/
array-struct-region.c 62 struct circle { struct point o; int r; }; struct
63 struct circle get_circle() {
64 struct circle result;
71 struct circle c;
  /external/opencv3/modules/features2d/misc/java/test/
STARFeatureDetectorTest.java 37 Imgproc.circle(img, new Point(center - offset, center), radius, color, -1);
38 Imgproc.circle(img, new Point(center + offset, center), radius, color, -1);
39 Imgproc.circle(img, new Point(center, center - offset), radius, color, -1);
40 Imgproc.circle(img, new Point(center, center + offset), radius, color, -1);
41 Imgproc.circle(img, new Point(center, center), radius, color, -1);
  /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/support/v4/java/android/support/v4/widget/
CircleImageView.java 60 ShapeDrawable circle; local
62 circle = new ShapeDrawable(new OvalShape());
66 circle = new ShapeDrawable(oval);
67 ViewCompat.setLayerType(this, ViewCompat.LAYER_TYPE_SOFTWARE, circle.getPaint());
68 circle.getPaint().setShadowLayer(mShadowRadius, shadowXOffset, shadowYOffset,
74 circle.getPaint().setColor(color);
75 setBackgroundDrawable(circle);
112 * Update the background color of the circle image view.

Completed in 1217 milliseconds

1 2 3