Searched refs:value_type (Results 26 - 50 of 548) sorted by relevance

1234567891011>>

/external/libcxx/test/std/containers/unord/unord.multimap/
H A Dtypes.pass.cpp23 // typedef pair<const key_type, mapped_type> value_type;
24 // typedef value_type& reference;
25 // typedef const value_type& const_reference;
44 static_assert((std::is_same<C::allocator_type, std::allocator<C::value_type> >::value), "");
45 static_assert((std::is_same<C::value_type, std::pair<const C::key_type, C::mapped_type> >::value), "");
46 static_assert((std::is_same<C::reference, C::value_type&>::value), "");
47 static_assert((std::is_same<C::const_reference, const C::value_type&>::value), "");
48 static_assert((std::is_same<C::pointer, C::value_type*>::value), "");
49 static_assert((std::is_same<C::const_pointer, const C::value_type*>::value), "");
61 static_assert((std::is_same<C::allocator_type, min_allocator<C::value_type> >
[all...]
/external/libcxx/test/std/containers/unord/unord.multiset/
H A Dtypes.pass.cpp18 // typedef Value value_type;
19 // typedef value_type key_type;
23 // typedef value_type& reference;
24 // typedef const value_type& const_reference;
39 static_assert((std::is_same<C::value_type, short>::value), "");
43 static_assert((std::is_same<C::allocator_type, std::allocator<C::value_type> >::value), "");
44 static_assert((std::is_same<C::reference, C::value_type&>::value), "");
45 static_assert((std::is_same<C::const_reference, const C::value_type&>::value), "");
46 static_assert((std::is_same<C::pointer, C::value_type*>::value), "");
47 static_assert((std::is_same<C::const_pointer, const C::value_type*>
[all...]
/external/libcxx/test/std/containers/unord/unord.set/
H A Dtypes.pass.cpp18 // typedef Value value_type;
19 // typedef value_type key_type;
23 // typedef value_type& reference;
24 // typedef const value_type& const_reference;
39 static_assert((std::is_same<C::value_type, short>::value), "");
43 static_assert((std::is_same<C::allocator_type, std::allocator<C::value_type> >::value), "");
44 static_assert((std::is_same<C::reference, C::value_type&>::value), "");
45 static_assert((std::is_same<C::const_reference, const C::value_type&>::value), "");
46 static_assert((std::is_same<C::pointer, C::value_type*>::value), "");
47 static_assert((std::is_same<C::const_pointer, const C::value_type*>
[all...]
/external/libcxx/test/std/utilities/memory/allocator.traits/allocator.traits.types/
H A Dconst_pointer.pass.cpp16 // | pointer_traits<pointer>::rebind<const value_type>
29 typedef T value_type; typedef in struct:A
36 typedef T value_type; typedef in struct:B
45 typedef T value_type; typedef in struct:C
H A Dconst_void_pointer.pass.cpp30 typedef T value_type; typedef in struct:A
37 typedef T value_type; typedef in struct:B
46 typedef T value_type; typedef in struct:C
H A Ddifference_type.pass.cpp26 typedef T value_type; typedef in struct:A
33 typedef T value_type; typedef in struct:B
39 typedef T value_type; typedef in struct:C
H A Dsize_type.pass.cpp25 typedef T value_type; typedef in struct:A
32 typedef T value_type; typedef in struct:B
38 typedef T value_type; typedef in struct:C
H A Dvoid_pointer.pass.cpp30 typedef T value_type; typedef in struct:A
37 typedef T value_type; typedef in struct:B
46 typedef T value_type; typedef in struct:C
H A Dpointer.pass.cpp15 // typedef Alloc::pointer | value_type* pointer;
28 typedef T value_type; typedef in struct:A
35 typedef T value_type; typedef in struct:B
H A Dpropagate_on_container_copy_assignment.pass.cpp26 typedef T value_type; typedef in struct:A
33 typedef T value_type; typedef in struct:B
H A Dpropagate_on_container_move_assignment.pass.cpp26 typedef T value_type; typedef in struct:A
33 typedef T value_type; typedef in struct:B
H A Dpropagate_on_container_swap.pass.cpp26 typedef T value_type; typedef in struct:A
33 typedef T value_type; typedef in struct:B
/external/protobuf/src/google/protobuf/stubs/
H A Dmap_util.h73 const typename Collection::value_type::second_type&
75 const typename Collection::value_type::first_type& key) {
83 typename Collection::value_type::second_type&
85 const typename Collection::value_type::first_type& key) {
93 const typename Collection::value_type::second_type&
95 const typename Collection::value_type::first_type& key) {
103 typename Collection::value_type::second_type&
105 const typename Collection::value_type::first_type& key) {
122 const typename Collection::value_type::second_type&
124 const typename Collection::value_type
356 typedef typename Collection::value_type value_type; typedef
367 typedef typename Collection::value_type value_type; typedef
381 typedef typename Collection::value_type value_type; typedef
[all...]
/external/libcxx/test/std/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.index/
H A Ddifference_type.pass.cpp28 typename std::iterator_traits<It>::value_type x)
30 typedef typename std::iterator_traits<It>::value_type value_type; typedef
32 value_type rr = r[n];
/external/libcxx/test/std/numerics/complex.number/complex/
H A Dtypes.pass.cpp16 // typedef T value_type;
28 static_assert((std::is_same<typename C::value_type, T>::value), "");
/external/libcxx/test/std/utilities/memory/allocator.traits/
H A Dallocator_type.pass.cpp25 typedef T value_type; typedef in struct:A
/external/llvm/include/llvm/Support/
H A DCapacity.h26 return x.capacity() * sizeof(typename T::value_type);
H A DEndianStream.h29 template <typename value_type> void write(value_type Val) {
30 Val = byte_swap<value_type, endian>(Val);
31 OS.write((const char *)&Val, sizeof(value_type));
/external/libcxx/test/std/containers/associative/multiset/
H A Dinsert_cv.pass.cpp14 // iterator insert(const value_type& v);
27 R r = m.insert(M::value_type(2));
32 r = m.insert(M::value_type(1));
37 r = m.insert(M::value_type(3));
42 r = m.insert(M::value_type(3));
52 R r = m.insert(M::value_type(2));
57 r = m.insert(M::value_type(1));
62 r = m.insert(M::value_type(3));
67 r = m.insert(M::value_type(3));
H A Dinsert_iter_cv.pass.cpp14 // iterator insert(const_iterator position, const value_type& v);
27 R r = m.insert(m.cend(), M::value_type(2));
32 r = m.insert(m.cend(), M::value_type(1));
37 r = m.insert(m.cend(), M::value_type(3));
42 r = m.insert(m.cend(), M::value_type(3));
52 R r = m.insert(m.cend(), M::value_type(2));
57 r = m.insert(m.cend(), M::value_type(1));
62 r = m.insert(m.cend(), M::value_type(3));
67 r = m.insert(m.cend(), M::value_type(3));
H A Dinsert_iter_rv.pass.cpp14 // iterator insert(const_iterator position, value_type&& v);
29 R r = m.insert(m.cend(), M::value_type(2));
34 r = m.insert(m.cend(), M::value_type(1));
39 r = m.insert(m.cend(), M::value_type(3));
44 r = m.insert(m.cend(), M::value_type(3));
55 R r = m.insert(m.cend(), M::value_type(2));
60 r = m.insert(m.cend(), M::value_type(1));
65 r = m.insert(m.cend(), M::value_type(3));
70 r = m.insert(m.cend(), M::value_type(3));
H A Dinsert_rv.pass.cpp14 // iterator insert(value_type&& v);
29 R r = m.insert(M::value_type(2));
34 r = m.insert(M::value_type(1));
39 r = m.insert(M::value_type(3));
44 r = m.insert(M::value_type(3));
55 R r = m.insert(M::value_type(2));
60 r = m.insert(M::value_type(1));
65 r = m.insert(M::value_type(3));
70 r = m.insert(M::value_type(3));
/external/libcxx/test/std/containers/associative/set/
H A Dinsert_iter_cv.pass.cpp14 // iterator insert(const_iterator position, const value_type& v);
27 R r = m.insert(m.cend(), M::value_type(2));
32 r = m.insert(m.cend(), M::value_type(1));
37 r = m.insert(m.cend(), M::value_type(3));
42 r = m.insert(m.cend(), M::value_type(3));
52 R r = m.insert(m.cend(), M::value_type(2));
57 r = m.insert(m.cend(), M::value_type(1));
62 r = m.insert(m.cend(), M::value_type(3));
67 r = m.insert(m.cend(), M::value_type(3));
H A Dinsert_iter_rv.pass.cpp14 // iterator insert(const_iterator position, value_type&& v);
29 R r = m.insert(m.cend(), M::value_type(2));
34 r = m.insert(m.cend(), M::value_type(1));
39 r = m.insert(m.cend(), M::value_type(3));
44 r = m.insert(m.cend(), M::value_type(3));
54 R r = m.insert(m.cend(), M::value_type(2));
59 r = m.insert(m.cend(), M::value_type(1));
64 r = m.insert(m.cend(), M::value_type(3));
69 r = m.insert(m.cend(), M::value_type(3));
/external/libcxx/test/std/containers/associative/map/map.access/
H A Dsize.pass.cpp27 m.insert(M::value_type(2, 1.5));
29 m.insert(M::value_type(1, 1.5));
31 m.insert(M::value_type(3, 1.5));
45 m.insert(M::value_type(2, 1.5));
47 m.insert(M::value_type(1, 1.5));
49 m.insert(M::value_type(3, 1.5));

Completed in 644 milliseconds

1234567891011>>