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

12

/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/
H A DPassRegistry.h42 using MapType = DenseMap<const void *, const PassInfo *>;
43 MapType PassInfoMap;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DMapVector.h35 typename MapType = DenseMap<KeyT, unsigned>,
38 MapType Map;
42 std::is_integral<typename MapType::mapped_type>::value,
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);
118 std::pair<KeyT, typename MapType::mapped_type> Pair = std::make_pair(KV.first, 0);
119 std::pair<typename MapType::iterator, bool> Result = Map.insert(Pair);
131 std::pair<KeyT, typename MapType::mapped_type> Pair = std::make_pair(KV.first, 0);
132 std::pair<typename MapType
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/DataFormatters/
H A DTypeCategoryMap.h33 typedef std::map<KeyType, ValueSP> MapType; typedef in class:lldb_private::TypeCategoryMap
34 typedef MapType::iterator MapIterator;
97 MapType m_map;
100 MapType &map() { return m_map; }
H A DFormattersContainer.h67 typedef std::vector<std::pair<KeyType, ValueSP>> MapType; typedef in class:lldb_private::FormatMap
68 typedef typename MapType::iterator MapIterator;
145 MapType m_map;
149 MapType &map() { return m_map; }
162 typedef typename BackEndType::MapType MapType; typedef in class:lldb_private::FormattersContainer
163 typedef typename MapType::iterator MapIterator;
H A DTypeCategory.h32 typedef typename ExactMatchContainer::MapType ExactMatchMap;
33 typedef typename RegexMatchContainer::MapType RegexMatchMap;
H A DFormatManager.h38 typedef TypeCategoryMap::MapType::iterator CategoryMapIterator;
/freebsd-11-stable/contrib/llvm-project/clang/lib/Serialization/
H A DModuleFile.cpp38 using MapType = ContinuousRangeMap<Key, Offset, InitialCapacity>;
41 for (typename MapType::const_iterator I = Map.begin(), IEnd = Map.end();
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
H A DCXXInheritance.h282 using MapType = llvm::MapVector<unsigned, ValuesT>;
284 MapType Overrides;
288 using iterator = MapType::iterator;
289 using const_iterator = MapType::const_iterator;
H A DOpenMPClause.h4871 OpenMPMapClauseKind MapType = OMPC_MAP_unknown; member in class:clang::final
4891 /// \param MapType Map type.
4906 OpenMPMapClauseKind MapType, bool MapTypeIsImplicit,
4911 MapType(MapType), MapTypeIsImplicit(MapTypeIsImplicit), MapLoc(MapLoc) {
4955 void setMapType(OpenMPMapClauseKind T) { MapType = T; }
5009 OpenMPMapClauseKind getMapType() const LLVM_READONLY { return MapType; }
5065 if (MapType == OMPC_MAP_to || MapType == OMPC_MAP_tofrom)
4902 OMPMapClause(ArrayRef<OpenMPMapModifierKind> MapModifiers, ArrayRef<SourceLocation> MapModifiersLoc, NestedNameSpecifierLoc MapperQualifierLoc, DeclarationNameInfo MapperIdInfo, OpenMPMapClauseKind MapType, bool MapTypeIsImplicit, SourceLocation MapLoc, const OMPVarListLocTy &Locs, const OMPMappableExprListSizeTy &Sizes) argument
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DInfoByHwMode.h62 typedef std::map<unsigned,InfoT> MapType; typedef in struct:llvm::InfoByHwMode
63 typedef typename MapType::value_type PairType;
64 typedef typename MapType::iterator iterator;
65 typedef typename MapType::const_iterator const_iterator;
68 InfoByHwMode(const MapType &M) : Map(M) {}
117 MapType Map;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DRDFRegisters.h185 using MapType = std::map<RegisterId, LaneBitmask>;
188 MapType Masks;
189 MapType::iterator Pos;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/
H A DPassRegistry.cpp43 MapType::const_iterator I = PassInfoMap.find(TI);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DMinidumpYAML.cpp25 /// Yaml-map an endian-aware type EndianType as some other type MapType.
26 template <typename MapType, typename EndianType>
29 MapType Mapped = static_cast<typename EndianType::value_type>(Val);
35 /// other type MapType.
36 template <typename MapType, typename EndianType>
38 MapType Default) {
39 MapType Mapped = static_cast<typename EndianType::value_type>(Val);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/minidump/
H A DMinidumpParser.cpp280 typedef llvm::StringMap<size_t> MapType; typedef
281 MapType module_name_to_filtered_index;
293 MapType::iterator iter;
/freebsd-11-stable/contrib/llvm-project/clang/lib/Analysis/
H A DConsumed.cpp460 using MapType = llvm::DenseMap<const Stmt *, PropagationInfo>;
462 using InfoEntry = MapType::iterator;
463 using ConstInfoEntry = MapType::const_iterator;
467 MapType PropagationMap;
919 MapType::iterator VIT = findInfo(Var->getInit()->IgnoreImplicit());
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Format/
H A DFormat.h2188 typedef std::map<FormatStyle::LanguageKind, FormatStyle> MapType; typedef in struct:clang::format::FormatStyle::FormatStyleSet
2203 std::shared_ptr<MapType> Styles;
/freebsd-11-stable/contrib/llvm-project/lldb/source/DataFormatters/
H A DTypeCategoryMap.cpp98 MapType::iterator iter = m_map.begin(), end = m_map.end();
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DCFLAndersAliasAnalysis.cpp227 using MapType = DenseMap<InstantiatedValue, AliasAttrs>;
229 MapType AttrMap;
232 using const_iterator = MapType::const_iterator;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonISelDAGToDAGHVX.cpp104 using MapType = std::map<Node, ColorKind>;
113 const MapType &colors() const {
127 MapType Colors;
478 const Coloring::MapType &M = G.colors();
545 const Coloring::MapType &M = G.colors();
H A DHexagonConstPropagation.cpp223 MapType::const_iterator F = Map.find(R);
230 MapType::const_iterator F = Map.find(R);
244 using MapType = std::map<unsigned, LatticeCell>;
246 MapType Map;
253 using const_iterator = MapType::const_iterator;
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGOpenMPRuntime.cpp7111 OpenMPMapClauseKind MapType = OMPC_MAP_unknown; member in struct:__anon416::MappableExprsHandler::MapInfo
7119 OpenMPMapClauseKind MapType,
7122 : Components(Components), MapType(MapType), MapModifiers(MapModifiers),
7224 OpenMPMapClauseKind MapType, ArrayRef<OpenMPMapModifierKind> MapModifiers,
7228 switch (MapType) {
7308 OpenMPMapClauseKind MapType,
7632 getMapTypeBits(MapType, MapModifiers, IsImplicit,
7683 MapType, MapModifiers, IsImplicit,
7916 OpenMPMapClauseKind MapType,
7117 MapInfo( OMPClauseMappableExprCommon::MappableExprComponentListRef Components, OpenMPMapClauseKind MapType, ArrayRef<OpenMPMapModifierKind> MapModifiers, bool ReturnDevicePointer, bool IsImplicit) argument
7223 getMapTypeBits( OpenMPMapClauseKind MapType, ArrayRef<OpenMPMapModifierKind> MapModifiers, bool IsImplicit, bool AddPtrFlag, bool AddIsTargetParamFlag) const argument
7307 generateInfoForComponentList( OpenMPMapClauseKind MapType, ArrayRef<OpenMPMapModifierKind> MapModifiers, OMPClauseMappableExprCommon::MappableExprComponentListRef Components, MapBaseValuesArrayTy &BasePointers, MapValuesArrayTy &Pointers, MapValuesArrayTy &Sizes, MapFlagsArrayTy &Types, StructRangeInfoTy &PartialStruct, bool IsFirstComponentList, bool IsImplicit, ArrayRef<OMPClauseMappableExprCommon::MappableExprComponentListRef> OverlappedElements = llvm::None) const argument
8301 OpenMPMapClauseKind MapType; local
8391 OpenMPMapClauseKind MapType; local
8407 OpenMPMapClauseKind MapType; local
8876 llvm::Value *MapType = MapperCGF.EmitLoadOfScalar( local
9080 emitUDMapperArrayInitOrDel( CodeGenFunction &MapperCGF, llvm::Value *Handle, llvm::Value *Base, llvm::Value *Begin, llvm::Value *Size, llvm::Value *MapType, CharUnits ElementSize, llvm::BasicBlock *ExitBB, bool IsInit) argument
[all...]
H A DCGOpenMPRuntime.h776 llvm::Value *MapType, CharUnits ElementSize,
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangASTSource.cpp1487 typedef llvm::DenseMap<const D *, O> MapType; typedef
1488 typedef typename MapType::value_type PairType;
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaOpenMP.cpp15850 // UDMapperList in MVLI. \a MapType, \a IsMapTypeImplicit, \a MapperIdScopeSpec,
15857 OpenMPMapClauseKind MapType = OMPC_MAP_unknown,
16045 !(MapType == OMPC_MAP_to || MapType == OMPC_MAP_alloc)) {
16048 << getOpenMPSimpleClauseTypeName(OMPC_map, MapType)
16058 !(MapType == OMPC_MAP_from || MapType == OMPC_MAP_release ||
16059 MapType == OMPC_MAP_delete)) {
16062 << getOpenMPSimpleClauseTypeName(OMPC_map, MapType)
16121 OpenMPMapClauseKind MapType, boo
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Parse/
H A DParseOpenMP.cpp2667 OpenMPMapClauseKind MapType = static_cast<OpenMPMapClauseKind>( local
2669 return MapType;

Completed in 603 milliseconds

12