HomeSort by relevance Sort by last modified time
    Searched refs:try_emplace (Results 1 - 25 of 44) sorted by null

1 2

  /external/libcxx/test/std/containers/associative/map/map.modifiers/
try.emplace.pass.cpp 17 // pair<iterator, bool> try_emplace(const key_type& k, Args&&... args); // C++17
19 // pair<iterator, bool> try_emplace(key_type&& k, Args&&... args); // C++17
21 // iterator try_emplace(const_iterator hint, const key_type& k, Args&&... args); // C++17
23 // iterator try_emplace(const_iterator hint, key_type&& k, Args&&... args); // C++17
60 { // pair<iterator, bool> try_emplace(const key_type& k, Args&&... args);
72 r = m.try_emplace(i, std::move(mv1));
79 r = m.try_emplace(-1, std::move(mv1));
87 r = m.try_emplace(5, std::move(mv2));
95 r = m.try_emplace(117, std::move(mv2));
103 { // pair<iterator, bool> try_emplace(key_type&& k, Args&&... args)
    [all...]
insert_or_assign.pass.cpp 127 r = m.try_emplace(std::move(mvkey2), std::move(mv2));
  /external/libcxx/test/std/containers/unord/unord.map/unord.map.modifiers/
try.emplace.pass.cpp 17 // pair<iterator, bool> try_emplace(const key_type& k, Args&&... args); // C++17
19 // pair<iterator, bool> try_emplace(key_type&& k, Args&&... args); // C++17
21 // iterator try_emplace(const_iterator hint, const key_type& k, Args&&... args); // C++17
23 // iterator try_emplace(const_iterator hint, key_type&& k, Args&&... args); // C++17
67 { // pair<iterator, bool> try_emplace(const key_type& k, Args&&... args);
79 r = m.try_emplace(i, std::move(mv1));
86 r = m.try_emplace(-1, std::move(mv1));
94 r = m.try_emplace(5, std::move(mv2));
102 r = m.try_emplace(117, std::move(mv2));
110 { // pair<iterator, bool> try_emplace(key_type&& k, Args&&... args)
    [all...]
insert_or_assign.pass.cpp 133 r = m.try_emplace(std::move(mvkey2), std::move(mv2));
  /external/tensorflow/tensorflow/compiler/xla/service/
dynamic_dimension_inference.h 86 dynamic_mapping_.try_emplace(DynamicDimension{inst, index, dim}, size);
87 auto iter = per_hlo_dynamic_dimensions_.try_emplace(inst);
  /external/v8/tools/clang/rewrite_to_chrome_style/
EditTracker.cpp 47 auto result = tracked_edits_.try_emplace(original_text);
51 result.first->getValue().filenames.try_emplace(filename);
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/GlobalISel/
GISelWorkList.h 40 if (WorklistMap.try_emplace(I, Worklist.size()).second) {
  /external/libchrome/base/containers/
flat_map.h 117 // pair<iterator, bool> try_emplace(K&&, Args&&...);
118 // iterator try_emplace(const_iterator hint, K&&, Args&&...);
225 try_emplace(K&& key, Args&&... args);
229 try_emplace(const_iterator hint, K&& key, Args&&... args);
330 auto flat_map<Key, Mapped, Compare>::try_emplace(K&& key, Args&&... args)
341 auto flat_map<Key, Mapped, Compare>::try_emplace(const_iterator hint,
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/CodeView/
GlobalTypeTableBuilder.h 75 auto Result = HashedRecords.try_emplace(Hash, nextTypeIndex());
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-pdbutil/
DumpOutputStyle.h 54 auto Iter = Individual.try_emplace(Kind, 1, RecordSize);
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/
JSON.h 116 std::pair<iterator, bool> try_emplace(const ObjectKey &K, Ts &&... Args) { function in class:llvm::json::Object
117 return M.try_emplace(K, std::forward<Ts>(Args)...);
120 std::pair<iterator, bool> try_emplace(ObjectKey &&K, Ts &&... Args) { function in class:llvm::json::Object
121 return M.try_emplace(std::move(K), std::forward<Ts>(Args)...);
547 auto R = try_emplace(P.K, nullptr);
553 return try_emplace(std::move(E.K), std::move(E.V));
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ExecutionEngine/Orc/
SymbolStringPool.h 126 std::tie(I, Added) = Pool.try_emplace(S, 0);
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/CodeView/
MergingTypeTableBuilder.cpp 101 auto Result = HashedRecords.try_emplace(WeakHash, nextTypeIndex());
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/PDB/Native/
NamedStreamMap.cpp 113 Result.try_emplace(Stream, Entry.second);
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/
DenseSet.h 189 return TheMap.try_emplace(V, Empty);
194 return TheMap.try_emplace(std::move(V), Empty);
StringMap.h 356 ValueTy &operator[](StringRef Key) { return try_emplace(Key).first->second; }
387 return try_emplace(KV.first, std::move(KV.second));
395 std::pair<iterator, bool> try_emplace(StringRef Key, ArgsTy &&... Args) { function in class:llvm::StringMap
DenseMap.h 192 return try_emplace(KV.first, KV.second);
199 return try_emplace(std::move(KV.first), std::move(KV.second));
206 std::pair<iterator, bool> try_emplace(KeyT &&Key, Ts &&... Args) { function in class:llvm::DenseMapBase
225 std::pair<iterator, bool> try_emplace(const KeyT &Key, Ts &&... Args) { function in class:llvm::DenseMapBase
    [all...]
  /external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
StringMap.h 338 ValueTy &operator[](StringRef Key) { return try_emplace(Key).first->second; }
369 return try_emplace(KV.first, std::move(KV.second));
377 std::pair<iterator, bool> try_emplace(StringRef Key, ArgsTy &&... Args) { function in class:llvm::StringMap
DenseMap.h 173 return try_emplace(KV.first, KV.second);
180 return try_emplace(std::move(KV.first), std::move(KV.second));
187 std::pair<iterator, bool> try_emplace(KeyT &&Key, Ts &&... Args) { function in class:llvm::DenseMapBase
204 std::pair<iterator, bool> try_emplace(const KeyT &Key, Ts &&... Args) { function in class:llvm::DenseMapBase
    [all...]
  /frameworks/av/media/codec2/sfplugin/
PipelineWatcher.cpp 62 (void)mFramesInPipeline.try_emplace(frameIndex, std::move(buffers), queuedAt);
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AMDGPU/
SIMachineFunctionInfo.h 618 auto PSV = BufferPSVs.try_emplace(
627 auto PSV = ImagePSVs.try_emplace(
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/
AccelTable.h 214 auto Iter = Entries.try_emplace(Name.getString(), Name, Hash).first;
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/dsymutil/
BinaryHolder.cpp 208 MemberCache.try_emplace(Key, std::move(OE));
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
JSON.cpp 19 return try_emplace(K, nullptr).first->getSecond();
22 return try_emplace(std::move(K), nullptr).first->getSecond();
  /external/swiftshader/third_party/llvm-7.0/llvm/unittests/ADT/
DenseMapTest.cpp 576 auto Try1 = Map.try_emplace(0, new int(1));
578 auto Try2 = Map.try_emplace(0, std::move(P));

Completed in 7814 milliseconds

1 2