| /freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
| H A D | MapVector.h | 34 typename MapType = DenseMap<KeyT, unsigned>, 37 MapType Map; 41 std::is_integral_v<typename MapType::mapped_type>, 102 std::pair<typename MapType::iterator, bool> Result = Map.try_emplace(Key); 115 typename MapType::const_iterator Pos = Map.find(Key); in lookup() 170 typename MapType::const_iterator Pos = Map.find(Key); in find() 176 typename MapType::const_iterator Pos = Map.find(Key); in find() 183 typename MapType::iterator Pos = Map.find(Vector.back().first); in pop_back() 229 template <typename KeyT, typename ValueT, typename MapType, typename VectorType> 231 void MapVector<KeyT, ValueT, MapType, VectorType>::remove_if(Function Pred) { in remove_if()
|
| /freebsd/contrib/llvm-project/llvm/utils/TableGen/Common/ |
| H A D | InfoByHwMode.h | 88 typedef std::map<unsigned, InfoT> MapType; typedef 89 typedef typename MapType::value_type PairType; 90 typedef typename MapType::iterator iterator; 91 typedef typename MapType::const_iterator const_iterator; 94 InfoByHwMode(const MapType &M) : Map(M) {} in InfoByHwMode() 151 MapType Map;
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/DataFormatters/ |
| H A D | TypeCategoryMap.h | 32 typedef std::map<KeyType, lldb::TypeCategoryImplSP> MapType; typedef 33 typedef MapType::iterator MapIterator; 95 MapType m_map;
|
| H A D | FormattersContainer.h | 144 typedef std::vector<std::pair<TypeMatcher, ValueSP>> MapType; typedef 266 MapType m_map;
|
| H A D | FormatManager.h | 38 typedef TypeCategoryMap::MapType::iterator CategoryMapIterator;
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/ |
| H A D | PassRegistry.h | 42 using MapType = DenseMap<const void *, const PassInfo *>; variable 43 MapType PassInfoMap;
|
| /freebsd/contrib/llvm-project/clang/lib/Serialization/ |
| H A D | ModuleFile.cpp | 38 using MapType = ContinuousRangeMap<Key, Offset, InitialCapacity>; in dumpLocalRemap() typedef 41 for (typename MapType::const_iterator I = Map.begin(), IEnd = Map.end(); in dumpLocalRemap()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
| H A D | RDFRegisters.h | 237 using MapType = std::map<RegisterId, LaneBitmask>; member 240 MapType Masks; 241 MapType::iterator Pos;
|
| /freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/ |
| H A D | MinidumpYAML.cpp | 25 template <typename MapType, typename EndianType> 28 MapType Mapped = static_cast<typename EndianType::value_type>(Val); in mapRequiredAs() 35 template <typename MapType, typename EndianType> 37 MapType Default) { in mapOptionalAs() 38 MapType Mapped = static_cast<typename EndianType::value_type>(Val); in mapOptionalAs()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/LogicalView/Core/ |
| H A D | LVSupport.h | 156 template <typename MapType, typename KeyType, typename ValueType> 157 void addItem(MapType *Map, KeyType Key, ValueType Value) { in addItem()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Frontend/OpenMP/ |
| H A D | ConstructDecompositionT.h | 704 using MapType = in applyClause() local 705 typename tomp::clause::MapT<TypeTy, IdTy, ExprTy>::MapType; in applyClause() 709 {/*MapType=*/MapType::Tofrom, in applyClause() 966 using MapType = in applyClause() local 967 typename tomp::clause::MapT<TypeTy, IdTy, ExprTy>::MapType; in applyClause() 971 {/*MapType=*/MapType::Tofrom, /*MapTypeModifier=*/std::nullopt, in applyClause()
|
| H A D | ClauseT.h | 782 ENUM(MapType, To, From, Tofrom, Alloc, Release, Delete); 790 std::tuple<OPT(MapType), OPT(MapTypeModifiers), OPT(Mappers), OPT(Iterator),
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/Process/minidump/ |
| H A D | MinidumpParser.cpp | 367 typedef llvm::StringMap<size_t> MapType; in GetFilteredModuleList() typedef 368 MapType module_name_to_filtered_index; in GetFilteredModuleList() 380 MapType::iterator iter; in GetFilteredModuleList()
|
| /freebsd/contrib/llvm-project/clang/lib/Analysis/ |
| H A D | Consumed.cpp | 453 using MapType = llvm::DenseMap<const Stmt *, PropagationInfo>; typedef in clang::consumed::ConsumedStmtVisitor 455 using InfoEntry = MapType::iterator; 456 using ConstInfoEntry = MapType::const_iterator; 460 MapType PropagationMap; 912 MapType::iterator VIT = findInfo(Var->getInit()->IgnoreImplicit()); in VisitVarDecl()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/ |
| H A D | HexagonISelDAGToDAGHVX.cpp | 106 using MapType = std::map<Node, ColorKind>; typedef 115 const MapType &colors() const { in colors() 129 MapType Colors; 477 const Coloring::MapType &M = G.colors(); in route() 544 const Coloring::MapType &M = G.colors(); in route() 2737 using MapType = std::unordered_map<SDValue, unsigned>; in ppHvxShuffleOfShuffle() typedef 2741 const MapType &OpMap) -> int { in ppHvxShuffleOfShuffle() 2766 auto fold3 = [&](SDValue TopShuff, SDValue Inp, MapType &&OpMap) -> SDValue { in ppHvxShuffleOfShuffle() 2850 MapType OpMap = { in ppHvxShuffleOfShuffle()
|
| H A D | HexagonConstPropagation.cpp | 203 MapType::const_iterator F = Map.find(R); in has() 210 MapType::const_iterator F = Map.find(R); in get() 222 using MapType = std::map<Register, LatticeCell>; typedef in __anonfe19b4d40111::MachineConstPropagator::CellMap 224 MapType Map; 231 using const_iterator = MapType::const_iterator;
|
| /freebsd/contrib/llvm-project/lldb/source/DataFormatters/ |
| H A D | TypeCategoryMap.cpp | 109 MapType::iterator iter = m_map.begin(), end = m_map.end(); in EnableAllCategories()
|
| /freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGOpenMPRuntime.cpp | 1513 std::optional<OMPDeclareTargetDeclAttr::MapTypeTy> MapType = in convertCaptureClause() local 1515 if (!MapType) in convertCaptureClause() 1517 switch ((int)*MapType) { // Avoid -Wcovered-switch-default in convertCaptureClause() 6848 OpenMPMapClauseKind MapType = OMPC_MAP_unknown; member 6860 OpenMPMapClauseKind MapType, in MapInfo() 6866 : Components(Components), MapType(MapType), MapModifiers(MapModifiers), in MapInfo() 6996 OpenMPMapClauseKind MapType, ArrayRef<OpenMPMapModifierKind> MapModifiers, in getMapTypeBits() argument 7002 switch (MapType) { in getMapTypeBits() 7089 OpenMPMapClauseKind MapType, ArrayRef<OpenMPMapModifierKind> MapModifiers, in generateInfoForComponentList() argument 7570 getMapTypeBits(MapType, MapModifiers, MotionModifiers, IsImplicit, [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/ |
| H A D | DWARFVerifier.cpp | 486 using MapType = IntervalMap<uint64_t, uint64_t>; in verifyIndex() typedef 487 MapType::Allocator Alloc; in verifyIndex() 488 std::vector<std::unique_ptr<MapType>> Sections(Index.getColumnKinds().size()); in verifyIndex() 502 Sections[Col] = std::make_unique<MapType>(Alloc); in verifyIndex()
|
| /freebsd/contrib/llvm-project/clang/include/clang/Format/ |
| H A D | Format.h | 5523 typedef std::map<LanguageKind, FormatStyle> MapType; typedef 5538 std::shared_ptr<MapType> Styles;
|
| /freebsd/contrib/llvm-project/clang/lib/Parse/ |
| H A D | ParseOpenMP.cpp | 4135 unsigned MapType = in isMapType() local 4137 if (MapType == OMPC_MAP_to || MapType == OMPC_MAP_from || in isMapType() 4138 MapType == OMPC_MAP_tofrom || MapType == OMPC_MAP_alloc || in isMapType() 4139 MapType == OMPC_MAP_delete || MapType == OMPC_MAP_release) in isMapType() 4140 return static_cast<OpenMPMapClauseKind>(MapType); in isMapType()
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ |
| H A D | ClangASTImporter.cpp | 551 typedef llvm::DenseMap<const D *, O> MapType; in ImportOffsetMap() typedef 552 typedef typename MapType::value_type PairType; in ImportOffsetMap()
|
| /freebsd/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | OpenMPClause.h | 6456 OpenMPMapClauseKind MapType = OMPC_MAP_unknown; variable 6491 OpenMPMapClauseKind MapType, bool MapTypeIsImplicit, in OMPMapClause() argument 6497 MapType(MapType), MapTypeIsImplicit(MapTypeIsImplicit), MapLoc(MapLoc) { in OMPMapClause() 6541 void setMapType(OpenMPMapClauseKind T) { MapType = T; } in setMapType() 6606 OpenMPMapClauseKind getMapType() const LLVM_READONLY { return MapType; } in getMapType() 6662 if (MapType == OMPC_MAP_to || MapType == OMPC_MAP_tofrom) in used_children()
|
| /freebsd/contrib/llvm-project/llvm/lib/Frontend/OpenMP/ |
| H A D | OMPIRBuilder.cpp | 8251 Value *Size, Value *MapType, Value *MapName, TypeSize ElementSize, in emitUDMapperArrayInitOrDel() argument 8261 MapType, in emitUDMapperArrayInitOrDel() 8272 MapType, in emitUDMapperArrayInitOrDel() 8298 MapType, in emitUDMapperArrayInitOrDel() 8356 Value *MapType = MapperFn->getArg(4); in emitUserDefinedMapper() local 8371 MapType, MapName, ElementSize, HeadBB, in emitUserDefinedMapper() 8435 MapType, in emitUserDefinedMapper() 8529 MapType, MapName, ElementSize, DoneBB, in emitUserDefinedMapper()
|
| /freebsd/contrib/llvm-project/clang/include/clang/Sema/ |
| H A D | SemaOpenMP.h | 1294 OpenMPMapClauseKind MapType, bool IsMapTypeImplicit,
|