HomeSort by relevance Sort by last modified time
    Searched full:maptype (Results 1 - 25 of 442) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/go/darwin-x86/test/fixedbugs/issue4879.dir/
a.go 15 type maptype map[int]int type
30 root: unsafe.Pointer(&maptype{}),
  /prebuilts/go/linux-x86/test/fixedbugs/issue4879.dir/
a.go 15 type maptype map[int]int type
30 root: unsafe.Pointer(&maptype{}),
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/builtin/
runtime.go 97 func makemap64(mapType *byte, hint int64, mapbuf *any) (hmap map[any]any)
98 func makemap(mapType *byte, hint int, mapbuf *any) (hmap map[any]any)
100 func mapaccess1(mapType *byte, hmap map[any]any, key *any) (val *any)
101 func mapaccess1_fast32(mapType *byte, hmap map[any]any, key any) (val *any)
102 func mapaccess1_fast64(mapType *byte, hmap map[any]any, key any) (val *any)
103 func mapaccess1_faststr(mapType *byte, hmap map[any]any, key any) (val *any)
104 func mapaccess1_fat(mapType *byte, hmap map[any]any, key *any, zero *byte) (val *any)
105 func mapaccess2(mapType *byte, hmap map[any]any, key *any) (val *any, pres bool)
106 func mapaccess2_fast32(mapType *byte, hmap map[any]any, key any) (val *any, pres bool)
107 func mapaccess2_fast64(mapType *byte, hmap map[any]any, key any) (val *any, pres bool
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/builtin/
runtime.go 97 func makemap64(mapType *byte, hint int64, mapbuf *any) (hmap map[any]any)
98 func makemap(mapType *byte, hint int, mapbuf *any) (hmap map[any]any)
100 func mapaccess1(mapType *byte, hmap map[any]any, key *any) (val *any)
101 func mapaccess1_fast32(mapType *byte, hmap map[any]any, key any) (val *any)
102 func mapaccess1_fast64(mapType *byte, hmap map[any]any, key any) (val *any)
103 func mapaccess1_faststr(mapType *byte, hmap map[any]any, key any) (val *any)
104 func mapaccess1_fat(mapType *byte, hmap map[any]any, key *any, zero *byte) (val *any)
105 func mapaccess2(mapType *byte, hmap map[any]any, key *any) (val *any, pres bool)
106 func mapaccess2_fast32(mapType *byte, hmap map[any]any, key any) (val *any, pres bool)
107 func mapaccess2_fast64(mapType *byte, hmap map[any]any, key any) (val *any, pres bool
    [all...]
  /external/libmojo/mojo/public/cpp/bindings/tests/
map_common_test.h 43 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/eigen/doc/snippets/
Tutorial_Map_using.cpp 2 typedef Map<MatrixType> MapType;
10 MapType m2map(p,m2.size()); // m2map shares data with m2
  /external/pdfium/core/fpdfapi/cmaps/
cmap_int.h 21 enum MapType : uint8_t { Single, Range };
28 MapType m_WordMapType;
  /device/google/cuttlefish_common/host/libs/usbip/
device_pool.h 41 using MapType = std::map<BusDevNumber, std::unique_ptr<Device>>;
55 MapType::const_iterator begin() const { return devices_.cbegin(); }
56 MapType::const_iterator end() const { return devices_.cend(); }
59 MapType devices_;
  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/
Util.java 52 public static TypeMirror getProvidedValueTypeOfMap(DeclaredType mapType) {
53 checkState(MoreTypes.isTypeOf(Map.class, mapType), "%s is not a Map.", mapType);
54 return asDeclared(mapType.getTypeArguments().get(1)).getTypeArguments().get(0);
61 public static TypeMirror getValueTypeOfMap(DeclaredType mapType) {
62 checkState(MoreTypes.isTypeOf(Map.class, mapType), "%s is not a Map.", mapType);
63 return mapType.getTypeArguments().get(1);
69 public static TypeMirror getKeyTypeOfMap(DeclaredType mapType) {
70 checkState(MoreTypes.isTypeOf(Map.class, mapType), "%s is not a Map.", mapType)
    [all...]
  /external/perfetto/src/traced/probes/filesystem/
lru_inode_cache.h 44 using MapType = std::map<const InodeKey, ListIteratorType>;
46 void Insert(MapType::iterator map_it, InodeKey k, InodeMapValue v);
49 MapType map_;
  /external/libcxx/test/std/containers/unord/unord.map/unord.map.swap/
swap_noexcept.pass.cpp 125 typedef std::pair<const MoveOnly, MoveOnly> MapType;
133 std::equal_to<MoveOnly>, test_allocator<MapType>> C;
138 std::equal_to<MoveOnly>, other_allocator<MapType>> C;
154 typedef std::unordered_map<MoveOnly, MoveOnly, some_hash<MoveOnly>, some_comp <MoveOnly>, some_alloc <MapType>> C;
158 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;
166 typedef std::unordered_map<MoveOnly, MoveOnly, some_hash<MoveOnly>, some_comp2<MoveOnly>, some_alloc2<MapType>> C;
170 typedef std::unordered_map<MoveOnly, MoveOnly, some_hash2<MoveOnly>, some_comp <MoveOnly>, some_alloc <MapType>> C;
174 typedef std::unordered_map<MoveOnly, MoveOnly, some_hash2<MoveOnly>, some_comp <MoveOnly>, some_alloc2<MapType>> C;
178 typedef std::unordered_map<MoveOnly, MoveOnly, some_hash2<MoveOnly>, some_comp2<MoveOnly>, some_alloc <MapType>> C
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/unord/unord.map/unord.map.swap/
swap_noexcept.pass.cpp 125 typedef std::pair<const MoveOnly, MoveOnly> MapType;
133 std::equal_to<MoveOnly>, test_allocator<MapType>> C;
138 std::equal_to<MoveOnly>, other_allocator<MapType>> C;
154 typedef std::unordered_map<MoveOnly, MoveOnly, some_hash<MoveOnly>, some_comp <MoveOnly>, some_alloc <MapType>> C;
158 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;
166 typedef std::unordered_map<MoveOnly, MoveOnly, some_hash<MoveOnly>, some_comp2<MoveOnly>, some_alloc2<MapType>> C;
170 typedef std::unordered_map<MoveOnly, MoveOnly, some_hash2<MoveOnly>, some_comp <MoveOnly>, some_alloc <MapType>> C;
174 typedef std::unordered_map<MoveOnly, MoveOnly, some_hash2<MoveOnly>, some_comp <MoveOnly>, some_alloc2<MapType>> C;
178 typedef std::unordered_map<MoveOnly, MoveOnly, some_hash2<MoveOnly>, some_comp2<MoveOnly>, some_alloc <MapType>> C
    [all...]
  /prebuilts/go/darwin-x86/test/stress/
maps.go 13 func mapTypes() []MapType {
17 return []MapType{intMapType{}}
20 type MapType interface {
32 func stressMapType(mt MapType, done func()) {
  /prebuilts/go/linux-x86/test/stress/
maps.go 13 func mapTypes() []MapType {
17 return []MapType{intMapType{}}
20 type MapType interface {
32 func stressMapType(mt MapType, done func()) {
  /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/selinux/libsepol/include/sepol/policydb/
ebitmap.h 27 #define MAPTYPE uint64_t /* portion of bitmap in each node */
28 #define MAPSIZE (sizeof(MAPTYPE) * 8) /* number of bits in node bitmap */
33 MAPTYPE map; /* this node's portion of the bitmap */
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ADT/
MapVector.h 30 typename MapType = llvm::DenseMap<KeyT, unsigned>,
36 MapType Map;
84 std::pair<typename MapType::iterator, bool> Result = Map.insert(Pair);
97 typename MapType::const_iterator Pos = Map.find(Key);
103 std::pair<typename MapType::iterator, bool> Result = Map.insert(Pair);
116 std::pair<typename MapType::iterator, bool> Result = Map.insert(Pair);
127 typename MapType::const_iterator Pos = Map.find(Key);
132 typename MapType::const_iterator Pos = Map.find(Key);
138 typename MapType::const_iterator Pos = Map.find(Key);
145 typename MapType::iterator Pos = Map.find(Vector.back().first)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/ADT/
MapVector.h 36 typename MapType = DenseMap<KeyT, unsigned>,
42 MapType Map;
90 std::pair<typename MapType::iterator, bool> Result = Map.insert(Pair);
103 typename MapType::const_iterator Pos = Map.find(Key);
109 std::pair<typename MapType::iterator, bool> Result = Map.insert(Pair);
122 std::pair<typename MapType::iterator, bool> Result = Map.insert(Pair);
133 typename MapType::const_iterator Pos = Map.find(Key);
138 typename MapType::const_iterator Pos = Map.find(Key);
144 typename MapType::const_iterator Pos = Map.find(Key);
151 typename MapType::iterator Pos = Map.find(Vector.back().first)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/ADT/
MapVector.h 36 typename MapType = DenseMap<KeyT, unsigned>,
42 MapType Map;
90 std::pair<typename MapType::iterator, bool> Result = Map.insert(Pair);
103 typename MapType::const_iterator Pos = Map.find(Key);
109 std::pair<typename MapType::iterator, bool> Result = Map.insert(Pair);
122 std::pair<typename MapType::iterator, bool> Result = Map.insert(Pair);
133 typename MapType::const_iterator Pos = Map.find(Key);
138 typename MapType::const_iterator Pos = Map.find(Key);
144 typename MapType::const_iterator Pos = Map.find(Key);
151 typename MapType::iterator Pos = Map.find(Vector.back().first)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/ADT/
MapVector.h 36 typename MapType = DenseMap<KeyT, unsigned>,
42 MapType Map;
90 std::pair<typename MapType::iterator, bool> Result = Map.insert(Pair);
103 typename MapType::const_iterator Pos = Map.find(Key);
109 std::pair<typename MapType::iterator, bool> Result = Map.insert(Pair);
122 std::pair<typename MapType::iterator, bool> Result = Map.insert(Pair);
133 typename MapType::const_iterator Pos = Map.find(Key);
138 typename MapType::const_iterator Pos = Map.find(Key);
144 typename MapType::const_iterator Pos = Map.find(Key);
151 typename MapType::iterator Pos = Map.find(Vector.back().first)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/ADT/
MapVector.h 36 typename MapType = DenseMap<KeyT, unsigned>,
42 MapType Map;
90 std::pair<typename MapType::iterator, bool> Result = Map.insert(Pair);
103 typename MapType::const_iterator Pos = Map.find(Key);
109 std::pair<typename MapType::iterator, bool> Result = Map.insert(Pair);
122 std::pair<typename MapType::iterator, bool> Result = Map.insert(Pair);
133 typename MapType::const_iterator Pos = Map.find(Key);
138 typename MapType::const_iterator Pos = Map.find(Key);
144 typename MapType::const_iterator Pos = Map.find(Key);
151 typename MapType::iterator Pos = Map.find(Vector.back().first)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/ADT/
MapVector.h 36 typename MapType = DenseMap<KeyT, unsigned>,
42 MapType Map;
90 std::pair<typename MapType::iterator, bool> Result = Map.insert(Pair);
103 typename MapType::const_iterator Pos = Map.find(Key);
109 std::pair<typename MapType::iterator, bool> Result = Map.insert(Pair);
122 std::pair<typename MapType::iterator, bool> Result = Map.insert(Pair);
133 typename MapType::const_iterator Pos = Map.find(Key);
138 typename MapType::const_iterator Pos = Map.find(Key);
144 typename MapType::const_iterator Pos = Map.find(Key);
151 typename MapType::iterator Pos = Map.find(Vector.back().first)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/ADT/
MapVector.h 36 typename MapType = DenseMap<KeyT, unsigned>,
42 MapType Map;
90 std::pair<typename MapType::iterator, bool> Result = Map.insert(Pair);
103 typename MapType::const_iterator Pos = Map.find(Key);
109 std::pair<typename MapType::iterator, bool> Result = Map.insert(Pair);
122 std::pair<typename MapType::iterator, bool> Result = Map.insert(Pair);
133 typename MapType::const_iterator Pos = Map.find(Key);
138 typename MapType::const_iterator Pos = Map.find(Key);
144 typename MapType::const_iterator Pos = Map.find(Key);
151 typename MapType::iterator Pos = Map.find(Vector.back().first)
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ADT/
MapVector.h 30 typename MapType = llvm::DenseMap<KeyT, unsigned>,
36 MapType Map;
84 std::pair<typename MapType::iterator, bool> Result = Map.insert(Pair);
97 typename MapType::const_iterator Pos = Map.find(Key);
103 std::pair<typename MapType::iterator, bool> Result = Map.insert(Pair);
116 std::pair<typename MapType::iterator, bool> Result = Map.insert(Pair);
127 typename MapType::const_iterator Pos = Map.find(Key);
132 typename MapType::const_iterator Pos = Map.find(Key);
138 typename MapType::const_iterator Pos = Map.find(Key);
145 typename MapType::iterator Pos = Map.find(Vector.back().first)
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/ADT/
MapVector.h 36 typename MapType = DenseMap<KeyT, unsigned>,
42 MapType Map;
90 std::pair<typename MapType::iterator, bool> Result = Map.insert(Pair);
103 typename MapType::const_iterator Pos = Map.find(Key);
109 std::pair<typename MapType::iterator, bool> Result = Map.insert(Pair);
122 std::pair<typename MapType::iterator, bool> Result = Map.insert(Pair);
133 typename MapType::const_iterator Pos = Map.find(Key);
138 typename MapType::const_iterator Pos = Map.find(Key);
144 typename MapType::const_iterator Pos = Map.find(Key);
151 typename MapType::iterator Pos = Map.find(Vector.back().first)
    [all...]

Completed in 1052 milliseconds

1 2 3 4 5 6 7 8 91011>>