reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

include/llvm/ADT/DenseMap.h
  126         P->getFirst() = EmptyKey;
  135           P->getFirst() = EmptyKey;
  278     TheBucket->getFirst() = getTombstoneKey();
  286     TheBucket->getFirst() = getTombstoneKey();
  379         DestBucket->getFirst() = std::move(B->getFirst());
  519     TheBucket->getFirst() = std::forward<KeyArg>(Key);
include/llvm/Support/type_traits.h
  122     static auto get(F*) -> decltype(std::declval<F &>() = std::declval<const F &>(), std::true_type{});
  130     static auto get(F*) -> decltype(std::declval<F &>() = std::declval<F &&>(), std::true_type{});
unittests/ADT/DenseMapTest.cpp
  136   this->Map[this->getKey()] = this->getValue();
  159   this->Map[this->getKey()] = this->getValue();
  169   this->Map[this->getKey()] = this->getValue();
  179   this->Map[this->getKey()] = this->getValue();
  196   this->Map[this->getKey()] = this->getValue();
  206     this->Map[this->getKey(Key)] = this->getValue(Key);
  224     this->Map[this->getKey(Key)] = this->getValue(Key);
  233   this->Map[this->getKey()] = this->getValue();
  247     this->Map[this->getKey(Key)] = this->getValue(Key);
  263   this->Map[this->getKey()] = this->getValue();
  280     this->Map[this->getKey(i)] = this->getValue(i);
  307     this->Map[this->getKey(i)] = this->getValue(i);
usr/include/c++/7.4.0/bits/move.h
  199       __a = _GLIBCXX_MOVE(__b);
  200       __b = _GLIBCXX_MOVE(__tmp);
usr/include/c++/7.4.0/bits/stl_pair.h
  396 	first = std::forward<first_type>(__p.first);
  397 	second = std::forward<second_type>(__p.second);