Home
last modified time | relevance | path

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

/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowPackageManager.java320 List<ResolveInfo> infoList = resolveInfoForIntent.get(intent); in addResolveInfoForIntentNoDefaults() local
321 if (infoList == null) { in addResolveInfoForIntentNoDefaults()
322 infoList = new ArrayList<>(); in addResolveInfoForIntentNoDefaults()
323 resolveInfoForIntent.put(intent, infoList); in addResolveInfoForIntentNoDefaults()
325 infoList.add(info); in addResolveInfoForIntentNoDefaults()
329 List<ResolveInfo> infoList = resolveInfoForIntent.get(intent); in removeResolveInfosForIntent() local
330 if (infoList == null) { in removeResolveInfosForIntent()
331 infoList = new ArrayList<>(); in removeResolveInfosForIntent()
332 resolveInfoForIntent.put(intent, infoList); in removeResolveInfosForIntent()
335 for (Iterator<ResolveInfo> iterator = infoList.iterator(); iterator.hasNext(); ) { in removeResolveInfosForIntent()