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

  /external/clang/test/CodeGenCXX/
debug-info-template-array.cpp 4 struct unique_ptr { struct
5 unique_ptr() {} function in struct:unique_ptr
13 unique_ptr<Vertex<2>[]> v = unique_ptr<Vertex<2>[]>();
debug-info-template-partial-specialization.cpp 22 template <class _Tp, class _Dp = default_delete<_Tp> > class unique_ptr class
25 unique_ptr(pointer __p, _Dp __d) {} function in class:unique_ptr
28 unique_ptr<C> Ptr;
  /external/clang/test/SemaCXX/
rval-references-examples.cpp 4 class unique_ptr { class
7 unique_ptr(const unique_ptr&) = delete; // expected-note 3{{'unique_ptr' has been explicitly marked deleted here}}
8 unique_ptr &operator=(const unique_ptr&) = delete; // expected-note{{candidate function has been explicitly deleted}}
10 unique_ptr() : ptr(0) { } function in class:unique_ptr
11 unique_ptr(unique_ptr &&other) : ptr(other.ptr) { other.ptr = 0; } function in class:unique_ptr
12 explicit unique_ptr(T *ptr) : ptr(ptr) { function in class:unique_ptr
    [all...]
  /bionic/linker/
linker.cpp 608 typedef UniquePtr<LoadTask, deleter_t> unique_ptr; typedef in class:LoadTask
922 for (LoadTask::unique_ptr task(load_tasks.pop_front()); task.get() != nullptr; task.reset(load_tasks.pop_front())) {
    [all...]

Completed in 60 milliseconds