HomeSort by relevance Sort by last modified time
    Searched defs:Dense (Results 1 - 3 of 3) sorted by null

  /external/llvm/include/llvm/ADT/
SparseSet.h 97 /// SparseSet contains a dense vector holding all the objects and a sparse
98 /// array holding indexes into the dense vector. Most of the memory is used by
128 DenseT Dense;
174 const_iterator begin() const { return Dense.begin(); }
175 const_iterator end() const { return Dense.end(); }
176 iterator begin() { return Dense.begin(); }
177 iterator end() { return Dense.end(); }
183 bool empty() const { return Dense.empty(); }
190 size_type size() const { return Dense.size(); }
196 Dense.clear()
    [all...]