/frameworks/base/graphics/java/android/graphics/drawable/shapes/ |
ArcShape.java | 39 * greater than 360 results in a complete circle/oval.
|
/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 | 120 OvalShape circle = new OvalShape(); local 121 circle.resize(BALL_SIZE, BALL_SIZE); 122 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);
|
BouncingBalls.java | 153 OvalShape circle = new OvalShape(); local 154 circle.resize(50f, 50f); 155 ShapeDrawable drawable = new ShapeDrawable(circle);
|
CustomEvaluator.java | 142 OvalShape circle = new OvalShape(); local 143 circle.resize(50f, 50f); 144 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);
|
AnimatorEvents.java | 171 OvalShape circle = new OvalShape(); local 172 circle.resize(50f, 50f); 173 ShapeDrawable drawable = new ShapeDrawable(circle);
|
/external/webkit/Source/WebCore/platform/graphics/skia/ |
PathSkia.cpp | 142 // Check for a circle. 146 // Draw the circle. 155 // a full circle
|
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/ |
RadialGradient_Delegate.java | 92 * @param radius Must be positive. The radius of the circle for this 95 * the circle 98 * distributed evenly between the center and edge of the circle.
|
/cts/tests/tests/graphics/src/android/graphics/drawable/shapes/cts/ |
ArcShapeTest.java | 77 arcShape.resize(SQUARE, SQUARE); // half circle
|
OvalShapeTest.java | 71 ovalShape.resize(SQUARE, SQUARE); // circle
|
/external/jsr305/javadoc/javax/annotation/concurrent/ |
package-tree.html | 89 <LI TYPE="circle">javax.annotation.concurrent.<A HREF="../../../javax/annotation/concurrent/ThreadSafe.html" title="annotation in javax.annotation.concurrent"><B>ThreadSafe</B></A> (implements java.lang.annotation.Annotation) 90 <LI TYPE="circle">javax.annotation.concurrent.<A HREF="../../../javax/annotation/concurrent/NotThreadSafe.html" title="annotation in javax.annotation.concurrent"><B>NotThreadSafe</B></A> (implements java.lang.annotation.Annotation) 91 <LI TYPE="circle">javax.annotation.concurrent.<A HREF="../../../javax/annotation/concurrent/Immutable.html" title="annotation in javax.annotation.concurrent"><B>Immutable</B></A> (implements java.lang.annotation.Annotation) 92 <LI TYPE="circle">javax.annotation.concurrent.<A HREF="../../../javax/annotation/concurrent/GuardedBy.html" title="annotation in javax.annotation.concurrent"><B>GuardedBy</B></A> (implements java.lang.annotation.Annotation)
|
/external/webkit/Source/WebCore/css/ |
CSSValueKeywords.in | 225 circle 781 # circle 782 double-circle 787 # circle
|
/external/webkit/Source/WebCore/manual-tests/ |
svg-repaint-foreignObject.svg | 66 <circle fill="pink" cx="300" cy="300" stroke="lightblue" stroke-width="40" r="300" />
|
svg-repaint-group.svg | 66 <circle fill="pink" cx="300" cy="300" stroke="lightblue" stroke-width="40" r="300" />
|
svg-repaint-image.svg | 66 <circle fill="pink" cx="300" cy="300" stroke="lightblue" stroke-width="40" r="300" />
|
svg-repaint-path.svg | 66 <circle fill="pink" cx="300" cy="300" stroke="lightblue" stroke-width="40" r="300" />
|
/external/webkit/Source/WebKit/mac/WebView/ |
WebDashboardRegion.mm | 71 return "Circle";
|
/frameworks/base/libs/hwui/ |
ShapeCache.cpp | 54 "circle", PROPERTY_SHAPE_CACHE_SIZE, DEFAULT_SHAPE_CACHE_SIZE) {
|
/sdk/eclipse/scripts/ |
gen_icon.py | 35 print """Usage: %s <file_name> <size> <circle-color> <border-color> <letter-color> <letter>""" % sys.argv[0]
|
/external/skia/gpu/include/ |
GrSamplerState.h | 58 * Matrix transforms to space where first circle is centered at the 59 * origin. The second circle will be centered (x, 0) where x may be
|
/external/skia/samplecode/ |
SamplePicture.cpp | 166 const char beforeStr[] = "before circle"; 167 const char afterStr[] = "after circle";
|
SampleXfermodesBlur.cpp | 48 // draw a circle covering the upper 58 // draw a square overlapping the circle
|
/frameworks/base/core/java/com/android/internal/widget/ |
RotarySelector.java | 41 * Custom view that presents up to two items that are selectable by rotating a semi-circle from 344 // draw circle bounding arc drawable: good sanity check we're doing the math correctly 452 * circles. The resulting y combined with the incoming x is a point along the circle in 456 * @param innerRadius The radius of the circle that intersects the drawable at the bottom two 458 * @param outerRadius The radius of the circle who's top most point is the top center of the 460 * @param x The distance along the x axis of the desired point. @return The y coordinate, in drawing coordinates, that will place (x, y) along the circle 478 // the vertical distance from the outer edge of the circle to the desired point 479 // from there we add the distance from the top of the drawable to the middle circle
|