HomeSort by relevance Sort by last modified time
    Searched defs:union (Results 1 - 25 of 29) sorted by null

1 2

  /frameworks/base/awt/java/awt/
Rectangle.java 462 * Adds a new rectangle to the original rectangle, the result is an union of
661 * @return the union of the original and the specified Rectangle2D.
667 return union((Rectangle)r);
670 Rectangle2D.union(this, r, dst);
679 * @return the union of the original and the specified rectangle.
681 public Rectangle union(Rectangle r) { method in class:Rectangle
  /frameworks/base/graphics/java/android/graphics/
RectF.java 410 public void union(float left, float top, float right, float bottom) { method in class:RectF
437 public void union(RectF r) { method in class:RectF
438 union(r.left, r.top, r.right, r.bottom); method
448 public void union(float x, float y) { method in class:RectF
Rect.java 470 public void union(int left, int top, int right, int bottom) { method in class:Rect
497 public void union(Rect r) { method in class:Rect
498 union(r.left, r.top, r.right, r.bottom); method
508 public void union(int x, int y) { method in class:Rect
Region.java 28 UNION(2),
234 public final boolean union(Rect r) { method in class:Region
235 return op(r, Op.UNION);
  /frameworks/base/awt/java/awt/geom/
Rectangle2D.java 220 Rectangle2D.union(this, r, dst);
364 Rectangle2D.union(this, r, dest);
578 * Creates an new rectangle that is the union of this rectangle with the
585 * @return the new rectangle given by union.
734 * Changes the data values of the destination rectangle to match the union
736 * unchanged. The union is the smallest rectangle that completely covers the
744 * the destination object where the data of the union is written.
746 public static void union(Rectangle2D src1, Rectangle2D src2, Rectangle2D dst) { method in class:Rectangle2D
789 union(this, r, this); method
  /dalvik/libcore/support/src/test/java/org/apache/harmony/security/tests/support/acl/
AclImpl.java 94 Enumeration enumeration5 = union(enumeration, enumeration4);
98 Enumeration enumeration6 = union(enumeration1, enumeration4);
140 private static Enumeration union(Enumeration enumeration, Enumeration enumeration1) { method in class:AclImpl
175 enumeration = union(aclentry.permissions(), enumeration);
190 enumeration = union(aclentry.permissions(), enumeration);
  /external/guava/src/com/google/common/collect/
Sets.java 534 * Returns an unmodifiable <b>view</b> of the union of two sets. The returned
548 public static <E> SetView<E> union( method in class:Sets
    [all...]
  /frameworks/base/core/java/android/gesture/
GestureStroke.java 74 bx.union(p.x, p.y);
GestureOverlayView.java 623 // union with the control point of the new curve
624 areaToRefresh.union((int) previousX - border, (int) previousY - border,
627 // union with the end point of the new curve
628 areaToRefresh.union((int) cX - border, (int) cY - border,
  /frameworks/base/awt/org/apache/harmony/awt/gl/render/
JavaShapeRasterizer.java 91 dstLength = union(dst, dstLength);
116 length = union(points, length);
141 static int union(int[] points, int length) { method in class:JavaShapeRasterizer.Filler
  /dalvik/libcore/xml/src/main/java/org/apache/xpath/compiler/
Compiler.java 162 expr = union(opPos); break;
590 * Compile a location path union. The UnionPathIterator itself may create
599 protected Expression union(int opPos) throws TransformerException method in class:Compiler
615 * Get the level of the location path or union being constructed.
    [all...]
  /frameworks/base/awt/org/apache/harmony/awt/gl/
MultiRectArea.java 540 * Union with another MultiRectArea object
543 setRect(union(this, mra).rect, false);
564 * Union with Rectangle object
567 setRect(union(this, new MultiRectArea(rect)).rect, false);
587 * Union two MutliRectareArea objects
597 public static MultiRectArea union(MultiRectArea src1, MultiRectArea src2) { method in class:MultiRectArea
598 MultiRectArea res = check(new MultiRectAreaOp.Union().getResult(src1, src2), "union(MRA,MRA)"); //$NON-NLS-1$
  /packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/
SoftKeyboardView.java 276 mDirtyRect.union(mSoftKeyDown.mLeft, mSoftKeyDown.mTop,
327 mDirtyRect.union(mSoftKeyDown.mLeft, mSoftKeyDown.mTop,
350 mDirtyRect.union(mSoftKeyDown.mLeft, mSoftKeyDown.mTop,
  /cts/tests/tests/graphics/src/android/graphics/cts/
RegionTest.java 59 // UNION
265 mRegion.union(new Rect(3, 3, 5, 5));
308 method = "union",
319 // union (inclusive-or) the two regions
323 // union null rectangle
325 assertTrue(mRegion.union(rect1));
328 // 1. union rectangle inside this region
332 assertTrue(mRegion.union(rect3));
336 // 2. union rectangle overlap this region
340 assertTrue(mRegion.union(rect4))
    [all...]
  /frameworks/base/awt/org/apache/harmony/awt/gl/font/
TextRunBreaker.java 641 Rectangle2D.union(bounds, s.getVisualBounds(), bounds);
660 Rectangle2D.union(bounds, s.getLogicalBounds(), bounds);
  /frameworks/base/core/java/com/android/internal/widget/
LockPatternView.java 707 invalidateRect.union((int) (left - radius), (int) (top - radius),
    [all...]
  /frameworks/base/core/java/android/widget/
SlidingDrawer.java 587 region.union(frame.left, frame.top - deltaY, frame.right, frame.bottom - deltaY);
588 region.union(0, frame.bottom - deltaY, getWidth(),
617 region.union(frame.left - deltaX, frame.top, frame.right - deltaX, frame.bottom);
618 region.union(frame.right - deltaX, 0,
    [all...]
  /prebuilt/sdk/4/
android.jar 
  /prebuilt/sdk/5/
android.jar 
  /prebuilt/sdk/6/
android.jar 
  /prebuilt/sdk/7/
android.jar 
  /prebuilt/sdk/8/
android.jar 
  /external/jdiff/
xerces.jar 
  /prebuilt/darwin-x86/swt/
swt.jar 
  /prebuilt/darwin-x86_64/swt/
swt.jar 

Completed in 671 milliseconds

1 2