HomeSort by: relevance | last modified time | path
    Searched defs:try_emplace (Results 1 - 12 of 12) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
StringMap.h 243 ValueTy &operator[](StringRef Key) { return try_emplace(Key).first->second; }
297 return try_emplace(KV.first, std::move(KV.second));
301 /// exists. The return type is the same as try_emplace.
304 auto Ret = try_emplace(Key, std::forward<V>(Val));
315 std::pair<iterator, bool> try_emplace(StringRef Key, ArgsTy &&... Args) { function in class:llvm::StringMap
DenseMap.h 208 return try_emplace(KV.first, KV.second);
215 return try_emplace(std::move(KV.first), std::move(KV.second));
222 std::pair<iterator, bool> try_emplace(KeyT &&Key, Ts &&... Args) { function in class:llvm::DenseMapBase
247 std::pair<iterator, bool> try_emplace(const KeyT &Key, Ts &&... Args) { function in class:llvm::DenseMapBase
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/
stl_map.h 722 try_emplace(const key_type& __k, _Args&&... __args) function in class:map
739 try_emplace(key_type&& __k, _Args&&... __args) function in class:map
768 * try_emplace() does. However, if insertion did not take place,
782 try_emplace(const_iterator __hint, const key_type& __k, function in class:map
801 try_emplace(const_iterator __hint, key_type&& __k, _Args&&... __args) function in class:map
unordered_map.h 479 try_emplace(const key_type& __k, _Args&&... __args) function in class:unordered_map
481 return _M_h.try_emplace(cend(), __k, std::forward<_Args>(__args)...);
487 try_emplace(key_type&& __k, _Args&&... __args) function in class:unordered_map
489 return _M_h.try_emplace(cend(), std::move(__k),
523 try_emplace(const_iterator __hint, const key_type& __k, function in class:unordered_map
526 return _M_h.try_emplace(__hint, __k,
533 try_emplace(const_iterator __hint, key_type&& __k, _Args&&... __args) function in class:unordered_map
535 return _M_h.try_emplace(__hint, std::move(__k),
664 auto __ret = _M_h.try_emplace(cend(), __k,
676 auto __ret = _M_h.try_emplace(cend(), std::move(__k)
    [all...]
hashtable_policy.h 1014 try_emplace(const_iterator, _KType&& __k, _Args&&... __args) function in struct:_Insert_base
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/debug/
map.h 350 try_emplace(const key_type& __k, _Args&&... __args) function in class:__debug::map
352 auto __res = _Base::try_emplace(__k,
359 try_emplace(key_type&& __k, _Args&&... __args) function in class:__debug::map
361 auto __res = _Base::try_emplace(std::move(__k),
368 try_emplace(const_iterator __hint, const key_type& __k, function in class:__debug::map
374 _Base::try_emplace(__hint.base(), __k,
382 try_emplace(const_iterator __hint, key_type&& __k, _Args&&... __args) function in class:__debug::map
387 _Base::try_emplace(__hint.base(), std::move(__k),
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/
unordered_map.h 473 try_emplace(const key_type& __k, _Args&&... __args) function in class:unordered_map
475 return _M_h.try_emplace(cend(), __k, std::forward<_Args>(__args)...);
481 try_emplace(key_type&& __k, _Args&&... __args) function in class:unordered_map
483 return _M_h.try_emplace(cend(), std::move(__k),
517 try_emplace(const_iterator __hint, const key_type& __k, function in class:unordered_map
520 return _M_h.try_emplace(__hint, __k,
527 try_emplace(const_iterator __hint, key_type&& __k, _Args&&... __args) function in class:unordered_map
529 return _M_h.try_emplace(__hint, std::move(__k),
658 auto __ret = _M_h.try_emplace(cend(), __k,
670 auto __ret = _M_h.try_emplace(cend(), std::move(__k)
    [all...]
stl_map.h 723 try_emplace(const key_type& __k, _Args&&... __args) function in class:map
740 try_emplace(key_type&& __k, _Args&&... __args) function in class:map
769 * try_emplace() does. However, if insertion did not take place,
783 try_emplace(const_iterator __hint, const key_type& __k, function in class:map
802 try_emplace(const_iterator __hint, key_type&& __k, _Args&&... __args) function in class:map
hashtable_policy.h 910 try_emplace(const_iterator, _KType&& __k, _Args&&... __args) function in struct:_Insert_base
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/debug/
map.h 350 try_emplace(const key_type& __k, _Args&&... __args) function in class:__debug::map
352 auto __res = _Base::try_emplace(__k,
359 try_emplace(key_type&& __k, _Args&&... __args) function in class:__debug::map
361 auto __res = _Base::try_emplace(std::move(__k),
368 try_emplace(const_iterator __hint, const key_type& __k, function in class:__debug::map
374 _Base::try_emplace(__hint.base(), __k,
382 try_emplace(const_iterator __hint, key_type&& __k, _Args&&... __args) function in class:__debug::map
387 _Base::try_emplace(__hint.base(), std::move(__k),
  /src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
sanitizer_dense_map.h 124 return try_emplace(KV.first, KV.second);
131 return try_emplace(__sanitizer::move(KV.first),
139 detail::DenseMapPair<value_type *, bool> try_emplace(KeyT &&Key, function in class:__sanitizer::DenseMapBase
155 detail::DenseMapPair<value_type *, bool> try_emplace(const KeyT &Key, function in class:__sanitizer::DenseMapBase
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
JSON.h 118 std::pair<iterator, bool> try_emplace(const ObjectKey &K, Ts &&... Args) { function in class:llvm::json::Object
119 return M.try_emplace(K, std::forward<Ts>(Args)...);
122 std::pair<iterator, bool> try_emplace(ObjectKey &&K, Ts &&... Args) { function in class:llvm::json::Object
123 return M.try_emplace(std::move(K), std::forward<Ts>(Args)...);
555 auto R = try_emplace(P.K, nullptr);
561 return try_emplace(std::move(E.K), std::move(E.V));

Completed in 30 milliseconds