Home
last modified time | relevance | path

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

12

/external/libmojo/mojo/public/cpp/bindings/tests/
Dmap_common_test.h43 template <template <typename...> class MapType>
61 template <template <typename...> class MapType>
64 using StringType = typename TypeTraits<MapType>::StringType;
66 using ArrayType = typename TypeTraits<MapType>::template ArrayType<T>;
70 MapType<char, char> map0;
77 MapType<char, char> map1(nullptr);
87 MapType<StringType, int> map;
98 MapType<StringType, int> map;
109 MapType<StringType, int> map;
120 MapType<StringType, ArrayType<int32_t>> map;
[all …]
/external/libcxx/test/std/containers/unord/unord.map/unord.map.swap/
Dswap_noexcept.pass.cpp125 typedef std::pair<const MoveOnly, MoveOnly> MapType; in main() typedef
133 std::equal_to<MoveOnly>, test_allocator<MapType>> C; in main()
138 std::equal_to<MoveOnly>, other_allocator<MapType>> C; in main()
154 …ordered_map<MoveOnly, MoveOnly, some_hash<MoveOnly>, some_comp <MoveOnly>, some_alloc <MapType>> C; in main()
158 …ordered_map<MoveOnly, MoveOnly, some_hash<MoveOnly>, some_comp <MoveOnly>, some_alloc2<MapType>> C; in main()
162 …ordered_map<MoveOnly, MoveOnly, some_hash<MoveOnly>, some_comp2<MoveOnly>, some_alloc <MapType>> C; in main()
166 …ordered_map<MoveOnly, MoveOnly, some_hash<MoveOnly>, some_comp2<MoveOnly>, some_alloc2<MapType>> C; in main()
170 …rdered_map<MoveOnly, MoveOnly, some_hash2<MoveOnly>, some_comp <MoveOnly>, some_alloc <MapType>> C; in main()
174 …rdered_map<MoveOnly, MoveOnly, some_hash2<MoveOnly>, some_comp <MoveOnly>, some_alloc2<MapType>> C; in main()
178 …rdered_map<MoveOnly, MoveOnly, some_hash2<MoveOnly>, some_comp2<MoveOnly>, some_alloc <MapType>> C; in main()
[all …]
/external/llvm/include/llvm/ADT/
DMapVector.h30 typename MapType = llvm::DenseMap<KeyT, unsigned>,
35 MapType Map;
77 std::pair<typename MapType::iterator, bool> Result = Map.insert(Pair);
87 typename MapType::const_iterator Pos = Map.find(Key); in lookup()
93 std::pair<typename MapType::iterator, bool> Result = Map.insert(Pair); in insert()
104 typename MapType::const_iterator Pos = Map.find(Key); in count()
109 typename MapType::const_iterator Pos = Map.find(Key); in find()
115 typename MapType::const_iterator Pos = Map.find(Key); in find()
122 typename MapType::iterator Pos = Map.find(Vector.back().first); in pop_back()
168 template <typename KeyT, typename ValueT, typename MapType, typename VectorType>
[all …]
/external/pdfium/core/fpdfapi/cmaps/
Dcmap_int.h14 enum MapType { None, Single, Range, Reverse }; enum
17 MapType m_WordMapType;
20 MapType m_DWordMapType;
/external/swiftshader/third_party/LLVM/lib/VMCore/
DPassRegistry.cpp47 typedef DenseMap<const void*, const PassInfo*> MapType; typedef
48 MapType PassInfoMap;
89 PassRegistryImpl::MapType::const_iterator I = Impl->PassInfoMap.find(TI); in getPassInfo()
125 PassRegistryImpl::MapType::iterator I = in unregisterPass()
137 for (PassRegistryImpl::MapType::const_iterator I = Impl->PassInfoMap.begin(), in enumerateWith()
/external/clang/include/clang/AST/
DCXXInheritance.h272 typedef llvm::MapVector<unsigned, ValuesT> MapType; typedef
273 MapType Overrides;
277 typedef MapType::iterator iterator;
278 typedef MapType::const_iterator const_iterator;
DOpenMPClause.h3306 OpenMPMapClauseKind MapType; variable
3324 void setMapType(OpenMPMapClauseKind T) { MapType = T; } in setMapType()
3352 OpenMPMapClauseKind MapType, bool MapTypeIsImplicit, in OMPMapClause()
3360 MapTypeModifier(MapTypeModifier), MapType(MapType), in OMPMapClause()
3376 MapTypeModifier(OMPC_MAP_unknown), MapType(OMPC_MAP_unknown), in OMPMapClause()
3419 OpenMPMapClauseKind getMapType() const LLVM_READONLY { return MapType; } in getMapType()
/external/eigen/test/
Dpermutationmatrices.cpp126 typedef Map<MatrixType, Aligned, S> MapType; in bug890() typedef
137 MapType(v1.data(),2,1,S(1,1)) = P * MapType(rhs.data(),2,1,S(1,1)); in bug890()
140 MapType(v1.data(),2,1,S(1,1)) = P.inverse() * MapType(rhs.data(),2,1,S(1,1)); in bug890()
Dcuda_basic.cu73 typedef Map<Array<typename T::Scalar,Dynamic,Dynamic> > MapType; in operator ()() typedef
74 MapType(out+i*stride+0*step, x1.rows()*2, x1.cols()*2) = x1.replicate(2,2); in operator ()()
75 MapType(out+i*stride+1*step, x1.rows()*3, x1.cols()) = in[i] * x1.colwise().replicate(3); in operator ()()
76 MapType(out+i*stride+2*step, x1.rows(), x1.cols()*3) = in[i] * x1.rowwise().replicate(3); in operator ()()
/external/eigen/doc/snippets/
DTutorial_Map_using.cpp2 typedef Map<MatrixType> MapType; typedef
10 MapType m2map(p,m2.size()); // m2map shares data with m2
/external/pdfium/fxjs/
Dfxjs_v8.h53 typedef v8::GlobalValueMap<void*, v8::Object, V8TemplateMapTraits> MapType; typedef
57 MapType* map, in WeakCallbackParameter()
62 static MapType* MapFromWeakCallbackInfo(
83 typedef v8::GlobalValueMap<void*, v8::Object, V8TemplateMapTraits> MapType; typedef
93 MapType m_map;
Dfxjs_v8.cpp176 V8TemplateMapTraits::MapType* V8TemplateMapTraits::MapFromWeakCallbackInfo( in MapFromWeakCallbackInfo()
/external/llvm/include/llvm/
DPassRegistry.h44 typedef DenseMap<const void *, const PassInfo *> MapType; typedef
45 MapType PassInfoMap;
/external/clang/lib/Serialization/
DModule.cpp58 typedef ContinuousRangeMap<Key, Offset, InitialCapacity> MapType; in dumpLocalRemap() typedef
60 for (typename MapType::const_iterator I = Map.begin(), IEnd = Map.end(); in dumpLocalRemap()
/external/v8/include/
Dv8-util.h91 MapType; typedef
95 MapType* map, const K& key, Local<V> value) { in WeakCallbackParameter()
98 static MapType* MapFromWeakCallbackInfo( in MapFromWeakCallbackInfo()
120 typedef GlobalValueMap<K, V, DefaultGlobalMapTraits<K, V> > MapType; typedef
123 static WeakCallbackDataType* WeakCallbackParameter(MapType* map, const K& key, in WeakCallbackParameter()
127 static MapType* MapFromWeakCallbackInfo( in MapFromWeakCallbackInfo()
/external/clang/lib/Parse/
DParseOpenMP.cpp1609 Data.MapType = in ParseOpenMPVarList()
1619 if (Data.MapType == OMPC_MAP_unknown) in ParseOpenMPVarList()
1621 else if (Data.MapType == OMPC_MAP_always) in ParseOpenMPVarList()
1627 Data.MapTypeModifier = Data.MapType; in ParseOpenMPVarList()
1637 Data.MapType = in ParseOpenMPVarList()
1642 if (Data.MapType == OMPC_MAP_unknown || in ParseOpenMPVarList()
1643 Data.MapType == OMPC_MAP_always) in ParseOpenMPVarList()
1647 Data.MapType = OMPC_MAP_tofrom; in ParseOpenMPVarList()
1651 Data.MapType = OMPC_MAP_tofrom; in ParseOpenMPVarList()
1655 Data.MapType = OMPC_MAP_tofrom; in ParseOpenMPVarList()
[all …]
/external/spirv-llvm/lib/SPIRV/libSPIRV/
DSPIRVUtil.h76 #define SPIRV_DEF_NAMEMAP(Type,MapType) \ argument
77 typedef SPIRVMap<Type, std::string> MapType; \
78 inline MapType getNameMap(Type){ MapType MT; return MT;}
/external/libchrome/base/containers/
Dmru_cache.h47 template <typename, typename, typename> class MapType =
57 typedef typename MapType<KeyType,
/external/eigen/Eigen/src/Core/
DPlainObjectBase.h123 typedef Eigen::Map<Derived, Unaligned> MapType;
585 static inline MapType Map(Scalar* data)
586 { return MapType(data); }
589 static inline MapType Map(Scalar* data, Index size)
590 { return MapType(data, size); }
593 static inline MapType Map(Scalar* data, Index rows, Index cols)
594 { return MapType(data, rows, cols); }
/external/llvm/lib/IR/
DPassRegistry.cpp39 MapType::const_iterator I = PassInfoMap.find(TI); in getPassInfo()
/external/clang/lib/Analysis/
DConsumed.cpp458 typedef llvm::DenseMap<const Stmt *, PropagationInfo> MapType; typedef in clang::consumed::ConsumedStmtVisitor
460 typedef MapType::iterator InfoEntry;
461 typedef MapType::const_iterator ConstInfoEntry;
466 MapType PropagationMap;
935 MapType::iterator VIT = findInfo(Var->getInit()->IgnoreImplicit()); in VisitVarDecl()
/external/mesa3d/src/gallium/state_trackers/d3d1x/gd3d11/
Dd3d11.cpp175 D3D11_MAP MapType,
/external/clang/lib/Sema/
DSemaOpenMP.cpp8027 OpenMPMapClauseKind MapType, bool IsMapTypeImplicit, in ActOnOpenMPVarListClause() argument
8069 Res = ActOnOpenMPMapClause(MapTypeModifier, MapType, IsMapTypeImplicit, in ActOnOpenMPVarListClause()
10872 OpenMPMapClauseKind MapType = OMPC_MAP_unknown, in checkMappableExpressionList() argument
10985 !(MapType == OMPC_MAP_to || MapType == OMPC_MAP_alloc)) { in checkMappableExpressionList()
10988 << getOpenMPSimpleClauseTypeName(OMPC_map, MapType) in checkMappableExpressionList()
10998 !(MapType == OMPC_MAP_from || MapType == OMPC_MAP_release || in checkMappableExpressionList()
10999 MapType == OMPC_MAP_delete)) { in checkMappableExpressionList()
11002 << getOpenMPSimpleClauseTypeName(OMPC_map, MapType) in checkMappableExpressionList()
11042 OpenMPMapClauseKind MapType, bool IsMapTypeImplicit, in ActOnOpenMPMapClause()
11048 MapType, IsMapTypeImplicit); in ActOnOpenMPMapClause()
[all …]
/external/clang/lib/CodeGen/
DCGOpenMPRuntime.cpp5050 unsigned getMapTypeBits(OpenMPMapClauseKind MapType, in getMapTypeBits() argument
5054 switch (MapType) { in getMapTypeBits()
5130 OpenMPMapClauseKind MapType, OpenMPMapClauseKind MapTypeModifier, in generateInfoForComponentList() argument
5337 Types.push_back(getMapTypeBits(MapType, MapTypeModifier, in generateInfoForComponentList()
5396 OpenMPMapClauseKind MapType; in generateAllInfo() member
5410 OpenMPMapClauseKind MapType, OpenMPMapClauseKind MapModifier) { in generateAllInfo() argument
5413 Info[VD].push_back({L, MapType, MapModifier}); in generateAllInfo()
5433 generateInfoForComponentList(L.MapType, L.MapTypeModifier, L.Components, in generateAllInfo()
/external/fmtlib/fmt/
Dformat.h1906 std::pair<fmt::BasicStringRef<Char>, internal::Arg> > MapType;
1907 typedef typename MapType::value_type Pair;
1909 MapType map_;
1916 for (typename MapType::const_iterator it = map_.begin(), end = map_.end();

12