Home
last modified time | relevance | path

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

/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/descriptors/
DElementDescriptor.java401 Set<ElementDescriptor> visited) { in findChildrenDescriptorInternal() argument
402 if (recursive && visited == null) { in findChildrenDescriptorInternal()
403 visited = new HashSet<ElementDescriptor>(); in findChildrenDescriptorInternal()
412 if (visited != null) { in findChildrenDescriptorInternal()
413 visited.add(this); in findChildrenDescriptorInternal()
418 if (visited != null) { in findChildrenDescriptorInternal()
419 if (!visited.add(e)) { // Set.add() returns false if element is already present in findChildrenDescriptorInternal()
424 recursive, visited); in findChildrenDescriptorInternal()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newxmlfile/
DNewXmlFileCreationPage.java858 HashSet<ElementDescriptor> visited = new HashSet<ElementDescriptor>(); in initializeRootValues() local
859 initRootElementDescriptor(roots, descriptor, visited); in initializeRootValues()
875 ElementDescriptor desc, HashSet<ElementDescriptor> visited) { in initRootElementDescriptor() argument
883 visited.add(desc); in initRootElementDescriptor()
886 if (!visited.contains(child)) { in initRootElementDescriptor()
887 initRootElementDescriptor(roots, child, visited); in initRootElementDescriptor()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/
DLayoutEditorDelegate.java973 Set<ElementDescriptor> visited) { in internalFindFqcnViewDescriptor() argument
974 if (visited == null) { in internalFindFqcnViewDescriptor()
975 visited = new HashSet<ElementDescriptor>(); in internalFindFqcnViewDescriptor()
980 if (visited.add(desc)) { in internalFindFqcnViewDescriptor()
991 internalFindFqcnViewDescriptor(fqcn, desc.getChildren(), visited); in internalFindFqcnViewDescriptor()
/sdk/templates/docs/
Ddefault.css50 a:visited {
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/uimodel/
DUiElementNode.java1419 HashSet<Node> visited = new HashSet<Node>(); in updateAttributeList() local
1429 visited.add(xmlAttr); in updateAttributeList()
1447 if (visited.contains(xmlAttr)) { in updateAttributeList()