HomeSort by relevance Sort by last modified time
    Searched refs:circle (Results 51 - 75 of 146) sorted by null

1 23 4 5 6

  /development/samples/browseable/RevealEffectBasic/src/com.example.android.revealeffectbasic/
RevealEffectBasicFragment.java 55 View shape = rootView.findViewById(R.id.circle);
  /development/samples/browseable/SpeedTracker/Wearable/src/com.example.android.wearable.speedtracker/ui/
SpeedPickerLayout.java 63 mCircle = (ImageView) findViewById(R.id.circle);
  /development/samples/browseable/Timer/src/com.example.android.wearable.timer/
WearableListItemLayout.java 53 mCircle = (ImageView) findViewById(R.id.circle);
  /external/skia/src/effects/
GrCircleBlurFragmentProcessor.cpp 47 // Applies the 1D half kernel vertically at points along the x axis to a circle centered at the
58 // In the column at x we exit the circle at +y and -y
75 // Apply a Gaussian at point (evalX, 0) to a circle centered at the origin with radius circleR.
98 // Since we applied a half kernel in y we multiply acc by 2 (the circle is symmetric about
103 // This function creates a profile of a blurred circle. It does this by computing a kernel for
105 // an array of vertical applications of the half kernel to the circle along the x axis. The
170 const SkRect& circle, float sigma,
172 float circleR = circle.width() / 2.0f;
176 // Profile textures are cached by the ratio of sigma to circle radius and by the size of the
180 // half-plane. Similarly, in the extreme high ratio cases circle becomes a point WRT to th
346 SkRect circle = SkRect::MakeWH(wh, wh); local
    [all...]
  /external/skqp/src/effects/
GrCircleBlurFragmentProcessor.cpp 47 // Applies the 1D half kernel vertically at points along the x axis to a circle centered at the
58 // In the column at x we exit the circle at +y and -y
75 // Apply a Gaussian at point (evalX, 0) to a circle centered at the origin with radius circleR.
98 // Since we applied a half kernel in y we multiply acc by 2 (the circle is symmetric about
103 // This function creates a profile of a blurred circle. It does this by computing a kernel for
105 // an array of vertical applications of the half kernel to the circle along the x axis. The
170 const SkRect& circle, float sigma,
172 float circleR = circle.width() / 2.0f;
176 // Profile textures are cached by the ratio of sigma to circle radius and by the size of the
180 // half-plane. Similarly, in the extreme high ratio cases circle becomes a point WRT to th
346 SkRect circle = SkRect::MakeWH(wh, wh); local
    [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/python/cpython2/Demo/turtle/
tdemo_planet_and_moon.py 80 s.circle(6, 180)
84 s.circle(6,180)
96 sun = Star(1000000, Vec(0,0), Vec(0,-2.5), gs, "circle")
  /external/python/cpython3/Lib/turtledemo/
planet_and_moon.py 79 s.circle(6, 180)
83 s.circle(6,180)
95 sun = Star(1000000, Vec(0,0), Vec(0,-2.5), gs, "circle")
  /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;
  /development/samples/ApiDemos/src/com/example/android/apis/animation/
AnimationCloning.java 107 OvalShape circle = new OvalShape(); local
108 circle.resize(50f * mDensity, 50f * mDensity);
109 ShapeDrawable drawable = new ShapeDrawable(circle);
AnimationLoading.java 153 OvalShape circle = new OvalShape(); local
154 circle.resize(BALL_SIZE, BALL_SIZE);
155 ShapeDrawable drawable = new ShapeDrawable(circle);
AnimatorEvents.java 171 OvalShape circle = new OvalShape(); local
172 circle.resize(50f, 50f);
173 ShapeDrawable drawable = new ShapeDrawable(circle);
BouncingBalls.java 153 OvalShape circle = new OvalShape(); local
154 circle.resize(50f, 50f);
155 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);
  /external/skia/gm/
dashcircle.cpp 46 SkPath circle; variable
47 circle.addCircle(0, 0, radius);
88 canvas->drawPath(circle, p);
  /external/skia/samplecode/
SampleClipDrawMatch.cpp 58 SkRRect circle; local
59 circle.setOval(create_rect(offset));
60 return circle;
  /external/skqp/samplecode/
SampleClipDrawMatch.cpp 58 SkRRect circle; local
59 circle.setOval(create_rect(offset));
60 return circle;
  /frameworks/support/slices/view/src/main/java/androidx/slice/widget/
ShortcutView.java 90 Drawable circle = DrawableCompat.wrap(new ShapeDrawable(new OvalShape())); local
91 DrawableCompat.setTint(circle, color);
95 iv.setBackground(circle);
  /art/test/044-proxy/src/
BasicTest.java 42 shapes.circle(3);
126 public void circle(int r); method in interface:Shapes
174 public void circle(int r) { method in class:Mix
175 System.out.println("--- circle " + r);
  /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);
  /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/skqp/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",
  /developers/build/prebuilts/gradle/ElevationDrag/Application/src/main/java/com/example/android/elevationdrag/
ElevationDragFragment.java 59 final View floatingShape = rootView.findViewById(R.id.circle);
84 /* Raise the circle in z when the "z+" button is clicked. */
94 /* Lower the circle in z when the "z-" button is clicked. */
  /developers/samples/android/ui/views/Elevation/ElevationDrag/Application/src/main/java/com/example/android/elevationdrag/
ElevationDragFragment.java 59 final View floatingShape = rootView.findViewById(R.id.circle);
84 /* Raise the circle in z when the "z+" button is clicked. */
94 /* Lower the circle in z when the "z-" button is clicked. */
  /development/samples/browseable/ElevationDrag/src/com.example.android.elevationdrag/
ElevationDragFragment.java 59 final View floatingShape = rootView.findViewById(R.id.circle);
84 /* Raise the circle in z when the "z+" button is clicked. */
94 /* Lower the circle in z when the "z-" button is clicked. */

Completed in 508 milliseconds

1 23 4 5 6