Home | History | Annotate | Download | only in feature

Lines Matching defs:feature

17 package com.android.tv.common.feature;
27 * Returns a feature that is enabled if any of {@code features} is enabled.
31 public static Feature OR(final Feature... features) {
32 return new Feature() {
35 for (Feature f : features) {
51 * Returns a feature that is enabled if all of {@code features} is enabled.
55 public static Feature AND(final Feature... features) {
56 return new Feature() {
59 for (Feature f : features) {
74 /** A feature that is always enabled. */
75 public static final Feature ON =
76 new Feature() {
88 /** A feature that is always disabled. */
89 public static final Feature OFF =
90 new Feature() {
103 public static final Feature ROBOLECTRIC =
104 new Feature() {