Searched refs:IntentFilterQueryHelper (Results 1 – 3 of 3) sorted by relevance
35 public class IntentFilterQueryHelper<E extends Queryable> implements IntentFilterQuery<E> { class41 IntentFilterQueryHelper() { in IntentFilterQueryHelper() method in IntentFilterQueryHelper47 public IntentFilterQueryHelper(E query) { in IntentFilterQueryHelper() method in IntentFilterQueryHelper53 private IntentFilterQueryHelper(Parcel in) { in IntentFilterQueryHelper() method in IntentFilterQueryHelper55 mActionsQueryHelper = in.readParcelable(IntentFilterQueryHelper.class.getClassLoader()); in IntentFilterQueryHelper()56 mCategoriesQueryHelper = in.readParcelable(IntentFilterQueryHelper.class.getClassLoader()); in IntentFilterQueryHelper()113 public static final Parcelable.Creator<IntentFilterQueryHelper> CREATOR =114 new Parcelable.Creator<IntentFilterQueryHelper>() {115 public IntentFilterQueryHelper createFromParcel(Parcel in) {116 return new IntentFilterQueryHelper(in);[all …]
32 return new IntentFilterQueryHelper<>(); in intentFilter()
60 IntentFilterQueryHelper<Queryable> intentFilterQueryHelper = in matches_noRestrictions_returnsTrue()61 new IntentFilterQueryHelper<>(mQuery); in matches_noRestrictions_returnsTrue()68 IntentFilterQueryHelper<Queryable> intentFilterQueryHelper = in matches_actionsRestriction_meetsRestriction_returnsTrue()69 new IntentFilterQueryHelper<>(mQuery); in matches_actionsRestriction_meetsRestriction_returnsTrue()78 IntentFilterQueryHelper<Queryable> intentFilterQueryHelper = in matches_actionsRestriction_doesNotMeetRestriction_returnsFalse()79 new IntentFilterQueryHelper<>(mQuery); in matches_actionsRestriction_doesNotMeetRestriction_returnsFalse()88 IntentFilterQueryHelper<Queryable> intentFilterQueryHelper = in matches_categoriesRestriction_meetsRestriction_returnsTrue()89 new IntentFilterQueryHelper<>(mQuery); in matches_categoriesRestriction_meetsRestriction_returnsTrue()98 IntentFilterQueryHelper<Queryable> intentFilterQueryHelper = in matches_categoriesRestriction_doesNotMeetRestriction_returnsFalse()99 new IntentFilterQueryHelper<>(mQuery); in matches_categoriesRestriction_doesNotMeetRestriction_returnsFalse()[all …]