Home | History | Annotate | Download | only in ADT

Lines Matching refs:ValueT

25 template<typename ValueT, typename ValueInfoT = DenseMapInfo<ValueT> >
27 typedef DenseMap<ValueT, char, ValueInfoT> MapTy;
45 bool count(const ValueT &V) const {
49 bool erase(const ValueT &V) {
69 typedef ValueT value_type;
76 ValueT& operator*() { return I->first; }
77 ValueT* operator->() { return &I->first; }
89 typedef ValueT value_type;
96 const ValueT& operator*() { return I->first; }
97 const ValueT* operator->() { return &I->first; }
113 iterator find(const ValueT &V) { return Iterator(TheMap.find(V)); }
117 std::pair<iterator, bool> insert(const ValueT &V) {