Uses of Class
com.intellij.util.containers.HashSet

Packages that use HashSet
com.intellij.psi.search Provides interfaces for searching references to elements, searching for classes and symbols by name, searching for TODO items and defining scope of searches. 
com.intellij.util.containers Provides additional container classes and services for working with containers. 
 

Uses of HashSet in com.intellij.psi.search
 

Methods in com.intellij.psi.search with parameters of type HashSet
 void PsiShortNamesCache.getAllClassNames(boolean searchInLibraries, HashSet<java.lang.String> dest)
          Adds the names of all classes in the project and (optionally) libraries to the specified set.
 void PsiShortNamesCache.getAllFieldNames(boolean searchInLibraries, HashSet<java.lang.String> set)
          Adds the names of all methods in the project and (optionally) libraries to the specified set.
 void PsiShortNamesCache.getAllMethodNames(boolean searchInLibraries, HashSet<java.lang.String> set)
          Adds the names of all methods in the project and (optionally) libraries to the specified set.
 

Uses of HashSet in com.intellij.util.containers
 

Methods in com.intellij.util.containers that return HashSet
static
<T> HashSet<T>
ContainerUtil.collectSet(java.util.Iterator<T> iterator)
           
<Dom,Rng extends E>
HashSet<Rng>
CollectUtil.toSet(Dom[] objects, Convertor<Dom,Rng> convertor)
           
<Dom,Rng extends E>
HashSet<Rng>
CollectUtil.toSet(java.util.Iterator<Dom> iterator, Convertor<Dom,Rng> convertor)
           
abstract
<T extends E>
HashSet<T>
CollectUtil.toSet(java.util.Iterator<T> iterator)