HomeSort by: relevance | last modified time | path
    Searched defs:unique_ptr (Results 1 - 4 of 4) sorted by relevancy

  /src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/
unique_ptr.h 2 // unique_ptr implementation -*- C++ -*-
26 /** @file bits/unique_ptr.h
63 /** Primary template of default_delete, used by unique_ptr for single objects
100 /** Specialization of default_delete for arrays, used by `unique_ptr<T[]>`
140 // Manages the pointer and deleter of a unique_ptr
165 "unique_ptr's deleter type must be a function object type"
265 // 20.7.1.2 unique_ptr for single objects.
271 class unique_ptr class
286 // unique_ptr
289 is_convertible<typename unique_ptr<_Up, _Ep>::pointer, pointer>
538 class unique_ptr<_Tp[], _Dp> class
    [all...]
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/
unique_ptr.h 0 // unique_ptr implementation -*- C++ -*-
25 /** @file bits/unique_ptr.h
68 /** Primary template of default_delete, used by unique_ptr for single objects
105 /** Specialization of default_delete for arrays, used by `unique_ptr<T[]>`
145 // Manages the pointer and deleter of a unique_ptr
170 "unique_ptr's deleter type must be a function object type"
270 // 20.7.1.2 unique_ptr for single objects.
276 class unique_ptr class
291 // unique_ptr
294 is_convertible<typename unique_ptr<_Up, _Ep>::pointer, pointer>
534 class unique_ptr<_Tp[], _Dp> class
    [all...]
  /src/external/apache2/llvm/dist/libcxx/include/__memory/
unique_ptr.h 118 class _LIBCPP_UNIQUE_PTR_TRIVIAL_ABI _LIBCPP_TEMPLATE_VIS unique_ptr { class
177 _LIBCPP_CONSTEXPR unique_ptr() _NOEXCEPT : __ptr_(pointer(), __default_init_tag()) {}
182 _LIBCPP_CONSTEXPR unique_ptr(nullptr_t) _NOEXCEPT : __ptr_(pointer(), __default_init_tag()) {}
187 explicit unique_ptr(pointer __p) _NOEXCEPT : __ptr_(__p, __default_init_tag()) {}
192 unique_ptr(pointer __p, _LValRefType<_Dummy> __d) _NOEXCEPT
198 unique_ptr(pointer __p, _GoodRValRefType<_Dummy> __d) _NOEXCEPT
207 unique_ptr(pointer __p, _BadRValRefType<_Dummy> __d) = delete;
210 unique_ptr(unique_ptr&& __u) _NOEXCEPT
215 class = _EnableIfMoveConvertible<unique_ptr<_Up, _Ep>, _Up>
326 class _LIBCPP_UNIQUE_PTR_TRIVIAL_ABI _LIBCPP_TEMPLATE_VIS unique_ptr<_Tp[], _Dp> { class
    [all...]
  /src/external/mit/isl/dist/interface/
extract_interface.cc 101 #define unique_ptr llvm::OwningPtr macro
274 const unique_ptr<Driver> driver(construct_driver(binary, Diags));
278 const unique_ptr<Compilation> compilation(

Completed in 29 milliseconds