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

1 2 3 4 5 6 7 8 91011

  /external/libcxx/test/std/utilities/memory/pointer.traits/pointer.traits.types/
element_type.pass.cpp 15 // typedef <details> element_type;
26 typedef char element_type; typedef in struct:A
32 typedef char element_type; typedef in struct:B
48 static int element_type; member in struct:E
54 typedef int element_type; typedef in struct:F
59 static_assert((std::is_same<std::pointer_traits<A>::element_type, char>::value), "");
60 static_assert((std::is_same<std::pointer_traits<B<int> >::element_type, char>::value), "");
61 static_assert((std::is_same<std::pointer_traits<C<int> >::element_type, int>::value), "");
62 static_assert((std::is_same<std::pointer_traits<D<double, int> >::element_type, double>::value), "");
63 static_assert((std::is_same<std::pointer_traits<E<double, int> >::element_type, double>::value), "")
    [all...]
difference_type.pass.cpp 26 typedef short element_type; typedef in struct:A
32 typedef short element_type; typedef in struct:B
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/memory/pointer.traits/pointer.traits.types/
element_type.pass.cpp 15 // typedef <details> element_type;
26 typedef char element_type; typedef in struct:A
32 typedef char element_type; typedef in struct:B
48 static int element_type; member in struct:E
54 typedef int element_type; typedef in struct:F
59 static_assert((std::is_same<std::pointer_traits<A>::element_type, char>::value), "");
60 static_assert((std::is_same<std::pointer_traits<B<int> >::element_type, char>::value), "");
61 static_assert((std::is_same<std::pointer_traits<C<int> >::element_type, int>::value), "");
62 static_assert((std::is_same<std::pointer_traits<D<double, int> >::element_type, double>::value), "");
63 static_assert((std::is_same<std::pointer_traits<E<double, int> >::element_type, double>::value), "")
    [all...]
difference_type.pass.cpp 26 typedef short element_type; typedef in struct:A
32 typedef short element_type; typedef in struct:B
  /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;
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/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/
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
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/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
  /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.weak/
types.pass.cpp 15 // typedef T element_type;
25 static_assert((std::is_same<std::weak_ptr<A>::element_type, A>::value), "");
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/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), "");
  /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 70 typedef T element_type; typedef in class:base::ScopedGeneric
77 explicit ScopedGeneric(const element_type& value) : data_(value) {}
80 ScopedGeneric(const element_type& value, const traits_type& traits)
102 void reset(const element_type& value = traits_type::InvalidValue()) {
121 element_type release() WARN_UNUSED_RESULT {
122 element_type old_generic = data_.generic;
127 const element_type& get() const { return data_.generic; }
133 bool operator==(const element_type& value) const {
136 bool operator!=(const element_type& value) const {
  /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...]
  /external/libcxx/test/std/depr/depr.auto.ptr/auto.ptr/
element_type.pass.cpp 16 // typedef X element_type;
29 static_assert((std::is_same<typename std::auto_ptr<T>::element_type, T>::value), "");
  /external/libcxx/test/std/utilities/memory/util.smartptr/util.smartptr.shared/
types.pass.cpp 15 // typedef T element_type;
28 static_assert((std::is_same<std::shared_ptr<A>::element_type, A>::value), "");
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/depr/depr.auto.ptr/auto.ptr/
element_type.pass.cpp 16 // typedef X element_type;
29 static_assert((std::is_same<typename std::auto_ptr<T>::element_type, T>::value), "");
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/memory/util.smartptr/util.smartptr.shared/
types.pass.cpp 15 // typedef T element_type;
28 static_assert((std::is_same<std::shared_ptr<A>::element_type, A>::value), "");
  /external/autotest/client/site_tests/webrtc_PausePlayPeerConnections/
webrtc_PausePlayPeerConnections.py 14 def run_once(self, mode = 'functional', element_type='video'):
19 @param element_type: the element type to use for feeds, video or audio.
30 "elementType = '{}'".format(element_type))
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/
pointer.h 61 * 3) An element_type typedef to define the type this points to.
70 typedef _Tp element_type; typedef in class:_Std_pointer_impl
79 set(element_type* __arg)
92 element_type* _M_value;
112 typedef _Tp element_type; typedef in class:_Relative_pointer_impl
164 typedef const _Tp element_type; typedef in class:_Relative_pointer_impl
284 typedef typename _Storage_policy::element_type element_type; typedef in class:_Pointer_adapter
288 typedef typename _Unqualified_type<element_type>::type value_type;
291 typedef typename _Reference_type<element_type>::reference reference
577 typedef typename pointer::element_type element_type; typedef in struct:pointer_traits
    [all...]

Completed in 620 milliseconds

1 2 3 4 5 6 7 8 91011