HomeSort by relevance Sort by last modified time
    Searched refs:MapType (Results 1 - 25 of 30) sorted by null

1 2

  /external/pdfium/core/src/fpdfapi/fpdf_cmaps/
cmap_int.h 13 enum MapType { None, Single, Range, Reverse };
16 MapType m_WordMapType;
19 MapType m_DWordMapType;
  /external/eigen/doc/snippets/
Tutorial_Map_using.cpp 2 typedef Map<MatrixType> MapType;
10 MapType m2map(p,m2.size()); // m2map shares data with m2
  /external/llvm/include/llvm/
PassRegistry.h 44 typedef DenseMap<const void *, const PassInfo *> MapType;
45 MapType PassInfoMap;
  /external/libcxx/test/std/containers/unord/unord.map/unord.map.swap/
swap_noexcept.pass.cpp 120 typedef std::pair<const MoveOnly, MoveOnly> MapType;
128 std::equal_to<MoveOnly>, test_allocator<MapType>> C;
134 std::equal_to<MoveOnly>, other_allocator<MapType>> C;
152 typedef std::unordered_map<MoveOnly, MoveOnly, some_hash<MoveOnly>, some_comp <MoveOnly>, some_alloc <MapType>> C;
157 typedef std::unordered_map<MoveOnly, MoveOnly, some_hash<MoveOnly>, some_comp <MoveOnly>, some_alloc2<MapType>> C;
162 typedef std::unordered_map<MoveOnly, MoveOnly, some_hash<MoveOnly>, some_comp2<MoveOnly>, some_alloc <MapType>> C;
167 typedef std::unordered_map<MoveOnly, MoveOnly, some_hash<MoveOnly>, some_comp2<MoveOnly>, some_alloc2<MapType>> C;
172 typedef std::unordered_map<MoveOnly, MoveOnly, some_hash2<MoveOnly>, some_comp <MoveOnly>, some_alloc <MapType>> C;
177 typedef std::unordered_map<MoveOnly, MoveOnly, some_hash2<MoveOnly>, some_comp <MoveOnly>, some_alloc2<MapType>> C;
182 typedef std::unordered_map<MoveOnly, MoveOnly, some_hash2<MoveOnly>, some_comp2<MoveOnly>, some_alloc <MapType>> C
    [all...]
  /external/libcxx/test/std/containers/unord/unord.multimap/unord.multimap.swap/
swap_noexcept.pass.cpp 119 typedef std::pair<const MoveOnly, MoveOnly> MapType;
127 std::equal_to<MoveOnly>, test_allocator<MapType>> C;
133 std::equal_to<MoveOnly>, other_allocator<MapType>> C;
151 typedef std::unordered_multimap<MoveOnly, MoveOnly, some_hash<MoveOnly>, some_comp <MoveOnly>, some_alloc <MapType>> C;
156 typedef std::unordered_multimap<MoveOnly, MoveOnly, some_hash<MoveOnly>, some_comp <MoveOnly>, some_alloc2<MapType>> C;
161 typedef std::unordered_multimap<MoveOnly, MoveOnly, some_hash<MoveOnly>, some_comp2<MoveOnly>, some_alloc <MapType>> C;
166 typedef std::unordered_multimap<MoveOnly, MoveOnly, some_hash<MoveOnly>, some_comp2<MoveOnly>, some_alloc2<MapType>> C;
171 typedef std::unordered_multimap<MoveOnly, MoveOnly, some_hash2<MoveOnly>, some_comp <MoveOnly>, some_alloc <MapType>> C;
176 typedef std::unordered_multimap<MoveOnly, MoveOnly, some_hash2<MoveOnly>, some_comp <MoveOnly>, some_alloc2<MapType>> C;
181 typedef std::unordered_multimap<MoveOnly, MoveOnly, some_hash2<MoveOnly>, some_comp2<MoveOnly>, some_alloc <MapType>> C
    [all...]
  /external/llvm/include/llvm/ADT/
MapVector.h 30 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);
93 std::pair<typename MapType::iterator, bool> Result = Map.insert(Pair);
104 typename MapType::const_iterator Pos = Map.find(Key);
109 typename MapType::const_iterator Pos = Map.find(Key);
115 typename MapType::const_iterator Pos = Map.find(Key);
122 typename MapType::iterator Pos = Map.find(Vector.back().first);
168 template <typename KeyT, typename ValueT, typename MapType, typename VectorType
    [all...]
  /external/clang/include/clang/AST/
CXXInheritance.h 272 typedef llvm::MapVector<unsigned, ValuesT> MapType;
273 MapType Overrides;
277 typedef MapType::iterator iterator;
278 typedef MapType::const_iterator const_iterator;
OpenMPClause.h     [all...]
  /external/clang/lib/Serialization/
Module.cpp 60 typedef ContinuousRangeMap<Key, Offset, InitialCapacity> MapType;
62 for (typename MapType::const_iterator I = Map.begin(), IEnd = Map.end();
  /external/clang/lib/Parse/
ParseOpenMP.cpp 830 OpenMPMapClauseKind MapType = OMPC_MAP_unknown;
882 LinearModifier, MapTypeModifier, MapType, DepLinMapLoc);
907 MapType = static_cast<OpenMPMapClauseKind>(getOpenMPSimpleClauseType(
914 MapType = static_cast<OpenMPMapClauseKind>(getOpenMPSimpleClauseType(
916 if (MapType == OMPC_MAP_unknown) {
918 } else if (MapType == OMPC_MAP_always) {
938 MapType = static_cast<OpenMPMapClauseKind>(getOpenMPSimpleClauseType(
    [all...]
  /external/v8/include/
v8-util.h 82 * You should not derive from this class, since MapType depends on the
91 MapType;
95 MapType* map, const K& key, Local<V> value) {
98 static MapType* MapFromWeakCallbackData(
120 typedef GlobalValueMap<K, V, DefaultGlobalMapTraits<K, V> > MapType;
123 static WeakCallbackDataType* WeakCallbackParameter(MapType* map, const K& key,
127 static MapType* MapFromWeakCallbackInfo(
  /external/llvm/lib/IR/
PassRegistry.cpp 43 MapType::const_iterator I = PassInfoMap.find(TI);
  /external/libchrome/base/containers/
mru_cache.h 46 template <typename, typename> class MapType = MRUCacheStandardMap>
55 typedef typename MapType<KeyType,
  /external/eigen/Eigen/src/Core/
PlainObjectBase.h 113 typedef Eigen::Map<Derived, Unaligned> MapType;
477 static inline MapType Map(Scalar* data)
478 { return MapType(data); }
481 static inline MapType Map(Scalar* data, Index size)
482 { return MapType(data, size); }
485 static inline MapType Map(Scalar* data, Index rows, Index cols)
486 { return MapType(data, rows, cols); }
    [all...]
  /external/opencv3/modules/ml/src/
data.cpp 118 typedef std::map<String, int> MapType;
225 nameMap = MapType();
525 MapType tempNameMap;
649 char missch, MapType& namemap, int& counter ) const
660 MapType::iterator it = namemap.find(token);
    [all...]
  /system/tools/aidl/
type_java.cpp 513 MapType::MapType(const JavaTypeNamespace* types)
517 void MapType::WriteToParcel(StatementBlock* addTo, Variable* v,
534 void MapType::CreateFromParcel(StatementBlock* addTo, Variable* v,
540 void MapType::ReadFromParcel(StatementBlock* addTo, Variable* v,
    [all...]
type_java.h 323 class MapType : public Type {
325 MapType(const JavaTypeNamespace* types);
  /external/mesa3d/src/gallium/state_trackers/d3d1x/gd3d11/
d3d11.cpp 175 D3D11_MAP MapType,
  /external/clang/lib/Analysis/
Consumed.cpp 458 typedef llvm::DenseMap<const Stmt *, PropagationInfo> MapType;
460 typedef MapType::iterator InfoEntry;
461 typedef MapType::const_iterator ConstInfoEntry;
466 MapType PropagationMap;
929 MapType::iterator VIT = findInfo(Var->getInit()->IgnoreImplicit());
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
d3d10.h     [all...]
d3d10.idl     [all...]
d3d11.h     [all...]
d3d11.idl     [all...]
  /external/clang/lib/CodeGen/
CGOpenMPRuntime.cpp     [all...]
  /external/clang/lib/Sema/
SemaOpenMP.cpp     [all...]

Completed in 743 milliseconds

1 2