Home
last modified time | relevance | path

Searched refs:v_ (Results 1 – 5 of 5) sorted by relevance

/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/support/
Dnasty_containers.hpp35 nasty_vector() : v_() {} in nasty_vector()
36 explicit nasty_vector(size_type n) : v_(n) {} in nasty_vector()
37 nasty_vector(size_type n, const value_type& value) : v_(n, value) {} in nasty_vector()
38 …template <class InputIterator> nasty_vector(InputIterator first, InputIterator last) : v_(first, l… in nasty_vector()
40 nasty_vector(std::initializer_list<value_type> il) : v_(il) {} in nasty_vector()
45 void assign(InputIterator first, InputIterator last) { v_.assign(first, last); } in assign()
46 void assign(size_type n, const value_type& u) { v_.assign(n, u); } in assign()
48 void assign(std::initializer_list<value_type> il) { v_.assign(il); } in assign()
51 iterator begin() _NOEXCEPT { return v_.begin(); } in begin()
52 const_iterator begin() const _NOEXCEPT { return v_.begin(); } in begin()
[all …]
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/smart_ptr/detail/
Dspinlock_pt.hpp30 pthread_mutex_t v_; member in boost::detail::spinlock
36 return pthread_mutex_trylock( &v_ ) == 0; in try_lock()
41 pthread_mutex_lock( &v_ ); in lock()
46 pthread_mutex_unlock( &v_ ); in unlock()
Dspinlock_sync.hpp34 int v_; member in boost::detail::spinlock
40 int r = __sync_lock_test_and_set( &v_, 1 ); in try_lock()
54 __sync_lock_release( &v_ ); in unlock()
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/exception/
Dexception.hpp99 value_type v_; member in boost::error_info
102 v_(v) in error_info()
113 value_type v_; member in boost::error_info
116 v_(v) in error_info()
127 value_type v_; member in boost::error_info
130 v_(v) in error_info()
287 x.throw_function_=y.v_; in set_info()
295 x.throw_file_=y.v_; in set_info()
303 x.throw_line_=y.v_; in set_info()
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/utility/
Daddressof.hpp26 T & v_; member
28 inline addr_impl_ref( T & v ): v_( v ) {} in addr_impl_ref()
29 inline operator T& () const { return v_; } in operator T&()