HomeSort by relevance Sort by last modified time
    Searched full:shape2 (Results 1 - 3 of 3) sorted by null

  /external/webkit/Source/WebKit2/Platform/
Region.cpp 231 Shape2,
235 Region::Shape Region::Shape::shapeOperation(const Shape& shape1, const Shape& shape2)
241 if (Operation::trySimpleOperation(shape1, shape2, result))
247 SpanIterator spans2 = shape2.spans_begin();
248 SpanIterator spans2End = shape2.spans_end();
271 segments2 = shape2.segments_begin(spans2);
272 segments2End = shape2.segments_end(spans2);
321 result.appendSpans(shape2, spans2, spans2End);
327 static bool trySimpleOperation(const Shape& shape1, const Shape& shape2, Shape& result)
330 result = shape2;
    [all...]
Region.h 83 static Shape unionShapes(const Shape& shape1, const Shape& shape2);
84 static Shape intersectShapes(const Shape& shape1, const Shape& shape2);
85 static Shape subtractShapes(const Shape& shape1, const Shape& shape2);
100 static Shape shapeOperation(const Shape& shape1, const Shape& shape2);
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
Region_Delegate.java 75 * @param shape2 the 2nd shape to combine
79 public static Area combineShapes(Shape shape1, Shape shape2, int regionOp) {
88 result.subtract(shape2 instanceof Area ? (Area) shape2 : new Area(shape2));
92 // if shape1 is null, then the result is simply shape2.
94 return new Area(shape2);
99 result.intersect(shape2 instanceof Area ? (Area) shape2 : new Area(shape2));
    [all...]

Completed in 697 milliseconds