Home | History | Annotate | Download | only in containers

Lines Matching defs:Mapped

161   typedef typename Container::mapped_type Mapped;
162 typedef typename std::pair<Key, Mapped> NonConstKeyPair;
251 CHECKPOINT("Testing C::insert(p, pair<Key, Mapped> const&)");
268 CHECKPOINT("Testing C::insert(p, pair<Key, Mapped>&&)");
294 typedef typename Container::mapped_type Mapped;
295 typedef typename std::pair<Key, Mapped> NonConstKeyPair;
351 CHECKPOINT("Testing C::emplace(pair<Key, Mapped> const&)");
364 CHECKPOINT("Testing C::emplace(pair<Key, Mapped> &&)");
390 CHECKPOINT("Testing C::emplace(Key&, Mapped&)");
393 Mapped m(1);
394 cc->expect<Key&, Mapped&>();
404 CHECKPOINT("Testing C::emplace(Key&&, Mapped&&)");
407 Mapped m(1);
408 cc->expect<Key&&, Mapped&&>();
414 Mapped m2(2);
440 typedef typename Container::mapped_type Mapped;
441 typedef typename std::pair<Key, Mapped> NonConstKeyPair;
515 CHECKPOINT("Testing C::emplace_hint(p, pair<Key, Mapped> const&)");
532 CHECKPOINT("Testing C::emplace_hint(p, pair<Key, Mapped>&&)");
566 CHECKPOINT("Testing C::emplace_hint(p, Key&, Mapped&)");
569 Mapped m(1);
570 cc->expect<Key&, Mapped&>();
578 Mapped m2(2);
585 CHECKPOINT("Testing C::emplace_hint(p, Key&&, Mapped&&)");
588 Mapped m(1);
589 cc->expect<Key&&, Mapped&&>();
597 Mapped m2(2);