Searched refs:seen (Results 1 – 6 of 6) sorted by relevance
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/resources/platform/ |
D | AttributeInfoTest.java | 309 Set<String> seen = Sets.newHashSet(); in testIsValid() local 311 checkDir(new File(git, "packages" + File.separator + "apps"), false, attributeMap, seen); in testIsValid() 315 Map<String, AttributeInfo> map, Set<String> seen) throws IOException { in checkDir() argument 321 checkXmlFile(file, map, seen); in checkDir() 323 checkDir(file, isResourceDir || file.getName().equals("res"), map, seen); in checkDir() 330 Set<String> seen) throws IOException { in checkXmlFile() argument 336 checkElement(file, doc.getDocumentElement(), map, seen); in checkXmlFile() 342 Set<String> seen) { in checkElement() argument 373 if (!seen.contains(name)) { in checkElement() 374 seen.add(name); in checkElement()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
D | DomUtilities.java | 496 private static void addLowercaseIds(@NonNull Element root, @NonNull Set<String> seen) { in addLowercaseIds() argument 501 seen.add(id.substring(NEW_ID_PREFIX.length()).toLowerCase(Locale.US)); in addLowercaseIds() 503 seen.add(id.substring(ID_PREFIX.length()).toLowerCase(Locale.US)); in addLowercaseIds() 505 seen.add(id.toLowerCase(Locale.US)); in addLowercaseIds()
|
D | IncludeFinder.java | 1073 Set<String> seen = new HashSet<String>(); in getInvalidIncludes() local 1074 seen.add(self.getId()); in getInvalidIncludes() 1094 if (!seen.contains(id)) { in getInvalidIncludes() 1095 seen.add(id); in getInvalidIncludes()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/ |
D | ConfigurationChooser.java | 2019 IdentityHashMap<ResourceValue, Boolean> seen) { in isTheme() argument 2063 if (seen == null) { in isTheme() 2064 seen = new IdentityHashMap<ResourceValue, Boolean>(); in isTheme() 2065 seen.put(value, Boolean.TRUE); in isTheme() 2066 } else if (seen.containsKey(parentValue)) { in isTheme() 2069 seen.put(parentValue, Boolean.TRUE); in isTheme() 2070 return isTheme(parentValue, styleMap, seen); in isTheme()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/ |
D | NewTemplatePage.java | 227 Set<String> seen = null; in onEnter() local 229 seen = new HashSet<String>(); in onEnter() 255 assert seen != null && seen.add(id) : id; in onEnter()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/ |
D | RelativeLayoutConversionHelper.java | 309 Set<Node> seen = new HashSet<Node>(); in computeKnownConstraints() local 314 if (seen.contains(parent)) { in computeKnownConstraints() 317 seen.add(parent); in computeKnownConstraints()
|