/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
D | MapVector.h | 35 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); in lookup() 118 std::pair<KeyT, typename MapType::mapped_type> Pair = std::make_pair(KV.first, 0); in insert() 119 std::pair<typename MapType::iterator, bool> Result = Map.insert(Pair); in insert() 131 std::pair<KeyT, typename MapType::mapped_type> Pair = std::make_pair(KV.first, 0); in insert() 132 std::pair<typename MapType::iterator, bool> Result = Map.insert(Pair); in insert() [all …]
|
/third_party/boost/libs/compute/test/ |
D | test_flat_map.cpp | 79 typedef boost::compute::flat_map<int, float> MapType; in BOOST_AUTO_TEST_CASE() typedef 82 MapType map(context); in BOOST_AUTO_TEST_CASE() 90 __kernel void lookup(__global const MapType *map, in BOOST_AUTO_TEST_CASE() 108 source << boost::compute::type_definition<MapType::value_type>(); in BOOST_AUTO_TEST_CASE() 119 options << "-DMapType=" << boost::compute::type_name<MapType::value_type>() in BOOST_AUTO_TEST_CASE() 120 << " -DKeyType=" << boost::compute::type_name<MapType::key_type>() in BOOST_AUTO_TEST_CASE() 121 << " -DValueType=" << boost::compute::type_name<MapType::mapped_type>(); in BOOST_AUTO_TEST_CASE() 137 lookup_kernel.set_arg<MapType::key_type>(2, 5); // key in BOOST_AUTO_TEST_CASE()
|
/third_party/boost/libs/container/test/ |
D | map_test.hpp | 1134 template<typename MapType> 1138 …const std::initializer_list<std::pair<typename MapType::value_type::first_type, typename MapType::… in test_map_support_for_initialization_list_for() 1141 const MapType expected_map(il.begin(), il.end()); in test_map_support_for_initialization_list_for() 1143 const MapType sil = il; in test_map_support_for_initialization_list_for() 1147 MapType sila(il, typename MapType::allocator_type()); in test_map_support_for_initialization_list_for() 1151 MapType silca(il, typename MapType::key_compare(), typename MapType::allocator_type()); in test_map_support_for_initialization_list_for() 1155 const MapType sil_ordered(ordered_unique_range, il); in test_map_support_for_initialization_list_for() 1159 MapType sil_assign = { std::make_pair(99, 100) }; in test_map_support_for_initialization_list_for() 1165 MapType sil; in test_map_support_for_initialization_list_for() 1175 template<typename MapType, typename MultimapType> [all …]
|
/third_party/cef/tests/ceftests/ |
D | string_unittest.cc | 206 typedef std::map<CefString, CefString> MapType; in TEST() typedef 207 MapType map; in TEST() 212 MapType::const_iterator it; in TEST() 276 typedef std::multimap<CefString, CefString> MapType; in TEST() typedef 277 MapType map; in TEST() 283 MapType::const_iterator it; in TEST() 290 std::pair<MapType::const_iterator, MapType::const_iterator> range_it = in TEST() 293 MapType::const_iterator same_key_it = range_it.first; in TEST()
|
/third_party/boost/libs/bimap/example/ |
D | simple_bimap.cpp | 30 template< class MapType > 31 void print_map(const MapType & map, in print_map() 35 typedef typename MapType::const_iterator const_iterator; in print_map()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ |
D | PassRegistry.h | 42 using MapType = DenseMap<const void *, const PassInfo *>; variable 43 MapType PassInfoMap;
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/ |
D | RDFRegisters.h | 185 using MapType = std::map<RegisterId, LaneBitmask>; member 188 MapType Masks; 189 MapType::iterator Pos;
|
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()
|
D | HexagonConstPropagation.cpp | 223 MapType::const_iterator F = Map.find(R); in has() 230 MapType::const_iterator F = Map.find(R); in get() 244 using MapType = std::map<unsigned, LatticeCell>; typedef in __anon70eddf1e0111::MachineConstPropagator::CellMap 246 MapType Map; 253 using const_iterator = MapType::const_iterator;
|
/third_party/protobuf/src/google/protobuf/ |
D | generated_message_table_driven.h | 227 MapType; in ParseMap() typedef 228 typedef typename Entry::template Parser<MapFieldType, MapType> ParserType; in ParseMap() 301 typedef typename MapFieldType::MapType::const_iterator Iter;
|
D | map_field_lite.h | 63 typedef Map<Key, T> MapType; typedef
|
D | map_field.h | 452 typedef Map<Key, T> MapType; typedef
|
/third_party/flutter/skia/third_party/externals/angle2/src/common/third_party/base/anglebase/containers/ |
D | mru_cache.h | 52 template <typename, typename, typename> class MapType = MRUCacheStandardMap> 63 typename MapType<KeyType, typename PayloadList::iterator, HashOrCompareType>::Type KeyIndex;
|
/third_party/skia/third_party/externals/angle2/src/common/third_party/base/anglebase/containers/ |
D | mru_cache.h | 52 template <typename, typename, typename> class MapType = MRUCacheStandardMap> 63 typename MapType<KeyType, typename PayloadList::iterator, HashOrCompareType>::Type KeyIndex;
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/ |
D | MinidumpYAML.cpp | 26 template <typename MapType, typename EndianType> 29 MapType Mapped = static_cast<typename EndianType::value_type>(Val); in mapRequiredAs() 36 template <typename MapType, typename EndianType> 38 MapType Default) { in mapOptionalAs() 39 MapType Mapped = static_cast<typename EndianType::value_type>(Val); in mapOptionalAs()
|
/third_party/boost/libs/bimap/doc/ |
D | quick_tutorial.qbk | 43 template< class MapType > 44 void print_map(const MapType & m) 46 typedef typename MapType::const_iterator const_iterator;
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
D | PassRegistry.cpp | 43 MapType::const_iterator I = PassInfoMap.find(TI); in getPassInfo()
|
/third_party/skia/third_party/externals/dawn/src/dawn_native/ |
D | Buffer.h | 31 enum class MapType : uint32_t;
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
D | CFLAndersAliasAnalysis.cpp | 227 using MapType = DenseMap<InstantiatedValue, AliasAttrs>; typedef in __anon94e12aad0111::AliasAttrMap 229 MapType AttrMap; 232 using const_iterator = MapType::const_iterator;
|
/third_party/abseil-cpp/absl/strings/ |
D | str_split_test.cc | 383 template <typename MapType, typename Splitter> 385 MapType m = splitter; in TestMapConversionOperator()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/ |
D | str_split_test.cc | 385 template <typename MapType, typename Splitter> 387 MapType m = splitter; in TestMapConversionOperator()
|
/third_party/abseil-cpp/absl/status/ |
D | statusor_test.cc | 1439 using MapType = std::map<std::string, absl::StatusOr<std::unique_ptr<int>>>; in TEST() typedef 1441 MapType a; in TEST() 1444 MapType b(std::move(a)); in TEST()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/status/ |
D | statusor_test.cc | 1486 using MapType = std::map<std::string, absl::StatusOr<std::unique_ptr<int>>>; in TEST() typedef 1488 MapType a; in TEST() 1491 MapType b(std::move(a)); in TEST()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
D | CodeGenPrepare.cpp | 2974 using MapType = SmallDenseMap<PHINode *, size_t, 32>; typedef in __anona24ce5a20711::PhiNodeSet 2984 MapType NodeMap;
|