Home
last modified time | relevance | path

Searched refs:mapped_type (Results 1 – 24 of 24) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DHashKeyMap.h58 using mapped_type = ValueT; variable
82 mapped_type &operator[](const original_key_type &Key) {
83 return try_emplace(Key, mapped_type()).first->second;
100 mapped_type lookup(const original_key_type &Key) const { in lookup()
104 return mapped_type(); in lookup()
H A DSampleProf.h1310 mapped_type &Create(const SampleContext &Ctx) {
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Analysis/FlowSensitive/
H A DMapLattice.h45 using mapped_type = ElementLattice; variable
58 insert(const std::pair<const key_type, mapped_type> &P) { in insert()
62 std::pair<iterator, bool> insert(std::pair<const key_type, mapped_type> &&P) { in insert()
90 mapped_type &operator[](const key_type &K) { return C[K]; }
/freebsd-14.2/contrib/llvm-project/libcxx/include/
H A D__node_handle20 using mapped_type = see below; // not present for set containers
43 mapped_type& mapped() const; // not present for set containers
179 typedef typename _NodeType::__node_value_type::mapped_type mapped_type;
185 _LIBCPP_HIDE_FROM_ABI mapped_type& mapped() const {
H A Dmap125 mapped_type& operator[](const key_type& k);
126 mapped_type& operator[](key_type&& k);
128 mapped_type& at(const key_type& k);
129 const mapped_type& at(const key_type& k) const;
761 typedef _Tp mapped_type;
762 typedef pair<const key_type, mapped_type> value_type;
824 typedef _Tp mapped_type;
825 typedef pair<const key_type, mapped_type> value_type;
971 typedef _Tp mapped_type;
972 typedef pair<const key_type, mapped_type> value_type;
[all …]
H A Dunordered_map206 mapped_type& operator[](const key_type& k);
207 mapped_type& operator[](key_type&& k);
209 mapped_type& at(const key_type& k);
210 const mapped_type& at(const key_type& k) const;
835 typedef _Tp mapped_type;
836 typedef pair<const key_type, mapped_type> value_type;
900 typedef _Tp mapped_type;
901 typedef pair<const key_type, mapped_type> value_type;
1033 typedef _Tp mapped_type;
1037 typedef pair<const key_type, mapped_type> value_type;
[all …]
H A D__hash_table181 typedef _Tp mapped_type;
202 …_LIBCPP_HIDE_FROM_ABI static pair<key_type&&, mapped_type&&> __move(__node_value_type& __v) { retu…
H A D__tree531 typedef _Tp mapped_type;
561 …_LIBCPP_HIDE_FROM_ABI static pair<key_type&&, mapped_type&&> __move(__node_value_type& __v) { retu…
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/IR/
H A DValueMap.h98 using mapped_type = ValueT; variable
327 using ValueT = typename DenseMapT::mapped_type;
333 using value_type = std::pair<KeyT, typename DenseMapT::mapped_type>;
381 using ValueT = typename DenseMapT::mapped_type;
387 using value_type = std::pair<KeyT, typename DenseMapT::mapped_type>;
/freebsd-14.2/contrib/llvm-project/libcxx/include/ext/
H A Dhash_map88 mapped_type& operator[](const key_type& k);
343 typedef typename _HashIterator::value_type::second_type mapped_type;
347 typedef std::pair<key_type, mapped_type> value_type;
397 typedef std::pair<key_type, mapped_type> value_type;
449 typedef _Tp mapped_type;
454 typedef std::pair<const key_type, mapped_type> value_type;
459 typedef std::pair<key_type, mapped_type> __value_type;
549 _LIBCPP_HIDE_FROM_ABI mapped_type& operator[](const key_type& __k);
675 typedef _Tp mapped_type;
680 typedef std::pair<const key_type, mapped_type> value_type;
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ADT/
H A DMapVector.h41 std::is_integral_v<typename MapType::mapped_type>,
99 std::pair<KeyT, typename MapType::mapped_type> Pair = std::make_pair(Key, 0);
H A DStringMap.h197 using mapped_type = ValueTy; variable
H A DDenseMap.h68 using mapped_type = ValueT; variable
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DRDFRegisters.h309 using mapped_type = typename decltype(Map)::mapped_type;
/freebsd-14.2/contrib/llvm-project/libcxx/include/__format/
H A Drange_default_formatter.h77 if constexpr (requires { typename _Rp::mapped_type; } &&
/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DParentMapContext.cpp86 getSingleDynTypedNodeFromParentMap(ParentMapPointers::mapped_type U) { in getSingleDynTypedNodeFromParentMap()
/freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/UninitializedObject/
H A DUninitializedObjectChecker.cpp264 UninitFieldMap::mapped_type NoteMsgBuf; in addFieldToUninits()
/freebsd-14.2/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_dense_map.h32 using mapped_type = ValueT; variable
/freebsd-14.2/contrib/libucl/include/
H A Ducl++.h313 && std::is_constructible<Ucl, typename M::mapped_type>::value,
/freebsd-14.2/contrib/llvm-project/clang/lib/CrossTU/
H A DCrossTranslationUnit.cpp598 const InvocationListTy::mapped_type &InvocationCommand = Invocation->second; in loadFromSource()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Support/
H A DJSON.h104 using mapped_type = Value; variable
/freebsd-14.2/contrib/llvm-project/clang/utils/TableGen/
H A DClangDiagnosticsEmitter.cpp327 GMap::mapped_type &V = GroupCount[Group]; in groupInPedantic()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DNewGVN.cpp2056 for (const typename Map::mapped_type::value_type Mapped : Result->second) in touchAndErase()
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaCodeComplete.cpp8911 KnownMethodsMap::mapped_type(M, InOriginalClass); in FindImplementableMethods()