/external/chromium_org/third_party/WebKit/ManualTests/ |
D | svg-cursor-changes.svg | 4 <!-- Clicking this circle should result in an instant update of the cursor location of this and the… 5 <circle onclick="document.getElementById('mycursor').setAttribute('x', '100');" cx="80" cy="150" r=… 7 <!-- Clicking this circle should result in an instant update of the cursor location of this and the… 8 <circle onclick="document.getElementById('mycursor').x.baseVal.value = 100;" cx="230" cy="150" r="7… 13 <!-- Clicking this circle should result in an instant update of the cursor location (tested using D… 14 <circle onclick="document.getElementById('mycursor2').setAttribute('x', '100');" cx="80" cy="310" r… 16 <!-- Clicking this circle should result in an instant update of the cursor location (tested using S… 17 <circle onclick="document.getElementById('mycursor3').x.baseVal.value = 100;" cx="230" cy="310" r="… 21 <!-- Clicking this circle should result in an instant update of the cursor image (tested using DOM)… 22 <circle onclick="document.getElementById('mycursor4').setAttributeNS('http://www.w3.org/1999/xlink'… [all …]
|
/external/chromium_org/third_party/WebKit/Source/core/css/ |
D | BasicShapeFunctions.cpp | 63 const BasicShapeCircle* circle = static_cast<const BasicShapeCircle*>(basicShape); in valueForBasicShape() local 66 circleValue->setCenterX(pool.createValue(circle->centerX(), style)); in valueForBasicShape() 67 circleValue->setCenterY(pool.createValue(circle->centerY(), style)); in valueForBasicShape() 68 circleValue->setRadius(pool.createValue(circle->radius(), style)); in valueForBasicShape() 151 RefPtr<BasicShapeCircle> circle = BasicShapeCircle::create(); in basicShapeForValue() local 153 circle->setCenterX(convertToLength(state, circleValue->centerX())); in basicShapeForValue() 154 circle->setCenterY(convertToLength(state, circleValue->centerY())); in basicShapeForValue() 155 circle->setRadius(convertToLength(state, circleValue->radius())); in basicShapeForValue() 157 basicShape = circle.release(); in basicShapeForValue()
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/ |
D | RenderSVGEllipse.cpp | 80 SVGCircleElement* circle = toSVGCircleElement(element()); in calculateRadiiAndCenter() local 82 SVGLengthContext lengthContext(circle); in calculateRadiiAndCenter() 83 float radius = circle->rCurrentValue().value(lengthContext); in calculateRadiiAndCenter() 85 …m_center = FloatPoint(circle->cxCurrentValue().value(lengthContext), circle->cyCurrentValue().valu… in calculateRadiiAndCenter()
|
D | SVGPathData.cpp | 39 SVGCircleElement* circle = toSVGCircleElement(element); in updatePathFromCircleElement() local 42 float r = circle->rCurrentValue().value(lengthContext); in updatePathFromCircleElement() 44 …path.addEllipse(FloatRect(circle->cxCurrentValue().value(lengthContext) - r, circle->cyCurrentValu… in updatePathFromCircleElement()
|
/external/llvm/test/YAMLParser/ |
D | spec-02-24.data | 6 # tag:clarkevans.com,2002:circle 7 - !circle
|
/external/mesa3d/src/gallium/state_trackers/vega/ |
D | bezier.c | 450 float circle[3][2]; in make_circle() local 492 circle[0][0] = b->x1 + normals[0][0]*offset; in make_circle() 493 circle[0][1] = b->y1 + normals[0][1]*offset; in make_circle() 495 circle[1][0] = 0.5*(b->x1 + b->x4) + normals[1][0]*offset; in make_circle() 496 circle[1][1] = 0.5*(b->y1 + b->y4) + normals[1][1]*offset; in make_circle() 498 circle[2][0] = b->x4 + normals[2][0]*offset; in make_circle() 499 circle[2][1] = b->y4 + normals[2][1]*offset; in make_circle() 504 o->x1 = circle[i][0]; in make_circle() 505 o->y1 = circle[i][1]; in make_circle() 506 o->x2 = circle[i][0] - normals[i][1]*kappa; in make_circle() [all …]
|
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/ |
D | bezier.c | 450 float circle[3][2]; in make_circle() local 492 circle[0][0] = b->x1 + normals[0][0]*offset; in make_circle() 493 circle[0][1] = b->y1 + normals[0][1]*offset; in make_circle() 495 circle[1][0] = 0.5*(b->x1 + b->x4) + normals[1][0]*offset; in make_circle() 496 circle[1][1] = 0.5*(b->y1 + b->y4) + normals[1][1]*offset; in make_circle() 498 circle[2][0] = b->x4 + normals[2][0]*offset; in make_circle() 499 circle[2][1] = b->y4 + normals[2][1]*offset; in make_circle() 504 o->x1 = circle[i][0]; in make_circle() 505 o->y1 = circle[i][1]; in make_circle() 506 o->x2 = circle[i][0] - normals[i][1]*kappa; in make_circle() [all …]
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/ |
D | Shape.cpp | 142 const BasicShapeCircle* circle = static_cast<const BasicShapeCircle*>(basicShape); in createShape() local 143 float centerX = floatValueForLength(circle->centerX(), boxWidth); in createShape() 144 float centerY = floatValueForLength(circle->centerY(), boxHeight); in createShape() 149 …float radius = floatValueForLength(circle->radius(), sqrtf((boxWidth * boxWidth + boxHeight * boxH… in createShape()
|
/external/clang/test/Analysis/ |
D | array-struct-region.c | 62 struct circle { struct point o; int r; }; struct 63 struct circle get_circle() { in get_circle() 64 struct circle result; in get_circle() 71 struct circle c; in struct_in_struct()
|
/external/chromium_org/chrome/browser/resources/file_manager/foreground/js/image_editor/ |
D | image_transform.js | 320 var circle = new Circle(x, y, R); 325 if (circle.inside(bounds.left, bounds.top)) { 328 } else if (circle.inside(bounds.left, bounds.bottom)) { 331 } else if (circle.inside(bounds.right, bounds.top)) { 334 } else if (circle.inside(bounds.right, bounds.bottom)) {
|
/external/chromium_org/third_party/sqlite/src/ext/rtree/ |
D | rtree9.test | 85 # Test the example 2d "circle" geometry callback. 117 SELECT id FROM rt2 WHERE id MATCH circle(0.0, 0.0, 2.0); 122 SELECT id FROM rt2 WHERE id MATCH circle(5.0, 5.0, 2.0);
|
/external/chromium/chrome/browser/ui/cocoa/ |
D | hover_close_button.mm | 47 // If the user is hovering over the button, a light/dark gray circle is drawn 50 // Adjust the darkness of the circle depending on whether it is being 62 // (circle behind it), then adjust the shadow accordingly (not as harsh).
|
/external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/tool/templates/dot/ |
D | state.st | 1 node [fontsize=11, shape = <if(useBox)>box<else>circle, fixedsize=true, width=.4<endif>]; <name>
|
/external/chromium_org/chrome/browser/ui/cocoa/ |
D | history_overlay_controller.mm | 19 // The radius of the circle drawn in the shield. 22 // The diameter of the circle and the width of its bounding box. 55 // If going backward, the arrow needs to be in the right half of the circle,
|
/external/chromium_org/chrome/browser/resources/chromeos/first_run/ |
D | background.svg | 6 <circle id="round-hole-pattern" class="hole transparent"/>
|
/external/chromium/chrome/browser/resources/chromeos/ |
D | choose_mobile_network.css | 13 background-image: -webkit-canvas(spinner-circle);
|
/external/chromium_org/third_party/WebKit/Source/testing/runner/ |
D | WebTestThemeControlWin.cpp | 192 void WebTestThemeControlWin::circle(SkScalar radius, SkColor color) in circle() function in WebTestRunner::WebTestThemeControlWin 318 circle(SkIntToScalar(halfHeight), m_bgColor); in draw() 322 circle(SkIntToScalar(halfHeight), m_bgColor); in draw() 323 circle(SkIntToScalar(halfHeight - checkIndent), m_fgColor); in draw()
|
/external/chromium_org/tools/deep_memory_profiler/visualizer/static/third_party/jqTree/ |
D | jqtree.css | 85 ul.jqtree-tree li.jqtree-ghost span.jqtree-circle { 86 background-image: url(jqtree-circle.png);
|
D | README.chromium | 21 * jqtree-circle.png
|
/external/chromium/chrome/browser/resources/ |
D | login_ui.css | 2 background: -webkit-radial-gradient(circle contain,
|
D | network_menu.css | 36 background-image: -webkit-canvas(spinner-circle);
|
/external/skia/src/gpu/ |
D | GrOvalRenderer.h | 47 const SkRect& circle,
|
/external/chromium_org/third_party/skia/src/gpu/ |
D | GrOvalRenderer.h | 47 const SkRect& circle,
|
/external/skia/gm/ |
D | hairlines.cpp | 146 SkRect circle = SkRect::MakeLTRB(-kRad, -kRad, kRad, kRad); in onOnceBeforeDraw() local 147 bug->addArc(circle, kStartAngle, kSweepAngle); in onOnceBeforeDraw()
|
/external/chromium_org/chrome/browser/resources/chromeos/ |
D | choose_mobile_network.css | 15 background-image: -webkit-canvas(spinner-circle);
|