Searched refs:infoList (Results 1 – 1 of 1) sorted by relevance
320 List<ResolveInfo> infoList = resolveInfoForIntent.get(intent); in addResolveInfoForIntentNoDefaults() local321 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() local330 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()