Home
last modified time | relevance | path

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

/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
DDynamicContextMenu.java321 Map<String, Integer> idCounts = new HashMap<String, Integer>(); in computeApplicableActionIds() local
331 Integer count = idCounts.get(id); in computeApplicableActionIds()
333 idCounts.put(id, Integer.valueOf(1)); in computeApplicableActionIds()
335 idCounts.put(id, count + 1); in computeApplicableActionIds()
341 Set<String> validIds = new HashSet<String>(idCounts.size()); in computeApplicableActionIds()
342 for (Map.Entry<String, Integer> entry : idCounts.entrySet()) { in computeApplicableActionIds()