Lines Matching defs:DenseMap
2101 :ref:`DenseMap <dss_densemap>` has.
2262 Map-Like Containers (std::map, DenseMap, etc)
2329 llvm/ADT/DenseMap.h
2332 DenseMap is a simple quadratically probed hash table. It excels at supporting
2334 that are currently inserted in the map. DenseMap is a great way to map
2337 There are several aspects of DenseMap that you should be aware of, however.
2338 The iterators in a DenseMap are invalidated whenever an insertion occurs,
2339 unlike map. Also, because DenseMap allocates space for a large number of
2343 supported. This is required to tell DenseMap about two special marker values
2346 DenseMap's find_as() method supports lookup operations using an alternate key
2352 DenseMap.h also contains a SmallDenseMap variant, that similar to
2361 ValueMap is a wrapper around a :ref:`DenseMap <dss_densemap>` mapping
2413 ``MapVector<KeyT,ValueT>`` provides a subset of the DenseMap interface. The