/external/chromium_org/third_party/WebKit/Source/platform/geometry/ |
D | Region.cpp | 53 …for (Shape::SpanIterator span = m_shape.spansBegin(), end = m_shape.spansEnd(); span != end && spa… in rects() 57 …for (Shape::SegmentIterator segment = m_shape.segmentsBegin(span), end = m_shape.segmentsEnd(span)… in rects() 73 return Shape::compareShapes<Shape::CompareContainsOperation>(m_shape, region.m_shape); in contains() 81 …for (Shape::SpanIterator span = m_shape.spansBegin(), end = m_shape.spansEnd(); span != end && spa… in contains() 90 …for (Shape::SegmentIterator segment = m_shape.segmentsBegin(span), end = m_shape.segmentsEnd(span)… in contains() 109 return Shape::compareShapes<Shape::CompareIntersectsOperation>(m_shape, region.m_shape); in intersects() 127 bool Region::Shape::compareShapes(const Shape& aShape, const Shape& bShape) in compareShapes() 131 Shape::SpanIterator aSpan = aShape.spansBegin(); in compareShapes() 132 Shape::SpanIterator aSpanEnd = aShape.spansEnd(); in compareShapes() 133 Shape::SpanIterator bSpan = bShape.spansBegin(); in compareShapes() [all …]
|
D | Region.h | 77 class Shape { 79 Shape(); 80 Shape(const IntRect&); 94 static Shape unionShapes(const Shape& shape1, const Shape& shape2); 95 static Shape intersectShapes(const Shape& shape1, const Shape& shape2); 96 static Shape subtractShapes(const Shape& shape1, const Shape& shape2); 99 void swap(Shape&); 105 static bool compareShapes(const Shape& shape1, const Shape& shape2); 117 static Shape shapeOperation(const Shape& shape1, const Shape& shape2); 122 void appendSpans(const Shape&, SpanIterator begin, SpanIterator end); [all …]
|
/external/llvm/docs/ |
D | HowToSetUpLLVMStyleRTTI.rst | 33 class Shape { 35 Shape() {} 39 class Square : public Shape { 46 class Circle : public Shape { 56 #. In the header where you declare ``Shape``, you will want to ``#include 72 class Shape { 84 Shape() {} 99 ``Shape``. The reason for this is that since ``Shape`` is abstract 116 class Shape { 128 - Shape() {} [all …]
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/ |
D | ShapeInfo.cpp | 50 const Shape* ShapeInfo<RenderType>::computedShape() const in computedShape() 52 if (Shape* shape = m_shape.get()) in computedShape() 63 case ShapeValue::Shape: in computedShape() 65 …m_shape = Shape::createShape(shapeValue->shape(), m_shapeLogicalSize, writingMode, margin, padding… in computedShape() 69 …m_shape = Shape::createShape(shapeValue->image(), shapeImageThreshold, m_shapeLogicalSize, writing… in computedShape() 72 m_shape = Shape::createLayoutBoxShape(m_shapeLogicalSize, writingMode, margin, padding); in computedShape()
|
D | Shape.cpp | 48 static PassOwnPtr<Shape> createBoxShape(const FloatRoundedRect& bounds) in createBoxShape() 54 static PassOwnPtr<Shape> createRectangleShape(const FloatRect& bounds, const FloatSize& radii) in createRectangleShape() 60 static PassOwnPtr<Shape> createCircleShape(const FloatPoint& center, float radius) in createCircleShape() 66 static PassOwnPtr<Shape> createEllipseShape(const FloatPoint& center, const FloatSize& radii) in createEllipseShape() 72 static PassOwnPtr<Shape> createPolygonShape(PassOwnPtr<Vector<FloatPoint> > vertices, WindRule fill… in createPolygonShape() 113 PassOwnPtr<Shape> Shape::createShape(const BasicShape* basicShape, const LayoutSize& logicalBoxSize… in createShape() 120 OwnPtr<Shape> shape; in createShape() 215 PassOwnPtr<Shape> Shape::createShape(const StyleImage* styleImage, float threshold, const LayoutSiz… in createShape() 255 PassOwnPtr<Shape> Shape::createLayoutBoxShape(const LayoutSize& logicalSize, WritingMode writingMod… in createLayoutBoxShape() 260 OwnPtr<Shape> shape = createBoxShape(bounds); in createLayoutBoxShape()
|
D | Shape.h | 61 class Shape { 63 …static PassOwnPtr<Shape> createShape(const BasicShape*, const LayoutSize& logicalBoxSize, WritingM… 64 …static PassOwnPtr<Shape> createShape(const StyleImage*, float threshold, const LayoutSize& logical… 65 …static PassOwnPtr<Shape> createLayoutBoxShape(const LayoutSize& logicalBoxSize, WritingMode, const… 67 virtual ~Shape() { } in ~Shape()
|
D | BoxShapeTest.cpp | 42 PassOwnPtr<Shape> createBoxShape(const LayoutSize& size, float shapeMargin, float shapePadding) in createBoxShape() 44 …return Shape::createLayoutBoxShape(size, TopToBottomWritingMode, Length(shapeMargin, Fixed), Lengt… in createBoxShape() 72 OwnPtr<Shape> shape = createBoxShape(LayoutSize(100, 50), 10, 20); in TEST_F()
|
D | BoxShape.h | 38 class BoxShape : public Shape { 41 : Shape() in BoxShape()
|
D | RectangleShape.h | 42 class RectangleShape : public Shape { 45 : Shape() in RectangleShape()
|
D | ShapeInsideInfo.cpp | 51 case ShapeValue::Shape: in isEnabledFor() 89 const Shape* shape = computedShape(); in adjustLogicalLineTop()
|
D | PolygonShape.h | 82 class PolygonShape : public Shape { 86 : Shape() in PolygonShape()
|
D | RasterShape.h | 87 class RasterShape : public Shape { 91 : Shape() in RasterShape()
|
/external/clang/test/PCH/ |
D | enum.h | 9 enum Shape { enum 16 enum Shape aRoundShape = Circle;
|
D | enum.c | 17 enum Shape s = Triangle;
|
/external/clang/test/CodeGenObjC/ |
D | debug-info-impl.m | 8 @interface Shape : NSObject interface 11 @interface Circle : Shape
|
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v5/ |
D | v8-raytrace.js | 416 if(typeof(Flog.RayTracer.Shape) == 'undefined') Flog.RayTracer.Shape = {}; 418 Flog.RayTracer.Shape.BaseShape = Class.create(); 420 Flog.RayTracer.Shape.BaseShape.prototype = { 441 if(typeof(Flog.RayTracer.Shape) == 'undefined') Flog.RayTracer.Shape = {}; 443 Flog.RayTracer.Shape.Sphere = Class.create(); 445 Flog.RayTracer.Shape.Sphere.prototype = { 491 if(typeof(Flog.RayTracer.Shape) == 'undefined') Flog.RayTracer.Shape = {}; 493 Flog.RayTracer.Shape.Plane = Class.create(); 495 Flog.RayTracer.Shape.Plane.prototype = { 851 var sphere = new Flog.RayTracer.Shape.Sphere( [all …]
|
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v4/ |
D | v8-raytrace.js | 416 if(typeof(Flog.RayTracer.Shape) == 'undefined') Flog.RayTracer.Shape = {}; 418 Flog.RayTracer.Shape.BaseShape = Class.create(); 420 Flog.RayTracer.Shape.BaseShape.prototype = { 441 if(typeof(Flog.RayTracer.Shape) == 'undefined') Flog.RayTracer.Shape = {}; 443 Flog.RayTracer.Shape.Sphere = Class.create(); 445 Flog.RayTracer.Shape.Sphere.prototype = { 491 if(typeof(Flog.RayTracer.Shape) == 'undefined') Flog.RayTracer.Shape = {}; 493 Flog.RayTracer.Shape.Plane = Class.create(); 495 Flog.RayTracer.Shape.Plane.prototype = { 851 var sphere = new Flog.RayTracer.Shape.Sphere( [all …]
|
/external/chromium_org/third_party/WebKit/Source/core/animation/ |
D | AnimatableShapeValue.cpp | 40 if (m_shape->type() != ShapeValue::Shape || shapeValue->m_shape->type() != ShapeValue::Shape) in interpolateTo()
|
/external/chromium_org/third_party/WebKit/Source/core/html/ |
D | HTMLAreaElement.h | 61 enum Shape { Default, Poly, Rect, Circle, Unknown }; enum 68 Shape m_shape;
|
/external/v8/benchmarks/ |
D | raytrace.js | 415 if(typeof(Flog.RayTracer.Shape) == 'undefined') Flog.RayTracer.Shape = {}; 417 Flog.RayTracer.Shape.Sphere = Class.create(); 419 Flog.RayTracer.Shape.Sphere.prototype = { 465 if(typeof(Flog.RayTracer.Shape) == 'undefined') Flog.RayTracer.Shape = {}; 467 Flog.RayTracer.Shape.Plane = Class.create(); 469 Flog.RayTracer.Shape.Plane.prototype = { 825 var sphere = new Flog.RayTracer.Shape.Sphere( 837 var sphere1 = new Flog.RayTracer.Shape.Sphere( 849 var plane = new Flog.RayTracer.Shape.Plane(
|
/external/chromium_org/v8/benchmarks/ |
D | raytrace.js | 415 if(typeof(Flog.RayTracer.Shape) == 'undefined') Flog.RayTracer.Shape = {}; 417 Flog.RayTracer.Shape.Sphere = Class.create(); 419 Flog.RayTracer.Shape.Sphere.prototype = { 465 if(typeof(Flog.RayTracer.Shape) == 'undefined') Flog.RayTracer.Shape = {}; 467 Flog.RayTracer.Shape.Plane = Class.create(); 469 Flog.RayTracer.Shape.Plane.prototype = { 825 var sphere = new Flog.RayTracer.Shape.Sphere( 837 var sphere1 = new Flog.RayTracer.Shape.Sphere( 849 var plane = new Flog.RayTracer.Shape.Plane(
|
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v6/ |
D | v8-raytrace.js | 410 if(typeof(Flog.RayTracer.Shape) == 'undefined') Flog.RayTracer.Shape = {}; 412 Flog.RayTracer.Shape.Sphere = Class.create(); 414 Flog.RayTracer.Shape.Sphere.prototype = { 460 if(typeof(Flog.RayTracer.Shape) == 'undefined') Flog.RayTracer.Shape = {}; 462 Flog.RayTracer.Shape.Plane = Class.create(); 464 Flog.RayTracer.Shape.Plane.prototype = { 820 var sphere = new Flog.RayTracer.Shape.Sphere( 832 var sphere1 = new Flog.RayTracer.Shape.Sphere( 844 var plane = new Flog.RayTracer.Shape.Plane(
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/ |
D | ShapeValue.h | 45 Shape, enumerator 89 : m_type(Shape) in ShapeValue()
|
/external/proguard/src/proguard/gui/splash/ |
D | OverrideGraphics2D.java | 244 public void clip(Shape s) in clip() 264 public void draw(Shape s) in draw() 404 public void fill(Shape s) in fill() 449 public Shape getClip() in getClip() 514 public boolean hit(Rectangle rect, Shape s, boolean onStroke) in hit() 549 public void setClip(Shape clip) in setClip()
|
/external/icu4c/common/ |
D | ushape.cpp | 1187 unsigned int Shape; in shapeUnicode() local 1280 Shape = shapeTable[nextLink & (LINKR + LINKL)] in shapeUnicode() 1285 Shape &= 1; in shapeUnicode() 1290 Shape = 1; in shapeUnicode() 1292 Shape = 0; in shapeUnicode() 1295 Shape = 1; in shapeUnicode() 1297 Shape = 0; in shapeUnicode() 1309 dest[i] = 0xFE70 + IrrelevantPos[(dest[i] - 0x064B)] + Shape; in shapeUnicode() 1312 dest[i] = (UChar)(0xFB50 + (currLink >> 8) + Shape); in shapeUnicode() 1314 dest[i] = (UChar)(0xFE70 + (currLink >> 8) + Shape); in shapeUnicode()
|