Home | History | Annotate | Download | only in tv

Lines Matching refs:Feature

19 import static com.android.tv.common.feature.EngOnlyFeature.ENG_ONLY_FEATURE;
20 import static com.android.tv.common.feature.FeatureUtils.AND;
21 import static com.android.tv.common.feature.FeatureUtils.OFF;
22 import static com.android.tv.common.feature.FeatureUtils.ON;
23 import static com.android.tv.common.feature.FeatureUtils.OR;
31 import com.android.tv.common.feature.Feature;
32 import com.android.tv.common.feature.GServiceFeature;
33 import com.android.tv.common.feature.PropertyFeature;
37 * List of {@link Feature} for the Live TV App.
39 * <p>Remove the {@code Feature} once it is launched.
48 public static final Feature ANALYTICS_OPT_IN = ENG_ONLY_FEATURE;
55 public static final Feature ANALYTICS_V2 = AND(ON, ANALYTICS_OPT_IN);
57 public static final Feature EPG_SEARCH =
60 public static final Feature TUNER = new Feature() {
76 public static final Feature UNHIDE =
77 OR(new GServiceFeature(GSERVICE_KEY_UNHIDE, false), new Feature() {
85 public static final Feature PICTURE_IN_PICTURE = new Feature() {
101 public static final Feature SHOW_UPCOMING_CONFLICT_DIALOG = OFF;
106 public static final Feature USE_PARTNER_INPUT_BLACKLIST = ON;
109 public static final Feature TEST_FEATURE = new PropertyFeature("test_feature", false);