Home
last modified time | relevance | path

Searched refs:RefCountObjectBindingPointer (Results 1 – 2 of 2) sorted by relevance

/external/chromium_org/third_party/angle/src/common/
DRefCountObject.h39 class RefCountObjectBindingPointer
42 RefCountObjectBindingPointer() : mObject(NULL) { } in RefCountObjectBindingPointer() function
43 …~RefCountObjectBindingPointer() { ASSERT(mObject == NULL); } // Objects have to be released before… in ~RefCountObjectBindingPointer()
57 class BindingPointer : public RefCountObjectBindingPointer
60 void set(ObjectType *newObject) { RefCountObjectBindingPointer::set(newObject); } in set()
61 … ObjectType *get() const { return static_cast<ObjectType*>(RefCountObjectBindingPointer::get()); } in get()
DRefCountObject.cpp41 void RefCountObjectBindingPointer::set(RefCountObject *newObject) in set()