Home
last modified time | relevance | path

Searched refs:mTypes (Results 1 – 5 of 5) sorted by relevance

/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
DContactsMockResources.java27 private Map<Integer, String> mTypes = Maps.newHashMap(); field in ContactsMockResources
32 mTypes.put(resId, typeName); in addResource()
41 return mPackages.get(resId) + ":" + mTypes.get(resId) + "/" + mEntries.get(resId); in getResourceName()
57 return mTypes.get(resId); in getResourceTypeName()
/packages/apps/Contacts/tests/src/com/android/contacts/test/mocks/
DMockAccountTypeManager.java38 public AccountType[] mTypes; field in MockAccountTypeManager
42 this.mTypes = types; in MockAccountTypeManager()
56 for (AccountType type : mTypes) { in getAccountType()
/packages/apps/Messaging/tests/src/com/android/messaging/
DFakeContentProvider.java69 private final SimpleArrayMap<String, String> mTypes = new SimpleArrayMap<String, String>(); field in FakeContentProvider
94 mTypes.put(uri.toString(), type); in addOverrideType()
143 String type = mTypes.get(uri.toString()); in getType()
/packages/apps/CellBroadcastReceiver/tests/unit/src/com/android/cellbroadcastreceiver/unit/
DCellBroadcastBootupConfigTest.java73 private ArgumentCaptor<Integer> mTypes; field in CellBroadcastBootupConfigTest
189 mStartIds.capture(), mEndIds.capture(), mTypes.capture()); in testConfiguration()
194 assertEquals("i=" + i, configs[i].type, mTypes.getAllValues().get(i).intValue()); in testConfiguration()
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/user/
DCarUserServiceTest.java2210 private final @NonNull int[] mTypes; field in CarUserServiceTest.UserIdentificationGetRequestMatcher
2215 mTypes = types; in UserIdentificationGetRequestMatcher()
2232 if (argument.numberAssociationTypes != mTypes.length) { in matches()
2234 + mTypes.length); in matches()
2237 if (argument.associationTypes.size() != mTypes.length) { in matches()
2239 + mTypes.length); in matches()
2242 for (int i = 0; i < mTypes.length; i++) { in matches()
2243 if (argument.associationTypes.get(i) != mTypes[i]) { in matches()
2245 + "; expected types: " + Arrays.toString(mTypes)); in matches()
2257 + Arrays.toString(mTypes) + ")"; in toString()