Home
last modified time | relevance | path

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

/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
DBaseLayoutRule.java377 Set<String> existingIdSet = new HashSet<String>(); in remapIds() local
378 collectExistingIds(node.getRoot(), existingIdSet); in remapIds() local
387 if (!existingIdSet.contains(id)) { in remapIds()
395 String new_id = findNewId(value.getSecond(), existingIdSet); in remapIds()
408 protected static String findNewId(String fqcn, Set<String> existingIdSet) { in findNewId() argument
415 if (!existingIdSet.contains(id)) { in findNewId()
416 existingIdSet.add(id); in findNewId()
428 protected static void collectExistingIds(INode root, Set<String> existingIdSet) { in collectExistingIds() argument
437 if (!existingIdSet.contains(id)) { in collectExistingIds()
438 existingIdSet.add(id); in collectExistingIds()
[all …]