Searched refs:value_type (Results 251 - 275 of 548) sorted by relevance

<<11121314151617181920>>

/external/libcxx/test/std/utilities/memory/default.allocator/
H A Dallocator_types.pass.cpp24 // typedef T value_type;
40 static_assert((std::is_same<std::allocator<char>::value_type, char>::value), "");
/external/libcxx/test/std/containers/associative/multiset/
H A Demplace.pass.cpp66 R r = m.emplace(M::value_type(2));
76 R r = m.emplace(M::value_type(2));
H A Demplace_hint.pass.cpp66 R r = m.emplace_hint(m.cend(), M::value_type(2));
76 R r = m.emplace_hint(m.cend(), M::value_type(2));
H A Dtypes.pass.cpp19 // typedef key_type value_type;
42 static_assert((std::is_same<C::value_type, int>::value), "");
57 static_assert((std::is_same<C::value_type, int>::value), "");
/external/libcxx/test/std/containers/sequences/deque/deque.cons/
H A Diter_iter.pass.cpp25 typedef typename std::iterator_traits<InputIterator>::value_type T;
40 typedef typename std::iterator_traits<InputIterator>::value_type T;
/external/libcxx/test/std/containers/sequences/forwardlist/
H A Dtypes.pass.cpp16 // typedef T value_type;
19 // typedef value_type& reference;
20 // typedef const value_type& const_reference;
39 static_assert((std::is_same<C::value_type, char>::value), "");
51 static_assert((std::is_same<C::value_type, char>::value), "");
/external/libcxx/test/std/containers/sequences/vector/vector.cons/
H A Dconstruct_size.pass.cpp34 assert(*i == typename C::value_type());
50 assert(*i == typename C::value_type());
/external/libcxx/test/std/containers/unord/unord.multimap/unord.multimap.modifiers/
H A Dinsert_const_lvalue.pass.cpp16 // iterator insert(const value_type& x);
28 typedef C::value_type P;
55 typedef C::value_type P;
/external/libcxx/test/std/containers/unord/unord.set/
H A Dinsert_const_lvalue.pass.cpp16 // pair<iterator, bool> insert(const value_type& x);
28 typedef C::value_type P;
55 typedef C::value_type P;
/external/libcxx/test/std/experimental/string.view/string.view.find/
H A Dfind_first_not_of_char_size.pass.cpp21 test(const S& s, typename S::value_type c, typename S::size_type pos,
31 test(const S& s, typename S::value_type c, typename S::size_type x)
H A Dfind_last_not_of_char_size.pass.cpp21 test(const S& s, typename S::value_type c, typename S::size_type pos,
31 test(const S& s, typename S::value_type c, typename S::size_type x)
H A Drfind_char_size.pass.cpp20 test(const S& s, typename S::value_type c, typename S::size_type pos,
30 test(const S& s, typename S::value_type c, typename S::size_type x)
/external/libcxx/test/std/re/re.submatch/
H A Dtypes.pass.cpp18 // typedef typename iterator_traits<iterator>::value_type value_type;
20 // typedef basic_string<value_type> string_type;
35 static_assert((std::is_same<SM::value_type, char>::value), "");
48 static_assert((std::is_same<SM::value_type, wchar_t>::value), "");
/external/libcxx/test/support/
H A Dtest_iterators.h30 typedef void value_type; typedef in class:output_iterator
60 typedef typename std::iterator_traits<It>::value_type value_type; typedef in class:input_iterator
112 typedef typename std::iterator_traits<It>::value_type value_type; typedef in class:forward_iterator
164 typedef typename std::iterator_traits<It>::value_type value_type; typedef in class:bidirectional_iterator
215 typedef typename std::iterator_traits<It>::value_type value_type; typedef in class:random_access_iterator
/external/lldb/source/Core/
H A DValueObjectVariable.cpp160 Value::ValueType value_type = m_value.GetValueType(); local
162 switch (value_type)
177 switch (value_type)
200 if (value_type == Value::eValueTypeFileAddress && process && process->IsAlive())
229 SetValueDidChange (value_type != old_value.GetValueType() || m_value.GetScalar() != old_value.GetScalar());
H A DValueObjectChild.cpp126 Value::ValueType value_type = parent->GetValue().GetValueType(); local
127 m_value.SetValueType (value_type);
173 switch (value_type)
/external/llvm/include/llvm/ADT/
H A DImmutableSet.h41 typedef typename ImutInfo::value_type value_type; typedef in class:llvm::ImutAVLTree
69 const value_type& getValue() const { return value; }
232 value_type value;
819 const typename T::value_type> {
838 typedef const T value_type; typedef in struct:llvm::ImutProfileInfo
849 typedef const T value_type; typedef in struct:llvm::ImutProfileInteger
876 typedef const bool value_type; typedef in struct:llvm::ImutProfileInfo
889 typedef const T* value_type; typedef in struct:llvm::ImutProfileInfo
890 typedef value_type value_type_re
910 typedef typename ImutProfileInfo<T>::value_type value_type; typedef in struct:llvm::ImutContainerInfo
936 typedef typename ImutProfileInfo<T*>::value_type value_type; typedef in struct:llvm::ImutContainerInfo
960 typedef typename ValInfo::value_type value_type; typedef in class:llvm::ImmutableSet
1110 typedef typename ValInfo::value_type value_type; typedef in class:llvm::ImmutableSetRef
[all...]
H A DSetVector.h39 typedef T value_type; typedef in class:llvm::SetVector
102 bool insert(const value_type &X) {
118 bool remove(const value_type& X) {
/external/libcxx/test/std/containers/associative/map/
H A Dtypes.pass.cpp20 // typedef pair<const key_type, mapped_type> value_type;
43 static_assert((std::is_same<C::value_type, std::pair<const int, double> >::value), "");
58 static_assert((std::is_same<C::value_type, std::pair<const int, double> >::value), "");
/external/libcxx/test/std/containers/associative/multimap/multimap.cons/
H A Dinitializer_list_compare_alloc.pass.cpp14 // multimap(initializer_list<value_type> il, const key_compare& comp, const allocator_type& a);
29 typedef C::value_type V;
65 typedef C::value_type V;
/external/libcxx/test/std/containers/associative/multimap/
H A Dtypes.pass.cpp20 // typedef pair<const key_type, mapped_type> value_type;
43 static_assert((std::is_same<C::value_type, std::pair<const int, double> >::value), "");
58 static_assert((std::is_same<C::value_type, std::pair<const int, double> >::value), "");
/external/libcxx/test/std/containers/associative/set/
H A Demplace.pass.cpp71 R r = m.emplace(M::value_type(2));
82 R r = m.emplace(M::value_type(2));
H A Demplace_hint.pass.cpp66 R r = m.emplace_hint(m.cend(), M::value_type(2));
76 R r = m.emplace_hint(m.cend(), M::value_type(2));
H A Dtypes.pass.cpp19 // typedef key_type value_type;
42 static_assert((std::is_same<C::value_type, int>::value), "");
57 static_assert((std::is_same<C::value_type, int>::value), "");
/external/libcxx/test/std/containers/unord/unord.map/unorder.map.modifiers/
H A Dinsert_const_lvalue.pass.cpp16 // pair<iterator, bool> insert(const value_type& x);
28 typedef C::value_type P;
59 typedef C::value_type P;

Completed in 513 milliseconds

<<11121314151617181920>>