Home
last modified time | relevance | path

Searched refs:supportedTypes (Results 1 – 12 of 12) sorted by relevance

/packages/apps/TvSettings/Settings/src/com/android/tv/settings/device/displaysound/
DResolutionSelectionInfo.java47 StringBuilder supportedTypes = new StringBuilder(System.lineSeparator()).append( in hdrTypesAsString() local
51 supportedTypes.append(System.lineSeparator()); in hdrTypesAsString()
54 supportedTypes in hdrTypesAsString()
60 supportedTypes in hdrTypesAsString()
65 supportedTypes in hdrTypesAsString()
70 supportedTypes in hdrTypesAsString()
76 return supportedTypes.toString(); in hdrTypesAsString()
/packages/modules/Connectivity/tests/unit/java/com/android/server/
DLegacyTypeTrackerTest.kt74 private val supportedTypes = arrayOf(TYPE_WIFI, TYPE_WIFI_P2P, TYPE_ETHERNET, TYPE_MOBILE, constant in com.android.server.LegacyTypeTrackerTest
100 supportedTypes.forEach { in testSupportedTypes()
121 supportedTypes.toSet().minus(nonMobileTypes).forEach { in testSupportedTypes_NoTelephony()
131 supportedTypes.toSet().minus(TYPE_WIFI_P2P).forEach { in testSupportedTypes_NoWifiDirect()
/packages/services/Car/tests/android_car_api_test/src/android/car/apitest/
DCarCabinManagerTest.java54 Set<Class> supportedTypes = new HashSet<>(Arrays.asList( in testAllCabinProperties() local
58 if (supportedTypes.contains(property.getPropertyType())) { in testAllCabinProperties()
DCarHvacManagerTest.java52 Set<Class> supportedTypes = new HashSet<>(Arrays.asList( in testAllHvacProperties() local
56 if (supportedTypes.contains(property.getPropertyType())) { in testAllHvacProperties()
/packages/modules/Connectivity/Tethering/common/TetheringLib/src/android/net/
DTetheringCallbackStartedParcel.aidl29 long supportedTypes;
DTetheringManager.java1108 default void onSupportedTetheringTypes(@NonNull Set<Integer> supportedTypes) {}
1408 callback.onSupportedTetheringTypes(unpackBits(parcel.supportedTypes));
1409 callback.onTetheringSupported(parcel.supportedTypes != 0);
/packages/apps/TV/tuner/src/com/google/android/exoplayer/
DMediaSoftwareCodecUtil.java112 String[] supportedTypes = info.getSupportedTypes(); in getMediaSoftwareCodecInfoInternal() local
113 for (String supportedType : supportedTypes) { in getMediaSoftwareCodecInfoInternal()
/packages/modules/Connectivity/tests/unit/java/com/android/server/connectivity/
DNat464XlatTest.java167 final int[] supportedTypes = {
181 for (int type : supportedTypes) {
/packages/apps/Contacts/src/com/android/contacts/model/
DRawContactModifier.java1090 final Set<Integer> supportedTypes = new HashSet<Integer>(); in migratePostal() local
1093 supportedTypes.add(editType.rawValue); in migratePostal()
1103 if (!supportedTypes.contains(oldType)) { in migratePostal()
/packages/modules/Connectivity/Tethering/tests/integration/base/android/net/
DEthernetTetheringTestBase.java430 public void onSupportedTetheringTypes(Set<Integer> supportedTypes) { in onSupportedTetheringTypes() argument
/packages/modules/Connectivity/Tethering/src/com/android/networkstack/tethering/
DTethering.java2393 parcel.supportedTypes = mSupportedTypeBitmap; in registerTetheringEventCallback()
/packages/modules/Connectivity/Tethering/tests/unit/src/com/android/networkstack/tethering/
DTetheringTest.java2251 mSupportedBitmaps.add(parcel.supportedTypes); in onCallbackStarted()