Searched refs:try_emplace (Results 1 - 25 of 82) sorted by relevance

1234

/freebsd-12-stable/contrib/llvm-project/llvm/utils/TableGen/GlobalISel/
H A DCodeExpansions.h27 bool Inserted = Expansions.try_emplace(Name, Expansion).second;
H A DGIMatchDagOperands.cpp29 OperandsByName.try_emplace(Operands.back().getName(), Operands.size() - 1);
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/
H A DGISelWorkList.h70 if (!WorklistMap.try_emplace(Worklist[i], i).second)
80 if (WorklistMap.try_emplace(I, Worklist.size()).second)
/freebsd-12-stable/contrib/llvm-project/lldb/source/Utility/
H A DUserIDResolver.cpp21 auto iter_bool = cache.try_emplace(id, llvm::None);
H A DEnvironment.cpp46 try_emplace(first->first(), first->second);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsRegisterBankInfo.h135 Types.try_emplace(MI, InstType::NotDetermined);
136 WaitingQueues.try_emplace(MI);
/freebsd-12-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DOptRSTEmitter.cpp38 OptionsByGroup.try_emplace(R.getValueAsString("Name"));
/freebsd-12-stable/contrib/llvm-project/lldb/include/lldb/Utility/
H A DEnvironment.h55 using Base::try_emplace;
/freebsd-12-stable/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DMergingTypeTableBuilder.cpp98 auto Result = HashedRecords.try_emplace(WeakHash, nextTypeIndex());
/freebsd-12-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DNamedStreamMap.cpp112 Result.try_emplace(Stream, Entry.second);
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFContext.cpp133 section_map.try_emplace(
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DGlobalTypeTableBuilder.h79 auto Result = HashedRecords.try_emplace(Hash, nextTypeIndex());
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Tooling/DependencyScanning/
H A DDependencyScanningFilesystem.h161 bool IsInserted = Cache.try_emplace(Filename, Entry).second;
/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DDumpOutputStyle.h56 auto Iter = Individual.try_emplace(Kind, 1, RecordSize);
/freebsd-12-stable/contrib/llvm-project/clang/lib/AST/
H A DComparisonCategories.cpp118 return &Data.try_emplace((char)Kind, Ctx, RD, Kind).first->second;
152 return &Data.try_emplace((char)Kind, Ctx, RD, Kind).first->second;
/freebsd-12-stable/contrib/llvm-project/lldb/source/Host/posix/
H A DProcessLauncherPosixFork.cpp45 env.try_emplace("PATH", "/system/bin");
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Object/
H A DMinidump.cpp149 if (!StreamMap.try_emplace(Type, StreamDescriptor.index()).second)
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DStringMap.h378 ValueTy &operator[](StringRef Key) { return try_emplace(Key).first->second; }
414 return try_emplace(KV.first, std::move(KV.second));
418 /// exists. The return type is the same as try_emplace.
421 auto Ret = try_emplace(Key, std::forward<V>(Val));
432 std::pair<iterator, bool> try_emplace(StringRef Key, ArgsTy &&... Args) { function in class:llvm::StringMap
H A DDenseSet.h189 return TheMap.try_emplace(V, Empty);
194 return TheMap.try_emplace(std::move(V), Empty);
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/
H A DSymbolCache.h120 auto Result = FieldListMembersToSymbolId.try_emplace(Key, SymId);
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DSymbolStringPool.h154 std::tie(I, Added) = Pool.try_emplace(S, 0);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/TextAPI/MachO/
H A DInterfaceFile.cpp114 auto result = Symbols.try_emplace(SymbolsMapKey{Kind, Name}, nullptr);
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DJSON.h118 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)...);
552 auto R = try_emplace(P.K, nullptr);
558 return try_emplace(std::move(E.K), std::move(E.V));
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DDemandedBits.cpp331 if (AliveBits.try_emplace(&I, T->getScalarSizeInBits(), 0).second)
407 auto Res = AliveBits.try_emplace(I);
/freebsd-12-stable/contrib/llvm-project/lld/ELF/
H A DCallGraphSort.cpp108 auto res = secToCluster.try_emplace(isec, clusters.size());

Completed in 338 milliseconds

1234