Searched refs:value_type (Results 76 - 100 of 768) sorted by relevance

1234567891011>>

/external/libcxx/test/containers/associative/multimap/multimap.modifiers/
H A Dinsert_rv.pass.cpp30 R r = m.insert(M::value_type(2, 2));
36 r = m.insert(M::value_type(1, 1));
42 r = m.insert(M::value_type(3, 3));
48 r = m.insert(M::value_type(3, 3));
59 R r = m.insert(M::value_type(2, 2));
65 r = m.insert(M::value_type(1, 1));
71 r = m.insert(M::value_type(3, 3));
77 r = m.insert(M::value_type(3, 3));
/external/libcxx/test/containers/associative/multiset/
H A Dempty.pass.cpp27 m.insert(M::value_type(1));
37 m.insert(M::value_type(1));
/external/libcxx/test/containers/associative/set/
H A Dempty.pass.cpp27 m.insert(M::value_type(1));
37 m.insert(M::value_type(1));
H A Dinsert_cv.pass.cpp14 // pair<iterator, bool> insert(const value_type& v);
27 R r = m.insert(M::value_type(2));
33 r = m.insert(M::value_type(1));
39 r = m.insert(M::value_type(3));
45 r = m.insert(M::value_type(3));
56 R r = m.insert(M::value_type(2));
62 r = m.insert(M::value_type(1));
68 r = m.insert(M::value_type(3));
74 r = m.insert(M::value_type(3));
H A Dinsert_rv.pass.cpp14 // pair<iterator, bool> insert(value_type&& v);
29 R r = m.insert(M::value_type(2));
35 r = m.insert(M::value_type(1));
41 r = m.insert(M::value_type(3));
47 r = m.insert(M::value_type(3));
58 R r = m.insert(M::value_type(2));
64 r = m.insert(M::value_type(1));
70 r = m.insert(M::value_type(3));
76 r = m.insert(M::value_type(3));
/external/libcxx/test/containers/sequences/forwardlist/forwardlist.cons/
H A Dalloc.pass.cpp25 typedef A::value_type T;
34 typedef A::value_type T;
H A Dalloc.fail.cpp24 typedef A::value_type T;
/external/libcxx/test/iterators/iterator.primitives/iterator.traits/
H A Diterator.pass.cpp16 // typedef typename Iter::value_type value_type;
30 typedef A value_type; typedef in struct:test_iterator
40 static_assert((std::is_same<It::value_type, A>::value), "");
/external/libcxx/test/iterators/predef.iterators/insert.iterators/back.insert.iter.ops/back.insert.iter.op=/
H A Dlv_value.pass.cpp14 // requires CopyConstructible<Cont::value_type>
16 // operator=(const Cont::value_type& value);
26 const typename C::value_type v = typename C::value_type();
/external/libcxx/test/iterators/predef.iterators/insert.iterators/front.insert.iter.ops/front.insert.iter.op=/
H A Dlv_value.pass.cpp15 // operator=(const Cont::value_type& value);
26 const typename C::value_type v = typename C::value_type();
/external/libcxx/test/re/re.regex/
H A Dtypes.pass.cpp17 // typedef charT value_type;
26 static_assert((std::is_same<std::basic_regex<char>::value_type, char>::value), "");
31 static_assert((std::is_same<std::basic_regex<wchar_t>::value_type, wchar_t>::value), "");
/external/stlport/test/eh/
H A Dtest_hash_map.cpp54 TestMultiMap::value_type x;
56 testMultiMap2.insert( TestMultiMap::value_type() );
67 TestMultiMap::value_type *insFirst = new TestMultiMap::value_type[1+insCnt];
101 TestMap::value_type x;
103 testMap2.insert( TestMap::value_type() );
114 TestMap::value_type *insFirst = new TestMap::value_type[1+insCnt];
H A Dtest_hash_set.cpp50 TestMultiSet::value_type x;
52 testMultiSet2.insert( TestMultiSet::value_type() );
63 TestMultiSet::value_type *insFirst = new TestMultiSet::value_type[1+insCnt];
97 TestSet::value_type x;
99 testSet2.insert( TestSet::value_type() );
110 TestSet::value_type *insFirst = new TestSet::value_type[1+insCnt];
H A Dtest_map.cpp58 TestMultiMap::value_type x;
60 testMultiMap2.insert( TestMultiMap::value_type() );
66 TestMultiMap::value_type *insFirst = new TestMultiMap::value_type[insCnt];
106 TestMap::value_type x;
108 testMap2.insert( TestMap::value_type() );
114 TestMap::value_type *insFirst = new TestMap::value_type[1+insCnt];
H A Dtest_set.cpp47 TestMultiSet::value_type x;
49 testMultiSet2.insert( TestMultiSet::value_type() );
55 TestMultiSet::value_type *insFirst = new TestMultiSet::value_type[1+insCnt];
81 TestSet::value_type x;
83 testSet2.insert( TestSet::value_type() );
88 TestSet::value_type *insFirst = new TestSet::value_type[1+insCnt];
H A Dtest_rope.cpp56 TestRope::value_type x = TestRope::value_type(random_number(random_base)); // initialize before use
58 testRope2.push_back( TestRope::value_type() );
69 TestRope::value_type *insFirst = new TestRope::value_type[1+insCnt];
H A Dtest_string.cpp43 TestString::value_type x = TestString::value_type(random_number(random_base)) ; // initialize before use
45 testString2.append(1, TestString::value_type() );
56 TestString::value_type *insFirst = new TestString::value_type[1+insCnt];
/external/stlport/stlport/stl/pointers/
H A D_list.h73 typedef _Tp value_type; typedef in class:list
74 typedef value_type* pointer;
75 typedef const value_type* const_pointer;
76 typedef value_type& reference;
77 typedef const value_type& const_reference;
80 _STLP_FORCE_ALLOCATORS(value_type, _Alloc)
81 typedef typename _Alloc_traits<value_type, _Alloc>::allocator_type allocator_type;
84 typedef _STLP_PRIV _List_iterator<value_type, _Nonconst_traits<value_type> > iterator;
85 typedef _STLP_PRIV _List_iterator<value_type, _Const_trait
[all...]
/external/eigen/bench/btl/generic_bench/init/
H A Dinit_vector.hh26 // value_type defined
33 X[i]=typename Vector::value_type(init_function(i));
/external/libcxx/test/utilities/optional/optional.object/
H A Dtypes.pass.cpp16 // typedef T value_type;
30 static_assert(std::is_same<typename Opt::value_type, T>::value, "");
/external/stlport/stlport/stl/
H A D_alloc.c46 memset((char*)__result, __shred_byte, __real_n * sizeof(value_type));
48 __result->__type_size = sizeof(value_type);
70 for (__tmp= ((unsigned char*)__p) + __n * sizeof(value_type);
77 memset((char*)__p, __shred_byte, __n * sizeof(value_type));
H A D_complex.h37 typedef _Tp value_type; typedef in struct:complex
42 complex(const value_type& __x)
44 complex(const value_type& __x, const value_type& __y)
69 value_type real() const { return _M_re; }
70 value_type imag() const { return _M_im; }
74 _Self& operator= (const value_type& __x) {
79 _Self& operator+= (const value_type& __x) {
83 _Self& operator-= (const value_type& __x) {
87 _Self& operator*= (const value_type
181 typedef float value_type; typedef in struct:complex
319 typedef double value_type; typedef in struct:complex
459 typedef long double value_type; typedef in struct:complex
[all...]
/external/eigen/Eigen/src/StlSupport/
H A DStdList.h37 typedef __VA_ARGS__ value_type; \
45 explicit list(size_type num, const value_type& val = value_type()) : list_base(num, val) {} \
62 typedef T value_type; \
72 explicit list(size_type num, const value_type& val = value_type()) : list_base(num, val) {} \
91 void resize(size_type new_size, const value_type& x)
101 void push_back(const value_type& x)
104 iterator insert(const_iterator position, const value_type& x)
106 void insert(const_iterator position, size_type new_size, const value_type
[all...]
/external/libcxx/test/utilities/memory/allocator.traits/allocator.traits.types/
H A Drebind_alloc.pass.cpp28 typedef T value_type; typedef in struct:A
39 typedef T value_type; typedef in struct:B
47 typedef T value_type; typedef in struct:C
53 typedef T value_type; typedef in struct:D
59 typedef T value_type; typedef in struct:E
/external/libcxx/test/utilities/memory/allocator.traits/
H A Drebind_traits.pass.cpp28 typedef T value_type; typedef in struct:A
39 typedef T value_type; typedef in struct:B
47 typedef T value_type; typedef in struct:C
53 typedef T value_type; typedef in struct:D
59 typedef T value_type; typedef in struct:E

Completed in 610 milliseconds

1234567891011>>