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

  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/base/
ISensorTestStateContainer.java 78 boolean hasSystemFeature(String feature);
BaseSensorTestActivity.java 376 public boolean hasSystemFeature(String feature) {
378 return pm.hasSystemFeature(feature);
  /cts/common/device-side/util/src/com/android/compatibility/common/util/
FeatureUtil.java 43 public static boolean hasSystemFeature(String feature) {
44 return getPackageManager().hasSystemFeature(feature);
51 if (pm.hasSystemFeature(feature)) {
62 if (!pm.hasSystemFeature(feature)) {
85 return hasSystemFeature(WATCH_FEATURE);
90 return hasSystemFeature(AUTOMOTIVE_FEATURE);
104 hasSystemFeature(LOW_RAM_FEATURE);
121 return hasSystemFeature(TELEPHONY_FEATURE);
126 return hasSystemFeature(getPackageManager().FEATURE_MICROPHONE);
  /cts/common/device-side/util-axt/src/com/android/compatibility/common/util/
FeatureUtil.java 44 public static boolean hasSystemFeature(String feature) {
45 return getPackageManager().hasSystemFeature(feature);
52 if (pm.hasSystemFeature(feature)) {
63 if (!pm.hasSystemFeature(feature)) {
86 return hasSystemFeature(WATCH_FEATURE);
91 return hasSystemFeature(AUTOMOTIVE_FEATURE);
105 hasSystemFeature(LOW_RAM_FEATURE);
122 return hasSystemFeature(TELEPHONY_FEATURE);
127 return hasSystemFeature(getPackageManager().FEATURE_MICROPHONE);
  /external/deqp/framework/platform/android/
tcuAndroidUtil.cpp 393 bool hasSystemFeature (JNIEnv* env, jobject activity, const char* name)
397 const jmethodID hasFeatureID = getMethodID(env, pmCls, "hasSystemFeature", "(Ljava/lang/String;)Z");
592 bool hasSystemFeature (ANativeActivity* activity, const char* name)
596 return hasSystemFeature(env.getEnv(), activity->clazz, name);
610 const bool isWearDevice = hasSystemFeature(activity, "android.hardware.type.watch");
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowPackageManagerTest.java     [all...]
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowApplicationPackageManager.java 193 protected boolean hasSystemFeature(String name) {
    [all...]

Completed in 264 milliseconds