Searched defs:DenseSet (Results 1 - 1 of 1) sorted by relevance

/external/llvm/include/llvm/ADT/
H A DDenseSet.h1 //===- llvm/ADT/DenseSet.h - Dense probed hash table ------------*- C++ -*-===//
10 // This file defines the DenseSet class.
37 /// DenseSet - This implements a dense probed hash-table based set.
39 class DenseSet { class in namespace:llvm
51 explicit DenseSet(unsigned NumInitBuckets = 0) : TheMap(NumInitBuckets) {} function in class:llvm::DenseSet
57 /// Grow the DenseSet so that it has at least Size buckets. Will not shrink
74 void swap(DenseSet& RHS) {
82 friend class DenseSet;
103 friend class DenseSet;

Completed in 63 milliseconds