Searched refs:insert_as (Results 1 – 7 of 7) sorted by relevance
/external/llvm/include/llvm/ADT/ |
D | DenseSet.h | 160 std::pair<iterator, bool> insert_as(const ValueT &V, in insert_as() function 162 return insert_as(ValueT(V), LookupKey); in insert_as() 165 std::pair<iterator, bool> insert_as(ValueT &&V, const LookupKeyT &LookupKey) { in insert_as() function 167 return TheMap.insert_as(std::make_pair(std::move(V), Empty), LookupKey); in insert_as()
|
D | DenseMap.h | 206 std::pair<iterator, bool> insert_as(std::pair<KeyT, ValueT> &&KV, in insert_as() function
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/ |
D | DenseSet.h | 200 std::pair<iterator, bool> insert_as(const ValueT &V, in insert_as() function 202 return TheMap.insert_as({V, detail::DenseSetEmpty()}, LookupKey); in insert_as() 205 std::pair<iterator, bool> insert_as(ValueT &&V, const LookupKeyT &LookupKey) { in insert_as() function 206 return TheMap.insert_as({std::move(V), detail::DenseSetEmpty()}, LookupKey); in insert_as()
|
D | DenseMap.h | 245 std::pair<iterator, bool> insert_as(std::pair<KeyT, ValueT> &&KV, in insert_as() function
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/ |
D | ConstantsContext.h | 638 Map.insert_as(Result, HashKey); 694 Map.insert_as(CP, Lookup);
|
/external/llvm/lib/IR/ |
D | ConstantsContext.h | 603 Map.insert_as(Result, HashKey); 659 Map.insert_as(CP, Lookup);
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/ |
D | DenseMap.h | 222 std::pair<iterator, bool> insert_as(std::pair<KeyT, ValueT> &&KV, in insert_as() function
|