Home
last modified time | relevance | path

Searched refs:multimap (Results 1 – 25 of 46) sorted by relevance

12

/freebsd-11-stable/contrib/libstdc++/include/bits/
Dstl_multimap.h92 class multimap in _GLIBCXX_BEGIN_NESTED_NAMESPACE()
113 friend class multimap<_Key, _Tp, _Compare, _Alloc>; in _GLIBCXX_BEGIN_NESTED_NAMESPACE()
154 multimap() in _GLIBCXX_BEGIN_NESTED_NAMESPACE()
162 multimap(const _Compare& __comp, in _GLIBCXX_BEGIN_NESTED_NAMESPACE()
173 multimap(const multimap& __x) in _GLIBCXX_BEGIN_NESTED_NAMESPACE()
186 multimap(_InputIterator __first, _InputIterator __last) in _GLIBCXX_BEGIN_NESTED_NAMESPACE()
202 multimap(_InputIterator __first, _InputIterator __last, in _GLIBCXX_BEGIN_NESTED_NAMESPACE()
224 multimap& in _GLIBCXX_BEGIN_NESTED_NAMESPACE()
225 operator=(const multimap& __x) in _GLIBCXX_BEGIN_NESTED_NAMESPACE()
435 swap(multimap& __x) in _GLIBCXX_BEGIN_NESTED_NAMESPACE()
[all …]
/freebsd-11-stable/contrib/libstdc++/include/debug/
Dmultimap.h48 class multimap
49 : public _GLIBCXX_STD::multimap<_Key, _Tp, _Compare, _Allocator>,
50 public __gnu_debug::_Safe_sequence<multimap<_Key,_Tp,_Compare,_Allocator> >
52 typedef _GLIBCXX_STD::multimap<_Key, _Tp, _Compare, _Allocator> _Base;
53 typedef __gnu_debug::_Safe_sequence<multimap> _Safe_base;
65 typedef __gnu_debug::_Safe_iterator<typename _Base::iterator, multimap>
68 multimap> const_iterator;
78 explicit multimap(const _Compare& __comp = _Compare(),
83 multimap(_InputIterator __first, _InputIterator __last,
89 multimap(const multimap<_Key,_Tp,_Compare,_Allocator>& __x) in multimap() function
[all …]
Dmap1 // Debugging map/multimap implementation -*- C++ -*-
40 #include <debug/multimap.h>
/freebsd-11-stable/contrib/llvm-project/libcxx/include/
HDmap174 void merge(multimap<Key, T, C2, Allocator>& source); // C++17
176 void merge(multimap<Key, T, C2, Allocator>&& source); // C++17
262 class multimap
287 friend class multimap;
296 multimap()
301 explicit multimap(const key_compare& comp);
302 multimap(const key_compare& comp, const allocator_type& a);
304 multimap(InputIterator first, InputIterator last, const key_compare& comp);
306 multimap(InputIterator first, InputIterator last, const key_compare& comp,
308 multimap(const multimap& m);
[all …]
/freebsd-11-stable/contrib/llvm-project/libcxx/include/experimental/
HDmap26 using multimap = std::multimap<Key, T, Compare,
51 using multimap = _VSTD::multimap<_Key, _Value, _Compare,
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
HDAggressiveAntiDepBreaker.h69 std::multimap<unsigned, RegisterReference> RegRefs;
89 std::multimap<unsigned, RegisterReference>& GetRegRefs() { return RegRefs; } in GetRegRefs()
100 std::multimap<unsigned,
HDCriticalAntiDepBreaker.h56 std::multimap<unsigned, MachineOperand *> RegRefs;
59 std::multimap<unsigned, MachineOperand *>::const_iterator;
HDAggressiveAntiDepBreaker.cpp86 std::multimap<unsigned, AggressiveAntiDepState::RegisterReference> *RegRefs) in GetGroupRegs()
307 std::multimap<unsigned, AggressiveAntiDepState::RegisterReference>& in HandleLastUse()
357 std::multimap<unsigned, AggressiveAntiDepState::RegisterReference>& in PrescanInstruction()
446 std::multimap<unsigned, AggressiveAntiDepState::RegisterReference>& in ScanInstruction()
556 std::multimap<unsigned, AggressiveAntiDepState::RegisterReference>& in FindSuitableFreeRegisters()
761 std::multimap<unsigned, AggressiveAntiDepState::RegisterReference>& in BreakAntiDependencies()
HDCriticalAntiDepBreaker.cpp651 std::pair<std::multimap<unsigned, MachineOperand *>::iterator, in BreakAntiDependencies()
652 std::multimap<unsigned, MachineOperand *>::iterator> in BreakAntiDependencies()
665 for (std::multimap<unsigned, MachineOperand *>::iterator in BreakAntiDependencies()
/freebsd-11-stable/contrib/libstdc++/include/backward/
Dmultimap.h63 using std::multimap;
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Driver/
HDCompilation.h60 std::multimap<Action::OffloadKind, const ToolChain *>
143 const std::multimap<Action::OffloadKind,
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/
HDTypeMap.h43 typedef std::multimap<lldb::user_id_t, lldb::TypeSP> collection;
/freebsd-11-stable/contrib/groff/font/devdvi/
HDSA48 multimap 1165088,576570 2 0050
/freebsd-11-stable/contrib/groff/font/devdvi/generate/
HDmsam.map43 40 multimap
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/
HDDeadArgumentElimination.h91 using UseMap = std::multimap<RetOrArg, RetOrArg>;
/freebsd-11-stable/contrib/llvm-project/clang/utils/TableGen/
HDASTTableGen.cpp94 using ChildMap = std::multimap<ASTNode, ASTNode>;
HDClangASTNodesEmitter.cpp33 typedef std::multimap<ASTNode, ASTNode> ChildMap;
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/
HDListener.h110 typedef std::multimap<Broadcaster::BroadcasterImplWP, BroadcasterInfo,
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/
HDMemory.h134 typedef std::multimap<uint32_t, AllocatedBlockSP> PermissionsToBlockMap;
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ObjectContainer/BSD-Archive/
HDObjectContainerBSDArchive.h111 typedef std::multimap<lldb_private::FileSpec, shared_ptr> Map;
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
HDDWARFASTParserClang.h79 typedef std::multimap<const clang::DeclContext *, const DWARFDIE>
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/
HDObjCLanguageRuntime.h378 typedef std::multimap<uint32_t, ObjCISA> HashToISAMap;
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/
HDFastISelEmitter.cpp378 typedef std::multimap<int, InstructionMemo> PredMap;
388 typedef std::multimap<std::string, bool> PredCheckMap;
/freebsd-11-stable/gnu/lib/libstdc++/
DMakefile135 iterator.h list.h map.h multimap.h new.h multiset.h pair.h \
186 list macros.h map map.h multimap.h multiset.h safe_base.h \
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Frontend/
HDCheckerRegistry.cpp573 std::multimap<StringRef, const CmdLineOption &> OptionMap; in printCheckerOptionList()

12