Home
last modified time | relevance | path

Searched refs:FIRST_API_LEVEL (Results 1 – 2 of 2) sorted by relevance

/cts/common/device-side/util-axt/src/com/android/compatibility/common/util/
DApiLevelUtil.java31 private static final int FIRST_API_LEVEL = field in ApiLevelUtil
82 return FIRST_API_LEVEL < version; in isFirstApiBefore()
91 return FIRST_API_LEVEL > version; in isFirstApiAfter()
99 return FIRST_API_LEVEL >= version; in isFirstApiAtLeast()
107 return FIRST_API_LEVEL <= version; in isFirstApiAtMost()
115 return FIRST_API_LEVEL; in getFirstApiLevel()
DPropertyUtil.java40 public static final String FIRST_API_LEVEL = "ro.product.first_api_level"; field in PropertyUtil
87 int firstApiLevel = getPropertyInt(FIRST_API_LEVEL); in getFirstApiLevel()