Home
last modified time | relevance | path

Searched refs:explicit (Results 1 – 25 of 153) sorted by relevance

1234567

/reactos/sdk/include/c++/stlport/stl/
H A D_function_adaptors.h68 explicit _Mem_fun0_ptr(__fun_type __f) : _M_f(__f) {} in _Mem_fun0_ptr()
81 explicit _Mem_fun1_ptr(__fun_type __f) : _M_f(__f) {} in _Mem_fun1_ptr()
121 explicit _Mem_fun0_ref(__fun_type __f) : _M_f(__f) {} in _Mem_fun0_ref()
134 explicit _Mem_fun1_ref(__fun_type __f) : _M_f(__f) {} in _Mem_fun1_ref()
192 explicit _Ptr_fun1_base(__fun_type __f) : _M_f(__f) {} in _Ptr_fun1_base()
205 explicit _Ptr_fun2_base(__fun_type __f) : _M_f(__f) {} in _Ptr_fun2_base()
482 explicit pointer_to_unary_function(__fun_type __f)
492 explicit pointer_to_binary_function(__fun_type __f)
502 explicit mem_fun_t(__fun_type __pf) : _M_f(__pf) {}
522 explicit mem_fun_ref_t(__fun_type __pf) : _M_f(__pf) {}
[all …]
H A D_monetary.h60 explicit money_get(size_t __refs = 0) : locale::facet(__refs) {} in facet()
90 explicit moneypunct _STLP_PSPEC2(char, true) (size_t __refs = 0);
130 explicit moneypunct _STLP_PSPEC2(char, false) (size_t __refs = 0);
172 explicit moneypunct _STLP_PSPEC2(wchar_t, true) (size_t __refs = 0);
211 explicit moneypunct _STLP_PSPEC2(wchar_t, false) (size_t __refs = 0);
256 explicit moneypunct_byname _STLP_PSPEC2(char, true) (const char * __name, size_t __refs = 0);
289 explicit moneypunct_byname _STLP_PSPEC2(char, false) (const char * __name, size_t __refs = 0);
323 explicit moneypunct_byname _STLP_PSPEC2(wchar_t, true) (const char * __name, size_t __refs = 0);
356 explicit moneypunct_byname _STLP_PSPEC2(wchar_t, false) (const char * __name, size_t __refs = 0);
394 explicit money_put(size_t __refs = 0) : locale::facet(__refs) {} in facet()
H A D_numpunct.h53 explicit numpunct(size_t __refs = 0)
82 explicit numpunct(size_t __refs = 0)
112 explicit numpunct_byname(const char* __name, size_t __refs = 0);
144 explicit numpunct_byname(const char* __name, size_t __refs = 0);
H A D_collate.h48 explicit collate(size_t __refs = 0) : locale::facet(__refs) {} in facet()
84 explicit collate(size_t __refs = 0) : locale::facet(__refs) {} in facet()
118 explicit collate_byname(const char* __name, size_t __refs = 0);
141 explicit collate_byname(const char * __name, size_t __refs = 0);
H A D_messages_facets.h61 explicit messages(size_t __refs = 0);
94 explicit messages(size_t __refs = 0);
129 explicit messages_byname(const char* __name, size_t __refs = 0);
157 explicit messages_byname(const char* __name, size_t __refs = 0);
H A D_strstream.h54 explicit strstreambuf(streamsize _Initial_capacity = 0);
104 explicit istrstream(char*);
105 explicit istrstream(const char*);
H A D_fstream.h471 explicit basic_ifstream(const char* __s, ios_base::openmode __mod = ios_base::in) :
480 explicit basic_ifstream(int __id, ios_base::openmode __mod = ios_base::in) :
495 explicit basic_ifstream(_STLP_fd __id, ios_base::openmode __mod = ios_base::in) :
551 explicit basic_ofstream(const char* __s, ios_base::openmode __mod = ios_base::out)
559 explicit basic_ofstream(int __id, ios_base::openmode __mod = ios_base::out)
573 explicit basic_ofstream(_STLP_fd __id, ios_base::openmode __mod = ios_base::out)
631 explicit basic_fstream(const char* __s,
640 explicit basic_fstream(int __id,
654 explicit basic_fstream(_STLP_fd __id,
H A D_codecvt.h60 explicit codecvt(size_t __refs = 0) : locale::facet(__refs) {}
180 explicit codecvt(size_t __refs = 0) : locale::facet(__refs) {} in facet()
277 explicit codecvt(size_t __refs = 0) : locale::facet(__refs) {} in facet()
374 explicit codecvt_byname(const char* __name, size_t __refs = 0);
387 explicit codecvt_byname(const char * __name, size_t __refs = 0);
H A D_ctype.h77 explicit ctype(const mask* __tab = 0, bool __del = false, size_t __refs = 0);
150 explicit ctype_byname(const char*, size_t = 0);
181 explicit ctype(size_t __refs = 0) : locale::facet(__refs) {} in facet()
243 explicit ctype_byname(const char* __name, size_t __refs = 0);
H A D_time_facets.h136 explicit time_get(size_t __refs = 0) : locale::facet(__refs) in facet()
203 explicit time_get_byname(const char* __name, size_t __refs = 0)
253 explicit time_put(size_t __refs = 0) : locale::facet(__refs) in facet()
291 explicit time_put_byname(const char * __name, size_t __refs = 0)
H A D_iterator.h64 explicit reverse_iterator(iterator_type __x) : current(__x) {} in reverse_iterator()
171 explicit back_insert_iterator(_Container& __x) : container(&__x) {} in back_insert_iterator()
200 explicit front_insert_iterator(_Container& __x) : container(&__x) {} in front_insert_iterator()
H A D_istream.h86 explicit basic_istream(basic_streambuf<_CharT, _Traits>* __buf) : in basic_istream()
198 explicit sentry(basic_istream<_CharT, _Traits>& __istr,
333 explicit basic_iostream(basic_streambuf<_CharT, _Traits>* __buf);
H A D_locale.h84 explicit facet(size_t __init_count = 0) : _Refcount_Base( __init_count == 0 ? 0 : 1 ) {}
120 explicit locale(const char *);
222 explicit locale(const char *__str) : _Locale(__str) {} in locale()
H A D_map.h101 explicit map(const _Compare& __comp, in _STLP_CREATE_ITERATOR_TRAITS()
104 explicit map(const _Compare& __comp) in _STLP_CREATE_ITERATOR_TRAITS()
106 explicit map(const _Compare& __comp, const allocator_type& __a) in _STLP_CREATE_ITERATOR_TRAITS()
293 explicit multimap(const _Compare& __comp, in _STLP_CREATE_ITERATOR_TRAITS()
H A D_set.h89 explicit set(const _Compare& __comp = _Compare(), in _STLP_CREATE_ITERATOR_TRAITS()
94 explicit set(const _Compare& __comp) in _STLP_CREATE_ITERATOR_TRAITS()
258 explicit multiset(const _Compare& __comp = _Compare(), in _STLP_CREATE_ITERATOR_TRAITS()
263 explicit multiset(const _Compare& __comp) in _STLP_CREATE_ITERATOR_TRAITS()
H A D_raw_storage_iter.h53 explicit raw_storage_iterator(_ForwardIterator __x) : _M_iter(__x) {} in raw_storage_iterator()
/reactos/sdk/lib/atl/
H A Datlsync.h66 explicit CEvent(HANDLE hEvent) : CHandle(hEvent) in CEvent()
115 explicit CMutex(BOOL bInitialOwner) in CMutex()
125 explicit CMutex(HANDLE hMutex) : CHandle(hMutex) in CMutex()
172 explicit CSemaphore(HANDLE hSemaphore) : CHandle(hSemaphore) in CSemaphore()
H A Datlalloc.h105 explicit CHeapPtr(T *lp) : in CHeapPtr()
110 explicit CHeapPtr(CHeapPtr<T, Allocator> &lp) in CHeapPtr()
/reactos/sdk/lib/3rdparty/stlport/test/unit/cppunit/
H A Dfile_reporter.h34 explicit FileReporter(bool doMonitor = false):
40 explicit FileReporter(const char* file, bool doMonitor = false):
52 explicit FileReporter(FILE* stream, bool doMonitor = false):
/reactos/sdk/include/c++/stlport/stl/pointers/
H A D_vector.h106 explicit vector(const allocator_type& __a = allocator_type())
110 explicit vector(size_type __n, const value_type& __val = _STLP_DEFAULT_CONSTRUCTED(value_type),
119 explicit vector(size_type __n) in vector()
127 explicit vector(__move_source<_Self> src) in vector()
/reactos/sdk/include/crt/
H A Dyvals.h206 explicit __thiscall _Lockit();
207 explicit __thiscall _Lockit(int);
/reactos/modules/rostests/rosautotest/
H A Dauto_array_ptr.h18 explicit auto_array_ptr(Type* Ptr = 0) throw() in throw()
/reactos/sdk/include/c++/stlport/stl/debug/
H A D_deque.h129 explicit deque(const allocator_type& __a = allocator_type()) :
136 explicit deque(size_type __n, const value_type& __x = _Tp(),
143 explicit deque(size_type __n) : in deque()
H A D_vector.h174 explicit vector(const allocator_type& __a = allocator_type())
178 explicit vector(size_type __n, const _Tp& __x = _Tp(),
186 explicit vector(size_type __n)
/reactos/sdk/include/vcruntime/
H A Dcomip.h56 template<typename _X> explicit _com_ptr_t(_com_ptr_t *p) : m_pInterface(NULL) { in _com_ptr_t()
81explicit _com_ptr_t(const CLSID &clsid,IUnknown *pOuter = NULL,DWORD dwClsContext = CLSCTX_ALL) : … in m_pInterface()
85explicit _com_ptr_t(LPCWSTR str,IUnknown *pOuter = NULL,DWORD dwClsContext = CLSCTX_ALL) : m_pInte… in m_pInterface()
89explicit _com_ptr_t(LPCSTR str,IUnknown *pOuter = NULL,DWORD dwClsContext = CLSCTX_ALL) : m_pInter… in m_pInterface()

1234567