HomeSort by relevance Sort by last modified time
    Searched refs:ValueT (Results 1 - 11 of 11) sorted by null

  /external/llvm/include/llvm/ADT/
DenseSet.h 25 template<typename ValueT, typename ValueInfoT = DenseMapInfo<ValueT> >
27 typedef DenseMap<ValueT, char, ValueInfoT> MapTy;
43 bool count(const ValueT &V) const {
47 bool erase(const ValueT &V) {
67 typedef ValueT value_type;
74 ValueT& operator*() { return I->first; }
75 ValueT* operator->() { return &I->first; }
87 typedef ValueT value_type;
94 const ValueT& operator*() { return I->first;
    [all...]
SparseSet.h 36 template<typename ValueT>
38 unsigned operator()(const ValueT &Val) {
84 /// @param ValueT The type of objects in the set.
86 /// @param KeyFunctorT A functor that computes the unsigned key of a ValueT.
88 template<typename ValueT,
90 typename KeyFunctorT = SparseSetFunctor<ValueT> >
92 typedef SmallVector<ValueT, 8> DenseT;
104 typedef ValueT value_type;
105 typedef ValueT &reference;
106 typedef const ValueT &const_reference
    [all...]
ValueMap.h 38 template<typename KeyT, typename ValueT, typename Config>
75 template<typename KeyT, typename ValueT, typename Config =ValueMapConfig<KeyT> >
77 friend class ValueMapCallbackVH<KeyT, ValueT, Config>;
78 typedef ValueMapCallbackVH<KeyT, ValueT, Config> ValueMapCVH;
79 typedef DenseMap<ValueMapCVH, ValueT, DenseMapInfo<ValueMapCVH> > MapT;
87 typedef ValueT mapped_type;
88 typedef std::pair<KeyT, ValueT> value_type;
126 ValueT lookup(const KeyT &Val) const {
133 std::pair<iterator, bool> insert(const std::pair<KeyT, ValueT> &KV) {
158 ValueT &operator[](const KeyT &Key)
    [all...]
DenseMap.h 31 template<typename KeyT, typename ValueT,
36 template<typename KeyT, typename ValueT,
39 typedef std::pair<KeyT, ValueT> BucketT;
47 typedef ValueT mapped_type;
70 P->second.~ValueT();
80 typedef DenseMapIterator<KeyT, ValueT, KeyInfoT> iterator;
81 typedef DenseMapIterator<KeyT, ValueT,
120 P->second.~ValueT();
171 ValueT lookup(const KeyT &Val) const {
175 return ValueT();
    [all...]
StringMap.h 22 template<typename ValueT>
24 template<typename ValueT>
Hashing.h 416 typedef typename std::iterator_traits<InputIteratorT>::value_type ValueT;
458 template <typename ValueT>
459 typename enable_if<is_hashable_data<ValueT>, hash_code>::type
460 hash_combine_range_impl(ValueT *first, ValueT *last) {
  /external/llvm/include/llvm/Support/
YAMLParser.h 262 /// BaseT must have a ValueT* member named CurrentEntry and a member function
264 template <class BaseT, class ValueT>
266 : public std::iterator<std::forward_iterator_tag, ValueT> {
271 ValueT *operator ->() const {
276 ValueT &operator *() const {
282 operator ValueT*() const {
  /external/llvm/include/llvm/
Module.h 33 template<typename KeyT, typename ValueT, typename KeyInfoT> class DenseMap;
  /external/clang/lib/Sema/
SemaExprObjC.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
ObjCARC.cpp 57 template<class KeyT, class ValueT>
64 typedef std::vector<std::pair<KeyT, ValueT> > VectorTy;
91 ValueT &operator[](const KeyT &Arg) {
97 Vector.push_back(std::make_pair(Arg, ValueT()));
104 insert(const std::pair<KeyT, ValueT> &InsertPair) {
    [all...]
  /external/clang/include/clang/Sema/
Sema.h 47 template <typename ValueT> struct DenseMapInfo;
48 template <typename ValueT, typename ValueInfoT> class DenseSet;
    [all...]

Completed in 3234 milliseconds