Searched refs:newMap (Results 1 – 7 of 7) sorted by relevance
/frameworks/base/libs/androidfw/ |
D | ZipFileRO.cpp | 226 FileMap* newMap = new FileMap(); in createEntryFileMap() local 227 if (!newMap->create(mFileName, fd, ze.offset, actualLen, true)) { in createEntryFileMap() 228 delete newMap; in createEntryFileMap() 232 return newMap; in createEntryFileMap() 251 incfs::IncFsFileMap newMap; in createEntryIncFsFileMap() local 252 if (!newMap.Create(fd, ze.offset, actualLen, mFileName)) { in createEntryIncFsFileMap() 255 return std::move(newMap); in createEntryIncFsFileMap()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/coordinator/ |
D | SmartspaceDedupingCoordinator.kt | 114 val newMap = mutableMapOf<String, TrackedSmartspaceTarget>() in <lambda>() constant 123 newMap[key] = trackedTarget in <lambda>() 131 if (!newMap.containsKey(prevKey)) { in <lambda>() 142 trackedSmartspaceTargets = newMap in <lambda>()
|
/frameworks/base/services/core/java/com/android/server/am/ |
D | ProviderMap.java | 174 … HashMap<String, ContentProviderRecord> newMap = new HashMap<String, ContentProviderRecord>(); in getProvidersByName() local 175 mProvidersByNamePerUser.put(userId, newMap); in getProvidersByName() 176 return newMap; in getProvidersByName() 187 HashMap<ComponentName, ContentProviderRecord> newMap in getProvidersByClass() local 189 mProvidersByClassPerUser.put(userId, newMap); in getProvidersByClass() 190 return newMap; in getProvidersByClass()
|
/frameworks/base/tests/ActivityTests/src/com/google/android/test/activity/ |
D | ArrayMapTests.java | 424 ArrayMap newMap = new ArrayMap<Integer, String>(); in run() 426 newMap.put(i, String.valueOf(i)); in run() 428 ArrayMap mapCopy = new ArrayMap(newMap); in run() 429 if (!compare(mapCopy, newMap)) { in run() 431 newMap + ", got " + mapCopy); in run() 432 dump(newMap, mapCopy); in run()
|
/frameworks/base/services/core/java/com/android/server/utils/ |
D | WatchedSparseBooleanMatrix.java | 430 int[] newMap = ArrayUtils.newUnpaddedIntArray(newOrder); in resizeMatrix() local 431 System.arraycopy(mMap, 0, newMap, 0, minOrder); in resizeMatrix() 443 mMap = newMap; in resizeMatrix()
|
/frameworks/opt/net/ims/src/java/com/android/ims/rcs/uce/presence/publish/ |
D | DeviceCapabilityInfo.java | 136 public synchronized boolean updateCapabilityRegistrationTrackerMap(String[] newMap) { in updateCapabilityRegistrationTrackerMap() argument 138 mServiceCapRegTracker = PublishServiceDescTracker.fromCarrierConfig(newMap); in updateCapabilityRegistrationTrackerMap()
|
D | PublishControllerImpl.java | 831 String[] newMap = getCarrierServiceDescriptionFeatureTagMap(); in handleCarrierConfigChangedMessage() local 832 if (mDeviceCapabilityInfo.updateCapabilityRegistrationTrackerMap(newMap)) { in handleCarrierConfigChangedMessage()
|