Home
last modified time | relevance | path

Searched refs:MapType (Results 1 – 25 of 31) sorted by relevance

12

/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ADT/
H A DMapVector.h34 typename MapType = DenseMap<KeyT, unsigned>,
37 MapType Map;
41 std::is_integral_v<typename MapType::mapped_type>,
99 std::pair<KeyT, typename MapType::mapped_type> Pair = std::make_pair(Key, 0);
100 std::pair<typename MapType::iterator, bool> Result = Map.insert(Pair);
113 typename MapType::const_iterator Pos = Map.find(Key); in lookup()
168 typename MapType::const_iterator Pos = Map.find(Key); in find()
174 typename MapType::const_iterator Pos = Map.find(Key); in find()
181 typename MapType::iterator Pos = Map.find(Vector.back().first); in pop_back()
227 template <typename KeyT, typename ValueT, typename MapType, typename VectorType>
[all …]
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/DataFormatters/
H A DTypeCategoryMap.h32 typedef std::map<KeyType, lldb::TypeCategoryImplSP> MapType; typedef
33 typedef MapType::iterator MapIterator;
95 MapType m_map;
98 MapType &map() { return m_map; } in map()
H A DFormattersContainer.h144 typedef std::vector<std::pair<TypeMatcher, ValueSP>> MapType; typedef
268 MapType m_map;
H A DFormatManager.h38 typedef TypeCategoryMap::MapType::iterator CategoryMapIterator;
/freebsd-14.2/contrib/llvm-project/llvm/utils/TableGen/
H A DInfoByHwMode.h90 typedef std::map<unsigned,InfoT> MapType; typedef
91 typedef typename MapType::value_type PairType;
92 typedef typename MapType::iterator iterator;
93 typedef typename MapType::const_iterator const_iterator;
96 InfoByHwMode(const MapType &M) : Map(M) {} in InfoByHwMode()
153 MapType Map;
/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DCXXInheritance.h271 using MapType = llvm::MapVector<unsigned, ValuesT>; variable
273 MapType Overrides;
277 using iterator = MapType::iterator;
278 using const_iterator = MapType::const_iterator;
H A DOpenMPClause.h5864 OpenMPMapClauseKind MapType = OMPC_MAP_unknown; variable
5899 OpenMPMapClauseKind MapType, bool MapTypeIsImplicit, in OMPMapClause() argument
5905 MapType(MapType), MapTypeIsImplicit(MapTypeIsImplicit), MapLoc(MapLoc) { in OMPMapClause()
5949 void setMapType(OpenMPMapClauseKind T) { MapType = T; } in setMapType()
6014 OpenMPMapClauseKind getMapType() const LLVM_READONLY { return MapType; } in getMapType()
6070 if (MapType == OMPC_MAP_to || MapType == OMPC_MAP_tofrom) in used_children()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/
H A DPassRegistry.h41 using MapType = DenseMap<const void *, const PassInfo *>; variable
42 MapType PassInfoMap;
/freebsd-14.2/contrib/llvm-project/clang/lib/Serialization/
H A DModuleFile.cpp38 using MapType = ContinuousRangeMap<Key, Offset, InitialCapacity>; in dumpLocalRemap() typedef
41 for (typename MapType::const_iterator I = Map.begin(), IEnd = Map.end(); in dumpLocalRemap()
H A DASTReaderDecl.cpp4727 auto MapType = Record.readEnum<OMPDeclareTargetDeclAttr::MapTypeTy>(); in UpdateDecl() local
4733 Reader.getContext(), MapType, DevType, IndirectE, Indirect, Level, in UpdateDecl()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DRDFRegisters.h239 using MapType = std::map<RegisterId, LaneBitmask>; member
242 MapType Masks;
243 MapType::iterator Pos;
/freebsd-14.2/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DMinidumpYAML.cpp26 template <typename MapType, typename EndianType>
29 MapType Mapped = static_cast<typename EndianType::value_type>(Val); in mapRequiredAs()
36 template <typename MapType, typename EndianType>
38 MapType Default) { in mapOptionalAs()
39 MapType Mapped = static_cast<typename EndianType::value_type>(Val); in mapOptionalAs()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/DebugInfo/LogicalView/Core/
H A DLVSupport.h136 template <typename MapType, typename KeyType, typename ValueType>
137 void addItem(MapType *Map, KeyType Key, ValueType Value) { in addItem()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/Process/minidump/
H A DMinidumpParser.cpp363 typedef llvm::StringMap<size_t> MapType; in GetFilteredModuleList() typedef
364 MapType module_name_to_filtered_index; in GetFilteredModuleList()
376 MapType::iterator iter; in GetFilteredModuleList()
/freebsd-14.2/contrib/llvm-project/clang/lib/Analysis/
H A DConsumed.cpp460 using MapType = llvm::DenseMap<const Stmt *, PropagationInfo>; typedef in clang::consumed::ConsumedStmtVisitor
462 using InfoEntry = MapType::iterator;
463 using ConstInfoEntry = MapType::const_iterator;
467 MapType PropagationMap;
919 MapType::iterator VIT = findInfo(Var->getInit()->IgnoreImplicit()); in VisitVarDecl()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonISelDAGToDAGHVX.cpp110 using MapType = std::map<Node, ColorKind>; typedef
119 const MapType &colors() const { in colors()
133 MapType Colors;
482 const Coloring::MapType &M = G.colors(); in route()
549 const Coloring::MapType &M = G.colors(); in route()
2746 using MapType = std::unordered_map<SDValue, unsigned>; in ppHvxShuffleOfShuffle() typedef
2750 const MapType &OpMap) -> int { in ppHvxShuffleOfShuffle()
2775 auto fold3 = [&](SDValue TopShuff, SDValue Inp, MapType &&OpMap) -> SDValue { in ppHvxShuffleOfShuffle()
2859 MapType OpMap = { in ppHvxShuffleOfShuffle()
H A DHexagonConstPropagation.cpp224 MapType::const_iterator F = Map.find(R); in has()
231 MapType::const_iterator F = Map.find(R); in get()
243 using MapType = std::map<Register, LatticeCell>; typedef in __anon4fa39c0a0111::MachineConstPropagator::CellMap
245 MapType Map;
252 using const_iterator = MapType::const_iterator;
/freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/
H A DCGOpenMPRuntime.cpp1523 if (!MapType) in convertCaptureClause()
6595 : Components(Components), MapType(MapType), MapModifiers(MapModifiers), in MapInfo()
6731 switch (MapType) { in getMapTypeBits()
8511 MapType = std::get<1>(LHS); in generateInfoForCapture()
8528 OpenMPMapClauseKind MapType; in generateInfoForCapture() local
8647 OpenMPMapClauseKind MapType; in generateInfoForCapture() local
8666 OpenMPMapClauseKind MapType; in generateInfoForCapture() local
9165 MapType, in emitUserDefinedMapper()
9290 MapType, in emitUDMapperArrayInitOrDel()
9301 MapType, in emitUDMapperArrayInitOrDel()
[all …]
H A DCGOpenMPRuntime.h566 llvm::Value *MapType, llvm::Value *MapName,
/freebsd-14.2/contrib/llvm-project/lldb/source/DataFormatters/
H A DTypeCategoryMap.cpp97 MapType::iterator iter = m_map.begin(), end = m_map.end(); in EnableAllCategories()
/freebsd-14.2/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFVerifier.cpp423 using MapType = IntervalMap<uint64_t, uint64_t>; in verifyIndex() typedef
424 MapType::Allocator Alloc; in verifyIndex()
425 std::vector<std::unique_ptr<MapType>> Sections(Index.getColumnKinds().size()); in verifyIndex()
439 Sections[Col] = std::make_unique<MapType>(Alloc); in verifyIndex()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Format/
H A DFormat.h4933 typedef std::map<FormatStyle::LanguageKind, FormatStyle> MapType; typedef
4948 std::shared_ptr<MapType> Styles;
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangASTSource.cpp1410 typedef llvm::DenseMap<const D *, O> MapType; in ImportOffsetMap() typedef
1411 typedef typename MapType::value_type PairType; in ImportOffsetMap()
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaOpenMP.cpp22106 OpenMPMapClauseKind MapType = OMPC_MAP_unknown, in checkMappableExpressionList() argument
22311 !(MapType == OMPC_MAP_to || MapType == OMPC_MAP_alloc || in checkMappableExpressionList()
22315 << getOpenMPSimpleClauseTypeName(OMPC_map, MapType) in checkMappableExpressionList()
22326 !(MapType == OMPC_MAP_from || MapType == OMPC_MAP_release || in checkMappableExpressionList()
22330 << getOpenMPSimpleClauseTypeName(OMPC_map, MapType) in checkMappableExpressionList()
22356 !(MapType == OMPC_MAP_to || MapType == OMPC_MAP_from || in checkMappableExpressionList()
22357 MapType == OMPC_MAP_tofrom || MapType == OMPC_MAP_alloc)) { in checkMappableExpressionList()
22360 << getOpenMPSimpleClauseTypeName(OMPC_map, MapType) in checkMappableExpressionList()
22419 OpenMPMapClauseKind MapType, bool IsMapTypeImplicit, SourceLocation MapLoc, in ActOnOpenMPMapClause() argument
22452 MapType, Modifiers, IsMapTypeImplicit, in ActOnOpenMPMapClause()
[all …]
/freebsd-14.2/contrib/llvm-project/clang/lib/Parse/
H A DParseOpenMP.cpp4254 OpenMPMapClauseKind MapType = in isMapType() local
4257 return MapType; in isMapType()

12