Home
last modified time | relevance | path

Searched refs:weak_count (Results 1 – 3 of 3) sorted by relevance

/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/smart_ptr/detail/
Dshared_count.hpp59 class weak_count;
71 friend class weak_count;
331 explicit shared_count(weak_count const & r); // throws bad_weak_ptr when r.use_count() == 0
332 …shared_count( weak_count const & r, sp_nothrow_tag ); // constructs an empty *this when r.use_coun…
387 class weak_count class
401 weak_count(): pi_(0) // nothrow in weak_count() function in boost::detail::weak_count
408 weak_count(shared_count const & r): pi_(r.pi_) // nothrow in weak_count() function in boost::detail::weak_count
416 weak_count(weak_count const & r): pi_(r.pi_) // nothrow in weak_count() function in boost::detail::weak_count
428 weak_count(weak_count && r): pi_(r.pi_) // nothrow in weak_count() function in boost::detail::weak_count
438 ~weak_count() // nothrow in ~weak_count()
[all …]
/ndk/sources/android/crazy_linker/src/
Dcrazy_linker_library_list.cpp24 int weak_count; member
26 SymbolLookupState() : found_addr(NULL), weak_addr(NULL), weak_count(0) {} in SymbolLookupState()
43 if (++weak_count == 1) in CheckSymbol()
121 if (lookup_state.weak_count >= 1) { in FindSymbolFrom()
/ndk/sources/cxx-stl/stlport/stlport/
Dmemory87 class weak_count;