HomeSort by relevance Sort by last modified time
    Searched defs:BooleanSystemProperty (Results 1 - 2 of 2) sorted by null

  /packages/apps/TV/src/com/android/tv/util/
SystemProperties.java 19 import com.android.tv.common.BooleanSystemProperty;
29 public static final BooleanSystemProperty ALLOW_ANALYTICS_IN_ENG = new BooleanSystemProperty(
35 public static final BooleanSystemProperty ALLOW_STRICT_MODE = new BooleanSystemProperty(
41 public static final BooleanSystemProperty ALLOW_DEATH_PENALTY = new BooleanSystemProperty(
47 public static final BooleanSystemProperty LOG_KEYEVENT = new BooleanSystemProperty(
52 public static final BooleanSystemProperty USE_DEBUG_KEYS = new BooleanSystemProperty
    [all...]
  /packages/apps/TV/common/src/com/android/tv/common/
BooleanSystemProperty.java 35 public class BooleanSystemProperty {
36 private final static String TAG = "BooleanSystemProperty";
38 private static final List<BooleanSystemProperty> ALL_PROPERTIES = new ArrayList<>();
49 public BooleanSystemProperty(String key, boolean defaultValue) {
56 for (BooleanSystemProperty prop : ALL_PROPERTIES) {

Completed in 412 milliseconds