Searched refs:_Ptr (Results 1 – 7 of 7) sorted by relevance
/external/pdfium/xfa/src/fxbarcode/ |
D | utils.h | 23 explicit CBC_AutoPtr(_Ty* _P = 0) : _Owns(_P != 0), _Ptr(_P) {} 25 : _Owns(_Y._Owns), _Ptr(_Y.release()) {} in CBC_AutoPtr() 28 if (_Ptr != _Y.get()) { 30 delete _Ptr; variable 36 _Ptr = _Y.release(); 42 delete _Ptr; in ~CBC_AutoPtr() local 47 _Ty* get() const { return (_Ptr); } in get() 50 return (_Ptr); in release() 55 _Ty* _Ptr; variable
|
/external/clang/test/SemaTemplate/ |
D | deduction-crash.cpp | 105 template <class _Ptr, bool> struct __pointer_traits_element_type; 106 template <class _Ptr> struct __pointer_traits_element_type<_Ptr, true>;
|
/external/clang/test/SemaCXX/ |
D | MicrosoftCompatibility.cpp | 220 void del(_Ty *_Ptr) { in del() argument 221 _Ptr->~_Ty(); // expected-warning {{pseudo-destructors on type void are a Microsoft extension}} in del()
|
/external/opencv3/modules/videoio/src/ |
D | ppltasks_winrt.hpp | 6302 _ProgressDispatcher(_ClassPtrType _Ptr) : _M_ptr(_Ptr) 6350 static progress_reporter _CreateReporter(_ClassPtrType _Ptr) 6353 …ProgressType> *_PDispatcher = new details::_ProgressDispatcher<_ProgressType, _ClassPtrType>(_Ptr); 6956 …static auto _GenerateTaskNoRet(const _Function& _Func, _ClassPtr _Ptr, Concurrency::cancellation_t… 6959 (void)_Ptr; 6964 …static auto _GenerateTask(const _Function& _Func, _ClassPtr _Ptr, Concurrency::cancellation_token_… 6971 …static auto _GenerateTaskNoRet(const _Function& _Func, _ClassPtr _Ptr, Concurrency::cancellation_t… 6974 (void)_Ptr; 6979 …static auto _GenerateTask(const _Function& _Func, _ClassPtr _Ptr, Concurrency::cancellation_token_… 6992 …static auto _GenerateTaskNoRet(const _Function& _Func, _ClassPtr _Ptr, Concurrency::cancellation_t… [all …]
|
/external/opencv3/modules/highgui/src/ |
D | ppltasks_winrt.h | 6302 _ProgressDispatcher(_ClassPtrType _Ptr) : _M_ptr(_Ptr) 6350 static progress_reporter _CreateReporter(_ClassPtrType _Ptr) 6353 …ProgressType> *_PDispatcher = new details::_ProgressDispatcher<_ProgressType, _ClassPtrType>(_Ptr); 6956 …static auto _GenerateTaskNoRet(const _Function& _Func, _ClassPtr _Ptr, Concurrency::cancellation_t… 6959 (void)_Ptr; 6964 …static auto _GenerateTask(const _Function& _Func, _ClassPtr _Ptr, Concurrency::cancellation_token_… 6971 …static auto _GenerateTaskNoRet(const _Function& _Func, _ClassPtr _Ptr, Concurrency::cancellation_t… 6974 (void)_Ptr; 6979 …static auto _GenerateTask(const _Function& _Func, _ClassPtr _Ptr, Concurrency::cancellation_token_… 6992 …static auto _GenerateTaskNoRet(const _Function& _Func, _ClassPtr _Ptr, Concurrency::cancellation_t… [all …]
|
/external/libcxx/include/ |
D | memory | 679 template <class _Ptr, bool = __has_element_type<_Ptr>::value> 682 template <class _Ptr> 683 struct __pointer_traits_element_type<_Ptr, true> 685 typedef typename _Ptr::element_type type; 767 template <class _Ptr, bool = __has_difference_type<_Ptr>::value> 773 template <class _Ptr> 774 struct __pointer_traits_difference_type<_Ptr, true> 776 typedef typename _Ptr::difference_type type; 890 template <class _Ptr> 893 typedef _Ptr pointer; [all …]
|
D | string | 1119 template<class _Ptr> 1120 size_t _LIBCPP_INLINE_VISIBILITY __do_string_hash(_Ptr __p, _Ptr __e) 1122 typedef typename iterator_traits<_Ptr>::value_type value_type;
|