Searched refs:_Refcount_Base (Results 1 - 6 of 6) sorted by relevance

/external/clang/test/CodeGenCXX/
H A D2006-10-30-ClassBitfield.cpp4 struct _Refcount_Base { struct
7 _Refcount_Base() : _M_ref_count(0) {} function in struct:_Refcount_Base
10 struct _Rope_RopeRep : public _Refcount_Base
/external/stlport/src/
H A Dlocale_impl.h60 class _STLP_CLASS_DECLSPEC _Locale_impl : public _Refcount_Base {
85 _Refcount_Base& _M_count() const;
H A Dlocale_impl.cpp69 _Refcount_Base& _Locale_impl::Init::_M_count() const {
70 static _Refcount_Base _S_count(0);
75 : _Refcount_Base(0), name(s), facets_vec() {
81 : _Refcount_Base(0), name(locimpl.name), facets_vec() {
88 : _Refcount_Base(0), name(s), facets_vec(n, 0) {
/external/stlport/stlport/stl/
H A D_threads.h436 * Class _Refcount_Base provides a type, __stl_atomic_t, a data member,
441 class _STLP_CLASS_DECLSPEC _Refcount_Base { class
457 _Refcount_Base(__stl_atomic_t __n) : _M_ref_count(__n) {} function in class:_Refcount_Base
459 ~_Refcount_Base(){};
H A D_locale.h80 class _STLP_CLASS_DECLSPEC facet : protected _Refcount_Base {
83 * size_t instance and _Refcount_Base use __stl_atomic_t instances that might
86 explicit facet(size_t __init_count = 0) : _Refcount_Base( __init_count == 0 ? 0 : 1 ) {}
94 facet(const facet& ) /* : _Refcount_Base(1) {} */;
H A D_rope.h328 : public _Refcount_Base
365 _Rope_RopeRep() : _Refcount_Base(1), _M_size(allocator_type(), 0) {
380 _Refcount_Base(1),

Completed in 102 milliseconds