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

1 2 3

  /packages/apps/Camera/src/com/android/camera/ui/
ZoomRenderer.java 129 float circle = (int) (mCircleSize * sf * sf); local
130 circle = Math.max(mMinCircle, circle);
131 circle = Math.min(mMaxCircle, circle);
132 if (mListener != null && (int) circle != mCircleSize) {
133 mCircleSize = (int) circle;
  /packages/apps/Camera2/src/com/android/camera/ui/
ZoomRenderer.java 129 float circle = (int) (mCircleSize * sf * sf); local
130 circle = Math.max(mMinCircle, circle);
131 circle = Math.min(mMaxCircle, circle);
132 if (mListener != null && (int) circle != mCircleSize) {
133 mCircleSize = (int) circle;
  /external/chromium_org/chrome/browser/resources/chromeos/
choose_mobile_network.css 15 background-image: -webkit-canvas(spinner-circle);
network_menu.css 44 background-image: -webkit-canvas(spinner-circle);
choose_mobile_network.js 99 // Setup css canvas 'spinner-circle'
104 '2d', 'spinner-circle', 2 * r, 2 * r);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGEllipse.cpp 81 SVGCircleElement* circle = static_cast<SVGCircleElement*>(node()); local
83 SVGLengthContext lengthContext(circle);
84 float radius = circle->rCurrentValue().value(lengthContext);
86 m_center = FloatPoint(circle->cxCurrentValue().value(lengthContext), circle->cyCurrentValue().value(lengthContext));
SVGPathData.cpp 40 SVGCircleElement* circle = static_cast<SVGCircleElement*>(element); local
43 float r = circle->rCurrentValue().value(lengthContext);
45 path.addEllipse(FloatRect(circle->cxCurrentValue().value(lengthContext) - r, circle->cyCurrentValue().value(lengthContext) - r, r * 2, r * 2));
  /external/chromium_org/third_party/WebKit/Source/core/css/
BasicShapeFunctions.cpp 60 const BasicShapeCircle* circle = static_cast<const BasicShapeCircle*>(basicShape); local
63 circleValue->setCenterX(cssValuePool().createValue(circle->centerX()));
64 circleValue->setCenterY(cssValuePool().createValue(circle->centerY()));
65 circleValue->setRadius(cssValuePool().createValue(circle->radius()));
148 RefPtr<BasicShapeCircle> circle = BasicShapeCircle::create(); local
150 circle->setCenterX(convertToLength(state, circleValue->centerX()));
151 circle->setCenterY(convertToLength(state, circleValue->centerY()));
152 circle->setRadius(convertToLength(state, circleValue->radius()));
154 basicShape = circle.release();
  /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_org/third_party/skia/include/gpu/
GrOvalRenderer.h 45 const SkRect& circle,
  /external/skia/include/gpu/
GrOvalRenderer.h 45 const SkRect& circle,
  /development/samples/ApiDemos/src/com/example/android/apis/animation/
AnimationSeeking.java 127 OvalShape circle = new OvalShape(); local
128 circle.resize(BALL_SIZE, BALL_SIZE);
129 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);
AnimationLoading.java 120 OvalShape circle = new OvalShape(); local
121 circle.resize(BALL_SIZE, BALL_SIZE);
122 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/antlr/antlr-3.4/tool/src/main/resources/org/antlr/tool/templates/dot/
dot.stg 68 node [fontsize=11, shape = <if(useBox)>box<else>circle, fixedsize=true, width=.4<endif>]; <name>
  /external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
Shape.cpp 132 const BasicShapeCircle* circle = static_cast<const BasicShapeCircle*>(basicShape); local
133 float centerX = floatValueForLength(circle->centerX(), boxWidth);
134 float centerY = floatValueForLength(circle->centerY(), boxHeight);
135 float radius = floatValueForLength(circle->radius(), std::min(boxHeight, boxWidth));
  /external/chromium_org/third_party/WebKit/Source/testing/runner/
WebTestThemeControlWin.h 162 // Draws a circle centered in the control with the specified radius,
165 void circle(SkScalar radius, SkColor);
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
bezier.c 247 Circle
400 thing by a semi circle */
401 return Circle;
450 float circle[3][2]; local
492 circle[0][0] = b->x1 + normals[0][0]*offset;
493 circle[0][1] = b->y1 + normals[0][1]*offset;
495 circle[1][0] = 0.5*(b->x1 + b->x4) + normals[1][0]*offset;
496 circle[1][1] = 0.5*(b->y1 + b->y4) + normals[1][1]*offset;
498 circle[2][0] = b->x4 + normals[2][0]*offset;
499 circle[2][1] = b->y4 + normals[2][1]*offset
    [all...]
  /external/mesa3d/src/gallium/state_trackers/vega/
bezier.c 247 Circle
400 thing by a semi circle */
401 return Circle;
450 float circle[3][2]; local
492 circle[0][0] = b->x1 + normals[0][0]*offset;
493 circle[0][1] = b->y1 + normals[0][1]*offset;
495 circle[1][0] = 0.5*(b->x1 + b->x4) + normals[1][0]*offset;
496 circle[1][1] = 0.5*(b->y1 + b->y4) + normals[1][1]*offset;
498 circle[2][0] = b->x4 + normals[2][0]*offset;
499 circle[2][1] = b->y4 + normals[2][1]*offset
    [all...]
  /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;
  /art/test/044-proxy/src/
BasicTest.java 43 shapes.circle(3);
127 public void circle(int r); method in interface:Shapes
171 public void circle(int r) { method in class:Mix
172 System.out.println("--- circle " + r);
  /dalvik/tests/044-proxy/src/
BasicTest.java 42 shapes.circle(3);
117 public void circle(int r); method in interface:Shapes
161 public void circle(int r) { method in class:Mix
162 System.out.println("--- circle " + r);

Completed in 950 milliseconds

1 2 3