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.
21 /// DenseSet - This implements a dense probed hash-table based set.
26 class DenseSet { class in namespace:llvm
34 explicit DenseSet(unsigned NumInitBuckets = 0) : TheMap(NumInitBuckets) {} function in class:llvm::DenseSet
40 /// Grow the DenseSet so that it has at least Size buckets. Will not shrink
57 void swap(DenseSet& RHS) {
65 friend class DenseSet;
85 friend class DenseSet;

Completed in 784 milliseconds