Home
last modified time | relevance | path

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

/aosp14/frameworks/base/libs/androidfw/
H A DZipFileRO.cpp226 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()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/coordinator/
H A DSmartspaceDedupingCoordinator.kt104 val newMap = mutableMapOf<String, TrackedSmartspaceTarget>() regex
113 newMap[key] = trackedTarget
121 if (!newMap.containsKey(prevKey)) {
131 trackedSmartspaceTargets = newMap
/aosp14/frameworks/base/services/core/java/com/android/server/am/
H A DProviderMap.java174 … 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()
/aosp14/frameworks/base/tests/ActivityTests/src/com/google/android/test/activity/
H A DArrayMapTests.java424 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()
/aosp14/frameworks/base/services/core/java/com/android/server/utils/
H A DWatchedSparseBooleanMatrix.java465 int[] newMap = ArrayUtils.newUnpaddedIntArray(newOrder); in resizeMatrix() local
466 System.arraycopy(mMap, 0, newMap, 0, minOrder); in resizeMatrix()
478 mMap = newMap; in resizeMatrix()