Searched defs:intersect (Results 1 - 8 of 8) sorted by path

/frameworks/base/core/java/android/util/
H A DRange.java204 public Range<T> intersect(Range<T> range) { method in class:Range
227 * See {@link #intersect(Range)} for more details.</p>
236 public Range<T> intersect(T lower, T upper) { method in class:Range
/frameworks/base/graphics/java/android/graphics/
H A DRect.java422 * @return true if the specified rectangle and this rectangle intersect
427 public boolean intersect(int left, int top, int right, int bottom) { method in class:Rect
445 * @return true if the specified rectangle and this rectangle intersect
450 public boolean intersect(Rect r) { method in class:Rect
451 return intersect(r.left, r.top, r.right, r.bottom);
455 * If rectangles a and b intersect, return true and set this rectangle to
462 * @return true iff the two specified rectangles intersect. If they do, set
481 * if either rectangle is empty. To record the intersection, use intersect()
497 * Returns true iff the two specified rectangles intersect. In no event are
499 * use {@link #intersect(Rec
[all...]
H A DRectF.java340 * @return true if the specified rectangle and this rectangle intersect
344 public boolean intersect(float left, float top, float right, float bottom) { method in class:RectF
371 * @return true if the specified rectangle and this rectangle intersect
375 public boolean intersect(RectF r) { method in class:RectF
376 return intersect(r.left, r.top, r.right, r.bottom);
380 * If rectangles a and b intersect, return true and set this rectangle to
387 * @return true iff the two specified rectangles intersect. If they do, set
406 * if either rectangle is empty. To record the intersection, use intersect()
424 * Returns true iff the two specified rectangles intersect. In no event are
426 * use intersect() o
[all...]
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/dirlist/
H A DMultiSelectManager.java156 mSelection.intersect(mModelIds);
181 mSelection.intersect(mModelIds);
820 public void intersect(Collection<String> ids) { method in class:MultiSelectManager.Selection
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/writer/
H A DFlagSet.java66 public boolean intersect(FlagSet other, int bucketIndex) { method in class:FlagSet
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...
/frameworks/native/libs/ui/
H A DRect.cpp85 bool Rect::intersect(const Rect& with, Rect* result) const { function in class:android::Rect
H A DRegion.cpp336 const Region Region::intersect(const Rect& rhs) const { function in class:android::Region
356 const Region Region::intersect(const Region& rhs) const { function in class:android::Region
402 const Region Region::intersect(const Region& rhs, int dx, int dy) const { function in class:android::Region

Completed in 239 milliseconds