| /freebsd-12.1/contrib/llvm/include/llvm/ADT/ |
| H A D | MapVector.h | 36 typename MapType = DenseMap<KeyT, unsigned>, 39 MapType Map; 43 std::is_integral<typename MapType::mapped_type>::value, 101 std::pair<typename MapType::iterator, bool> Result = Map.insert(Pair); 114 typename MapType::const_iterator Pos = Map.find(Key); in lookup() 120 std::pair<typename MapType::iterator, bool> Result = Map.insert(Pair); in insert() 133 std::pair<typename MapType::iterator, bool> Result = Map.insert(Pair); in insert() 144 typename MapType::const_iterator Pos = Map.find(Key); in count() 149 typename MapType::const_iterator Pos = Map.find(Key); in find() 155 typename MapType::const_iterator Pos = Map.find(Key); in find() [all …]
|
| /freebsd-12.1/contrib/llvm/utils/TableGen/ |
| H A D | InfoByHwMode.h | 63 typedef std::map<unsigned,InfoT> MapType; typedef 64 typedef typename MapType::value_type PairType; 65 typedef typename MapType::iterator iterator; 66 typedef typename MapType::const_iterator const_iterator; 69 InfoByHwMode(const MapType &M) : Map(M) {} in InfoByHwMode() 118 MapType Map;
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/DataFormatters/ |
| H A D | FormattersContainer.h | 69 typedef std::map<KeyType, ValueSP> MapType; typedef 70 typedef typename MapType::iterator MapIterator; 156 MapType m_map; 160 MapType &map() { return m_map; } in map() 173 typedef typename BackEndType::MapType MapType; typedef 174 typedef typename MapType::iterator MapIterator; 175 typedef typename MapType::key_type MapKeyType; 176 typedef typename MapType::mapped_type MapValueType;
|
| H A D | TypeCategoryMap.h | 34 typedef std::map<KeyType, ValueSP> MapType; typedef 35 typedef MapType::iterator MapIterator; 107 MapType m_map; 110 MapType &map() { return m_map; } in map()
|
| H A D | TypeCategory.h | 33 typedef typename ExactMatchContainer::MapType ExactMatchMap; 34 typedef typename RegexMatchContainer::MapType RegexMatchMap;
|
| H A D | FormatManager.h | 39 typedef TypeCategoryMap::MapType::iterator CategoryMapIterator;
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/ |
| H A D | CXXInheritance.h | 283 using MapType = llvm::MapVector<unsigned, ValuesT>; variable 285 MapType Overrides; 289 using iterator = MapType::iterator; 290 using const_iterator = MapType::const_iterator;
|
| H A D | OpenMPClause.h | 4079 OpenMPMapClauseKind MapType = OMPC_MAP_unknown; variable 4108 OpenMPMapClauseKind MapType, bool MapTypeIsImplicit, in OMPMapClause() argument 4116 MapType(MapType), MapTypeIsImplicit(MapTypeIsImplicit), in OMPMapClause() 4164 void setMapType(OpenMPMapClauseKind T) { MapType = T; } in setMapType() 4215 OpenMPMapClauseKind getMapType() const LLVM_READONLY { return MapType; } in getMapType()
|
| /freebsd-12.1/contrib/llvm/include/llvm/ |
| H A D | PassRegistry.h | 43 using MapType = DenseMap<const void *, const PassInfo *>; variable 44 MapType PassInfoMap;
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Serialization/ |
| H A D | Module.cpp | 39 using MapType = ContinuousRangeMap<Key, Offset, InitialCapacity>; in dumpLocalRemap() typedef 42 for (typename MapType::const_iterator I = Map.begin(), IEnd = Map.end(); in dumpLocalRemap()
|
| /freebsd-12.1/contrib/llvm/lib/Target/Hexagon/ |
| H A D | RDFRegisters.h | 186 using MapType = std::map<RegisterId, LaneBitmask>; member 189 MapType Masks; 190 MapType::iterator Pos;
|
| H A D | HexagonISelDAGToDAGHVX.cpp | 104 using MapType = std::map<Node, ColorKind>; typedef 113 const MapType &colors() const { in colors() 127 MapType Colors; 478 const Coloring::MapType &M = G.colors(); in route() 545 const Coloring::MapType &M = G.colors(); in route()
|
| H A D | HexagonConstPropagation.cpp | 211 MapType::const_iterator F = Map.find(R); in has() 218 MapType::const_iterator F = Map.find(R); in get() 232 using MapType = std::map<unsigned, LatticeCell>; typedef in __anonc5c9f0b90111::MachineConstPropagator::CellMap 234 MapType Map; 241 using const_iterator = MapType::const_iterator;
|
| /freebsd-12.1/contrib/llvm/lib/IR/ |
| H A D | PassRegistry.cpp | 44 MapType::const_iterator I = PassInfoMap.find(TI); in getPassInfo()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Parse/ |
| H A D | ParseOpenMP.cpp | 1830 OpenMPMapClauseKind MapType = static_cast<OpenMPMapClauseKind>( in isMapType() local 1832 return MapType; in isMapType() 1844 Data.MapType = isMapType(P); in parseMapType() 1845 if (Data.MapType == OMPC_MAP_unknown) in parseMapType() 1948 if (Data.MapType == OMPC_MAP_unknown) { in ParseOpenMPVarList() 1949 Data.MapType = OMPC_MAP_tofrom; in ParseOpenMPVarList() 1961 (Kind == OMPC_map && Data.MapType != OMPC_MAP_unknown) || in ParseOpenMPVarList() 2077 Data.MapTypeModifiers, Data.MapTypeModifiersLoc, Data.MapType, in ParseOpenMPVarListClause()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Analysis/ |
| H A D | Consumed.cpp | 461 using MapType = llvm::DenseMap<const Stmt *, PropagationInfo>; typedef in clang::consumed::ConsumedStmtVisitor 463 using InfoEntry = MapType::iterator; 464 using ConstInfoEntry = MapType::const_iterator; 468 MapType PropagationMap; 920 MapType::iterator VIT = findInfo(Var->getInit()->IgnoreImplicit()); in VisitVarDecl()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/minidump/ |
| H A D | MinidumpParser.cpp | 283 typedef llvm::StringMap<size_t> MapType; in GetFilteredModuleList() typedef 284 MapType module_name_to_filtered_index; in GetFilteredModuleList() 299 MapType::iterator iter; in GetFilteredModuleList()
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/Format/ |
| H A D | Format.h | 1823 typedef std::map<FormatStyle::LanguageKind, FormatStyle> MapType; typedef 1838 std::shared_ptr<MapType> Styles;
|
| /freebsd-12.1/contrib/llvm/lib/Analysis/ |
| H A D | CFLAndersAliasAnalysis.cpp | 225 using MapType = DenseMap<InstantiatedValue, AliasAttrs>; typedef in __anonabd3a4a80111::AliasAttrMap 227 MapType AttrMap; 230 using const_iterator = MapType::const_iterator;
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/ |
| H A D | CGOpenMPRuntime.cpp | 6659 OpenMPMapClauseKind MapType = OMPC_MAP_unknown; member 6667 OpenMPMapClauseKind MapType, in MapInfo() 6670 : Components(Components), MapType(MapType), MapModifiers(MapModifiers), in MapInfo() 6752 switch (MapType) { in getMapTypeBits() 6829 OpenMPMapClauseKind MapType, in generateInfoForComponentList() argument 7147 getMapTypeBits(MapType, MapModifiers, IsImplicit, in generateInfoForComponentList() 7197 MapType, MapModifiers, IsImplicit, in generateInfoForComponentList() 7417 OpenMPMapClauseKind MapType, in generateAllInfo() 7710 OpenMPMapClauseKind MapType; in generateInfoForCapture() local 7800 OpenMPMapClauseKind MapType; in generateInfoForCapture() local [all …]
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/DataFormatters/ |
| H A D | TypeCategoryMap.cpp | 99 MapType::iterator iter = m_map.begin(), end = m_map.end(); in EnableAllCategories()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ |
| H A D | ClangASTSource.cpp | 1641 typedef llvm::DenseMap<const D *, O> MapType; in ImportOffsetMap() typedef 1642 typedef typename MapType::value_type PairType; in ImportOffsetMap()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/ |
| H A D | SemaOpenMP.cpp | 9621 OpenMPMapClauseKind MapType, bool IsMapTypeImplicit, in ActOnOpenMPVarListClause() argument 9673 Res = ActOnOpenMPMapClause(MapTypeModifiers, MapTypeModifiersLoc, MapType, in ActOnOpenMPVarListClause() 12907 OpenMPMapClauseKind MapType = OMPC_MAP_unknown, in checkMappableExpressionList() argument 13039 !(MapType == OMPC_MAP_to || MapType == OMPC_MAP_alloc)) { in checkMappableExpressionList() 13042 << getOpenMPSimpleClauseTypeName(OMPC_map, MapType) in checkMappableExpressionList() 13052 !(MapType == OMPC_MAP_from || MapType == OMPC_MAP_release || in checkMappableExpressionList() 13053 MapType == OMPC_MAP_delete)) { in checkMappableExpressionList() 13056 << getOpenMPSimpleClauseTypeName(OMPC_map, MapType) in checkMappableExpressionList() 13099 OpenMPMapClauseKind MapType, bool IsMapTypeImplicit, in ActOnOpenMPMapClause() argument 13105 MapType, IsMapTypeImplicit); in ActOnOpenMPMapClause() [all …]
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/Parse/ |
| H A D | Parser.h | 2884 OpenMPMapClauseKind MapType = OMPC_MAP_unknown; member
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Format/ |
| H A D | Format.cpp | 1059 Styles = std::make_shared<MapType>(); in Add()
|