HomeSort by relevance Sort by last modified time
    Searched defs:DefaultDeleter (Results 1 - 3 of 3) sorted by null

  /external/deqp/framework/delibs/decpp/
deDefs.hpp 57 template<typename T> struct DefaultDeleter
59 inline DefaultDeleter (void) {}
60 template<typename U> inline DefaultDeleter (const DefaultDeleter<U>&) {}
61 template<typename U> inline DefaultDeleter<T>& operator= (const DefaultDeleter<U>&) { return *this; }
  /external/webrtc/webrtc/base/
scoped_ptr.h 103 struct DefaultDeleter {
104 DefaultDeleter() {}
105 template <typename U> DefaultDeleter(const DefaultDeleter<U>& other) {
129 // Specialization of DefaultDeleter for array types.
131 struct DefaultDeleter<T[]> {
149 struct DefaultDeleter<T[n]> {
300 // DefaultDeleter, sizeof(scoped_ptr<T>) == sizeof(T*). Custom deleters will
308 template <class T, class D = rtc::DefaultDeleter<T> >
  /external/opencv3/modules/core/include/opencv2/core/
cvstd.hpp 190 struct DefaultDeleter
241 instance of DefaultDeleter, which uses the standard C++ delete operator; as such it will work with
255 specialize DefaultDeleter<T>::operator() for that type, like this:
258 template<> void DefaultDeleter<FILE>::operator ()(FILE * obj) const
297 With the first constructor, DefaultDeleter\<Y\>() becomes the associated deleter (so p will

Completed in 564 milliseconds