Searched refs:value_type (Results 1 - 25 of 548) sorted by relevance

1234567891011>>

/external/clang/test/CXX/temp/temp.decls/temp.class/temp.mem.func/
H A Dp1-retmem.cpp9 typedef T value_type; typedef in struct:X0
12 value_type *f1();
13 X1<value_type*> f2();
22 typename X0<U>::value_type *X0<U>::f1() {
27 X1<typename X0<U>::value_type*> X0<U>::f2() {
/external/libcxx/test/std/numerics/numarray/template.valarray/
H A Dtypes.pass.cpp16 // typedef T value_type;
24 static_assert((std::is_same<std::valarray<int>::value_type, int>::value), "");
25 static_assert((std::is_same<std::valarray<double>::value_type, double>::value), "");
/external/libcxx/test/std/utilities/memory/allocator.traits/allocator.traits.members/
H A Dallocate_hint.pass.cpp25 typedef T value_type; typedef in struct:A
27 value_type* allocate(std::size_t n)
30 return (value_type*)0xDEADBEEF;
37 typedef T value_type; typedef in struct:B
39 value_type* allocate(std::size_t n)
42 return (value_type*)0xEEADBEEF;
44 value_type* allocate(std::size_t n, const void* p)
48 return (value_type*)0xFEADBEEF;
H A Dallocate.pass.cpp25 typedef T value_type; typedef in struct:A
27 value_type* allocate(std::size_t n)
30 return (value_type*)0xDEADBEEF;
H A Ddeallocate.pass.cpp27 typedef T value_type; typedef in struct:A
29 void deallocate(value_type* p, std::size_t n)
31 assert(p == (value_type*)0xDEADBEEF);
/external/libcxx/test/std/utilities/memory/allocator.traits/
H A Dvalue_type.pass.cpp15 // typedef typename Alloc::value_type value_type;
25 typedef T value_type; typedef in struct:A
30 static_assert((std::is_same<std::allocator_traits<A<char> >::value_type, char>::value), "");
/external/lldb/include/lldb/Utility/
H A DCleanUp.h59 typedef T value_type; typedef in class:lldb_utility::CleanUp
60 typedef R (*CallbackType)(value_type);
67 CleanUp (value_type value, CallbackType callback) :
81 CleanUp (value_type value, value_type invalid, CallbackType callback) :
101 value_type get()
109 const value_type
121 set (const value_type value)
168 value_type
176 value_type m_current_valu
190 typedef T value_type; typedef in class:lldb_utility::CleanUp2
[all...]
H A DRefCounter.h28 typedef uint32_t value_type; typedef in class:lldb_utility::RefCounter
30 RefCounter(value_type* ctr);
35 value_type* m_counter;
/external/libcxx/test/std/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.opindex/
H A Ddifference_type.pass.cpp25 typename std::iterator_traits<It>::value_type x)
27 typedef typename std::iterator_traits<It>::value_type value_type; typedef
29 value_type rr = r[n];
/external/libcxx/test/std/numerics/numarray/template.gslice.array/
H A Dtypes.pass.cpp16 // typedef T value_type;
23 static_assert((std::is_same<std::gslice_array<int>::value_type, int>::value), "");
/external/libcxx/test/std/numerics/numarray/template.indirect.array/
H A Dtypes.pass.cpp16 // typedef T value_type;
23 static_assert((std::is_same<std::indirect_array<int>::value_type, int>::value), "");
/external/libcxx/test/std/numerics/numarray/template.mask.array/
H A Dtypes.pass.cpp16 // typedef T value_type;
23 static_assert((std::is_same<std::mask_array<int>::value_type, int>::value), "");
/external/libcxx/test/std/numerics/numarray/template.slice.array/
H A Dtypes.pass.cpp16 // typedef T value_type;
23 static_assert((std::is_same<std::slice_array<int>::value_type, int>::value), "");
/external/libcxx/test/std/utilities/intseq/intseq.intseq/
H A Dinteger_seq.fail.cpp31 floatmix::value_type I;
H A Dinteger_seq.pass.cpp35 static_assert ( std::is_same<int3::value_type, int>::value, "int3 type wrong" );
38 static_assert ( std::is_same<size1::value_type, size_t>::value, "size1 type wrong" );
41 static_assert ( std::is_same<ushort2::value_type, unsigned short>::value, "ushort2 type wrong" );
44 static_assert ( std::is_same<bool0::value_type, bool>::value, "bool0 type wrong" );
/external/libcxx/test/std/utilities/intseq/intseq.make/
H A Dmake_integer_seq.fail.cpp23 std::make_integer_sequence<int, -3>::value_type i;
/external/clang/test/SemaCXX/
H A Dcxx11-call-to-deleted-constructor.cpp14 typedef VT value_type; typedef in class:cva::Matrix
15 inline __attribute__((always_inline)) value_type& at();
26 typedef VT value_type; typedef in class:cva::Matrix
27 Matrix(const unsigned int nRows, const unsigned int nColumns, const value_type* data = nullptr);
29 Matrix(const std::initializer_list<value_type>& list) = delete; // expected-note {{'Matrix' has been explicitly marked deleted here}}
/external/pdfium/core/src/fxge/agg/agg23/
H A Dagg_color_gray.h34 typedef int8u value_type; typedef in struct:agg::gray8
43 value_type v;
44 value_type a;
/external/lldb/source/Utility/
H A DRefCounter.cpp14 RefCounter::RefCounter(RefCounter::value_type* ctr):
/external/ceres-solver/internal/ceres/
H A Dmap_util.h58 const typename Collection::value_type::second_type&
60 const typename Collection::value_type::first_type& key) {
70 const typename Collection::value_type::second_type&
72 const typename Collection::value_type::first_type& key,
73 const typename Collection::value_type::second_type& value) {
88 const typename Collection::value_type::first_type& key,
89 const typename Collection::value_type::second_type& value) {
91 collection->insert(typename Collection::value_type(key, value));
99 typename Collection::value_type::second_type*
101 const typename Collection::value_type
123 typedef typename Collection::value_type value_type; typedef
[all...]
/external/libcxx/test/std/iterators/predef.iterators/insert.iterators/back.insert.iter.ops/back.insert.iter.op=/
H A Drv_value.pass.cpp14 // requires CopyConstructible<Cont::value_type>
16 // operator=(Cont::value_type&& value);
31 i = typename C::value_type();
32 assert(c.back() == typename C::value_type());
/external/libcxx/test/std/iterators/predef.iterators/insert.iterators/front.insert.iter.ops/front.insert.iter.op=/
H A Drv_value.pass.cpp15 // operator=(Cont::value_type&& value);
30 i = typename C::value_type();
31 assert(c.front() == typename C::value_type());
/external/llvm/include/llvm/Support/
H A DEndian.h38 template<typename value_type, endianness endian>
39 inline value_type byte_swap(value_type value) {
46 template<typename value_type,
49 inline value_type read(const void *memory) {
50 value_type ret;
54 (detail::PickAlignment<value_type, alignment>::value)),
55 sizeof(value_type));
56 return byte_swap<value_type, endian>(ret);
61 template<typename value_type, endiannes
[all...]
/external/protobuf/src/google/protobuf/stubs/
H A Dmap-util.h46 const typename Collection::value_type::second_type&
48 const typename Collection::value_type::first_type& key,
49 const typename Collection::value_type::second_type& value) {
61 const typename Collection::value_type::second_type*
63 const typename Collection::value_type::first_type& key) {
77 const typename Collection::value_type::second_type
79 const typename Collection::value_type::first_type& key) {
95 collection->insert(typename Collection::value_type(key, value));
112 collection->insert(typename Collection::value_type(key, value));
/external/libcxx/test/std/containers/unord/unord.map/
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...]

Completed in 590 milliseconds

1234567891011>>