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

  /device/generic/goldfish/opengl/shared/OpenglCodecCommon/
SmartPtr.h 23 class SmartPtr
26 explicit SmartPtr(T* ptr = (T*)NULL) {
40 SmartPtr<T,threadSafe>(const SmartPtr<T,false>& rhs) {
52 SmartPtr<T,threadSafe>(SmartPtr<T,true>& rhs) {
66 ~SmartPtr() {
99 bool operator <(const SmartPtr<T>& t1) const {
103 SmartPtr<T,threadSafe>& operator=(const SmartPtr<T,false>& rhs
    [all...]
  /sdk/emulator/opengl/shared/emugl/common/
smart_ptr.h 24 // Base class for all templated SmartPtr<> instances. Reduces
26 // detail of SmartPtr<>, so don't rely on anything here.
75 // SmartPtr<Foo> ptr(new Foo()); // takes ownership.
76 // SmartPtr<Foo> ptr2; // empty pointer.
90 // SmartPtr<Foo> ptr(foo); // |ptr| takes ownership of |foo|.
91 // SmartPtr<Foo> ptr2(foo); // |ptr2| takes also ownership of |foo|.
98 class SmartPtr : public emugl::SmartPtrBase {
101 SmartPtr() : SmartPtrBase() {}
104 explicit SmartPtr(T* ptr) : SmartPtrBase(ptr) {}
108 SmartPtr(const SmartPtr& other
    [all...]
  /external/clang/test/PCH/
thread-safety-attrs.cpp 74 class SmartPtr {
76 SmartPtr(T* p) : ptr_(p) { }
77 SmartPtr(const SmartPtr<T>& p) : ptr_(p.ptr_) { }
78 ~SmartPtr();
  /external/clang/test/SemaCXX/
overloaded-operator.cpp 127 struct SmartPtr {
132 void test_smartptr(SmartPtr ptr, const SmartPtr cptr,
133 const volatile SmartPtr cvptr) {
warn-thread-safety-analysis.cpp 74 class SmartPtr {
76 SmartPtr(T* p) : ptr_(p) { }
77 SmartPtr(const SmartPtr<T>& p) : ptr_(p.ptr_) { }
78 ~SmartPtr();
    [all...]

Completed in 493 milliseconds