HomeSort by relevance Sort by last modified time
    Searched refs:BandPredicate (Results 1 - 8 of 8) sorted by null

  /frameworks/support/recyclerview-selection/src/androidTest/java/androidx/recyclerview/selection/testing/
TestBandPredicate.java 21 import androidx.recyclerview.selection.BandPredicate;
23 public class TestBandPredicate extends BandPredicate {
  /packages/apps/DocumentsUI/tests/unit/com/android/documentsui/selection/testing/
TestBandPredicate.java 20 import com.android.documentsui.selection.BandPredicate;
22 public class TestBandPredicate extends BandPredicate {
  /packages/apps/DocumentsUI/src/com/android/documentsui/selection/
BandPredicate.java 29 public abstract class BandPredicate {
35 * A BandPredicate that allows initiation of band selection only in areas of RecyclerView
39 public static final class NoPositionBandPredicate extends BandPredicate {
DefaultBandPredicate.java 26 * BandPredicate that consults ItemDetails, premitting band selection to start
29 public final class DefaultBandPredicate extends BandPredicate {
BandSelectionHelper.java 63 private final BandPredicate mBandPredicate;
80 BandPredicate bandPredicate,
88 checkArgument(bandPredicate != null);
96 mBandPredicate = bandPredicate;
  /frameworks/support/recyclerview-selection/src/main/java/androidx/recyclerview/selection/
BandPredicate.java 36 * @see SelectionTracker.Builder#withBandPredicate(BandPredicate)
38 public abstract class BandPredicate {
52 * A BandPredicate that allows initiation of band selection only in areas of RecyclerView
61 public static final class EmptyArea extends BandPredicate {
91 * A BandPredicate that allows initiation of band selection in any area that is not
106 public static final class NonDraggableArea extends BandPredicate {
BandSelectionHelper.java 64 private final BandPredicate mBandPredicate;
82 @NonNull BandPredicate bandPredicate,
90 checkArgument(bandPredicate != null);
97 mBandPredicate = bandPredicate;
131 @NonNull BandPredicate bandPredicate,
140 bandPredicate,
SelectionTracker.java 468 private BandPredicate mBandPredicate;
517 mBandPredicate = new BandPredicate.NonDraggableArea(mRecyclerView, detailsLookup);
631 * @param bandPredicate
634 public Builder<K> withBandPredicate(@NonNull BandPredicate bandPredicate) {
635 checkArgument(bandPredicate != null);
637 mBandPredicate = bandPredicate;

Completed in 462 milliseconds