HomeSort by relevance Sort by last modified time
    Searched refs:element_type (Results 1 - 25 of 155) sorted by null

1 2 3 4 5 6 7

  /external/libcxx/test/std/utilities/memory/pointer.traits/pointer.traits.functions/
pointer_to.pass.cpp 28 typedef T element_type; typedef in struct:A
29 element_type* t_;
31 A(element_type* t) : t_(t) {}
33 static A pointer_to(typename std::conditional<std::is_void<element_type>::value,
34 nat, element_type>::type& et)
46 (std::pointer_traits<A<void> >::element_type)0;
  /external/libcxx/test/std/utilities/memory/pointer.traits/pointer.traits.types/
element_type.pass.cpp 15 // typedef <details> element_type;
24 typedef char element_type; typedef in struct:A
30 typedef char element_type; typedef in struct:B
45 static_assert((std::is_same<std::pointer_traits<A>::element_type, char>::value), "");
46 static_assert((std::is_same<std::pointer_traits<B<int> >::element_type, char>::value), "");
47 static_assert((std::is_same<std::pointer_traits<C<int> >::element_type, int>::value), "");
48 static_assert((std::is_same<std::pointer_traits<D<double, int> >::element_type, double>::value), "");
difference_type.pass.cpp 24 typedef short element_type; typedef in struct:A
30 typedef short element_type; typedef in struct:B
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/pointer.traits/pointer.traits.functions/
pointer_to.pass.cpp 28 typedef T element_type; typedef in struct:A
29 element_type* t_;
31 A(element_type* t) : t_(t) {}
33 static A pointer_to(typename std::conditional<std::is_void<element_type>::value,
34 nat, element_type>::type& et)
46 (std::pointer_traits<A<void> >::element_type)0;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/pointer.traits/pointer.traits.types/
element_type.pass.cpp 15 // typedef <details> element_type;
24 typedef char element_type; typedef in struct:A
30 typedef char element_type; typedef in struct:B
45 static_assert((std::is_same<std::pointer_traits<A>::element_type, char>::value), "");
46 static_assert((std::is_same<std::pointer_traits<B<int> >::element_type, char>::value), "");
47 static_assert((std::is_same<std::pointer_traits<C<int> >::element_type, int>::value), "");
48 static_assert((std::is_same<std::pointer_traits<D<double, int> >::element_type, double>::value), "");
difference_type.pass.cpp 24 typedef short element_type; typedef in struct:A
30 typedef short element_type; typedef in struct:B
  /external/libcxx/test/std/utilities/memory/pointer.traits/
element_type.pass.cpp 15 // typedef T element_type;
24 static_assert((std::is_same<std::pointer_traits<const short*>::element_type, const short>::value), "");
pointer_to.pass.cpp 30 (std::pointer_traits<void*>::element_type)0;
pointer.pass.cpp 24 typedef short element_type; typedef in struct:A
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/pointer.traits/
element_type.pass.cpp 15 // typedef T element_type;
24 static_assert((std::is_same<std::pointer_traits<const short*>::element_type, const short>::value), "");
pointer_to.pass.cpp 30 (std::pointer_traits<void*>::element_type)0;
pointer.pass.cpp 24 typedef short element_type; typedef in struct:A
  /external/clang/test/CodeGenCXX/
linetable-eh.cpp 22 typedef _Tp element_type; typedef in class:shared_ptr
23 element_type* __ptr_;
25 element_type* operator->() const noexcept {return __ptr_;}
  /external/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.shared/
types.pass.cpp 15 // typedef T element_type;
25 static_assert((std::is_same<std::shared_ptr<A>::element_type, A>::value), "");
  /external/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.weak/
types.pass.cpp 15 // typedef T element_type;
25 static_assert((std::is_same<std::weak_ptr<A>::element_type, A>::value), "");
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/
types.pass.cpp 15 // typedef T element_type;
25 static_assert((std::is_same<std::shared_ptr<A>::element_type, A>::value), "");
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/util.smartptr/util.smartptr.weak/
types.pass.cpp 15 // typedef T element_type;
25 static_assert((std::is_same<std::weak_ptr<A>::element_type, A>::value), "");
  /external/webrtc/webrtc/base/
scoped_ptr.h 318 typedef T element_type; typedef in class:rtc::scoped_ptr
325 explicit scoped_ptr(element_type* p) : impl_(p) {}
328 scoped_ptr(element_type* p, const D& d) : impl_(p, d) {}
385 void reset(element_type* p = nullptr) { impl_.reset(p); }
389 element_type& operator*() const {
393 element_type* operator->() const {
397 element_type* get() const { return impl_.get(); }
403 // Allow scoped_ptr<element_type> to be used in boolean expressions, but not
411 typedef rtc::internal::scoped_ptr_impl<element_type, deleter_type>
422 bool operator==(const element_type* p) const { return impl_.get() == p;
469 typedef T element_type; typedef in class:rtc::scoped_ptr
    [all...]
  /external/libchrome/base/
scoped_generic.h 73 typedef T element_type; typedef in class:base::ScopedGeneric
80 explicit ScopedGeneric(const element_type& value) : data_(value) {}
83 ScopedGeneric(const element_type& value, const traits_type& traits)
105 void reset(const element_type& value = traits_type::InvalidValue()) {
124 element_type release() WARN_UNUSED_RESULT {
125 element_type old_generic = data_.generic;
130 const element_type& get() const { return data_.generic; }
136 bool operator==(const element_type& value) const {
139 bool operator!=(const element_type& value) const {
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/backward/
auto_ptr.h 94 typedef _Tp element_type; typedef in class:auto_ptr
103 auto_ptr(element_type* __p = 0) throw() : _M_ptr(__p) { }
119 * pointer-to-Tp/element_type.
146 * A pointer-to-Tp1 must be convertible to a pointer-to-Tp/element_type.
180 element_type&
193 element_type*
210 element_type*
224 element_type*
227 element_type* __tmp = _M_ptr;
240 reset(element_type* __p = 0) throw(
289 typedef void element_type; typedef in class:auto_ptr
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/backward/
auto_ptr.h 94 typedef _Tp element_type; typedef in class:auto_ptr
103 auto_ptr(element_type* __p = 0) throw() : _M_ptr(__p) { }
119 * pointer-to-Tp/element_type.
146 * A pointer-to-Tp1 must be convertible to a pointer-to-Tp/element_type.
180 element_type&
193 element_type*
210 element_type*
224 element_type*
227 element_type* __tmp = _M_ptr;
240 reset(element_type* __p = 0) throw(
289 typedef void element_type; typedef in class:auto_ptr
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/backward/
auto_ptr.h 94 typedef _Tp element_type; typedef in class:auto_ptr
103 auto_ptr(element_type* __p = 0) throw() : _M_ptr(__p) { }
119 * pointer-to-Tp/element_type.
146 * A pointer-to-Tp1 must be convertible to a pointer-to-Tp/element_type.
180 element_type&
193 element_type*
210 element_type*
224 element_type*
227 element_type* __tmp = _M_ptr;
240 reset(element_type* __p = 0) throw(
289 typedef void element_type; typedef in class:auto_ptr
    [all...]
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/backward/
auto_ptr.h 94 typedef _Tp element_type; typedef in class:auto_ptr
103 auto_ptr(element_type* __p = 0) throw() : _M_ptr(__p) { }
119 * pointer-to-Tp/element_type.
146 * A pointer-to-Tp1 must be convertible to a pointer-to-Tp/element_type.
180 element_type&
193 element_type*
210 element_type*
224 element_type*
227 element_type* __tmp = _M_ptr;
240 reset(element_type* __p = 0) throw(
289 typedef void element_type; typedef in class:auto_ptr
    [all...]
  /external/libcxx/test/std/depr/depr.auto.ptr/auto.ptr/
element_type.pass.cpp 16 // typedef X element_type;
27 static_assert((std::is_same<typename std::auto_ptr<T>::element_type, T>::value), "");
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.auto.ptr/auto.ptr/
element_type.pass.cpp 16 // typedef X element_type;
27 static_assert((std::is_same<typename std::auto_ptr<T>::element_type, T>::value), "");

Completed in 1694 milliseconds

1 2 3 4 5 6 7