Lines Matching defs:iterator
27 typedef typename VectorTy::iterator iterator;
29 iterator begin() { return Vector.begin(); }
30 iterator end() { return Vector.end(); }
50 std::pair<typename MapTy::iterator, bool> Pair =
61 std::pair<iterator, bool> insert(const std::pair<KeyT, ValueT> &InsertPair) {
62 std::pair<typename MapTy::iterator, bool> Pair =
73 iterator find(const KeyT &Key) {
74 typename MapTy::iterator It = Map.find(Key);
91 typename MapTy::iterator It = Map.find(Key);