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

1 2

  /prebuilts/go/darwin-x86/doc/progs/
image_draw.go 95 draw.DrawMask(dst, dst.Bounds(), src, image.ZP, &circle{p, r}, image.ZP, draw.Over)
121 type circle struct { type
126 func (c *circle) ColorModel() color.Model {
130 func (c *circle) Bounds() image.Rectangle {
134 func (c *circle) At(x, y int) color.Color {
  /prebuilts/go/linux-x86/doc/progs/
image_draw.go 95 draw.DrawMask(dst, dst.Bounds(), src, image.ZP, &circle{p, r}, image.ZP, draw.Over)
121 type circle struct { type
126 func (c *circle) ColorModel() color.Model {
130 func (c *circle) Bounds() image.Rectangle {
134 func (c *circle) At(x, y int) color.Color {
  /external/skia/gm/
manypaths.cpp 54 SkRect circle = SkRect::MakeXYWH(x, y, w, w); variable
56 canvas->drawOval(circle, paint);
dashcircle.cpp 46 SkPath circle; variable
47 circle.addCircle(0, 0, radius);
88 canvas->drawPath(circle, p);
hairlines.cpp 148 SkRect circle = SkRect::MakeLTRB(-kRad, -kRad, kRad, kRad); variable
149 bug->addArc(circle, kStartAngle, kSweepAngle);
  /external/skia/src/gpu/effects/
GrCircleEffect.cpp 28 kDefault_GrSLPrecision, "circle");
56 UniformHandle& circle = fCircleVar; variable
57 (void)circle; variable
66 pdman.set4f(circle, center.fX, center.fY, effectiveRadius,
  /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/samplecode/
SampleCircle.cpp 16 // reconstruct the edges of the circle.
47 void circle(SkCanvas* canvas, int width, bool aa) { function in class:CircleView
66 circle(canvas, width, false);
68 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);
BouncingBalls.java 153 OvalShape circle = new OvalShape(); local
154 circle.resize(50f, 50f);
155 ShapeDrawable drawable = new ShapeDrawable(circle);
  /cts/tests/tests/animation/src/android/animation/cts/
AnimationActivity.java 243 OvalShape circle = new OvalShape(); local
244 circle.resize(x, y);
245 ShapeDrawable drawable = new ShapeDrawable(circle);
  /art/test/044-proxy/src/
BasicTest.java 43 shapes.circle(3);
130 public void circle(int r); method in interface:Shapes
178 public void circle(int r) { method in class:Mix
179 System.out.println("--- circle " + r);
  /cts/tests/tests/graphics/src/android/graphics/cts/
PathMeasureTest.java 100 Path circle = new Path(); local
101 circle.addCircle(0, 0, 1, Direction.CW);
103 PathMeasure measure = new PathMeasure(circle, false);
105 measure.setPath(circle, true);
  /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/skia/src/effects/
GrCircleBlurFragmentProcessor.cpp 146 const SkRect& circle, float sigma,
148 float circleR = circle.width() / 2.0f;
207 const SkRect& circle,
212 create_profile_texture(resourceProvider, circle, sigma, &solidRadius, &textureRadius));
217 circle, textureRadius, solidRadius, std::move(profile), resourceProvider));
291 SkRect circle = SkRect::MakeWH(wh, wh); local
292 return GrCircleBlurFragmentProcessor::Make(testData->resourceProvider(), circle, sigma);
  /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 122 Circle,
147 struct Circle {
149 } circle; member in union:android::uirenderer::PathDescription::Shape
  /frameworks/support/core-ui/java/android/support/v4/widget/
CircleImageView.java 59 ShapeDrawable circle; local
61 circle = new ShapeDrawable(new OvalShape());
65 circle = new ShapeDrawable(oval);
66 setLayerType(View.LAYER_TYPE_SOFTWARE, circle.getPaint());
67 circle.getPaint().setShadowLayer(mShadowRadius, shadowXOffset, shadowYOffset,
73 circle.getPaint().setColor(color);
74 ViewCompat.setBackground(this, circle);
111 * Update the background color of the circle image view.
  /frameworks/base/core/tests/coretests/src/android/graphics/drawable/
AdaptiveIconDrawableTest.java 99 Path circle = new Path(); local
100 circle.addCircle(width / 2, height / 2, (right - left)/2 -10 /* room for anti-alias */, Direction.CW);
102 region.setPath(circle, region);

Completed in 821 milliseconds

1 2