Home | History | Annotate | Download | only in common

Lines Matching defs:feature

23 import com.android.tv.common.feature.Feature;
160 * Throws or logs if the Feature is not enabled
163 * @param feature the required feature
166 * @throws IllegalStateException if {@code feature} is not enabled
168 public static void checkFeatureEnabled(Context context, Feature feature, String tag) {
169 checkState(feature.isEnabled(context), tag, feature.toString());