Home | History | Annotate | Download | only in memory

Lines Matching refs:NST

29 template<typename NST>
32 typedef NST* element_type;
34 explicit scoped_nsobject(NST* object = nil)
42 void reset(NST* object = nil) {
52 bool operator==(NST* that) const { return object_ == that; }
53 bool operator!=(NST* that) const { return object_ != that; }
55 operator NST*() const {
59 NST* get() const {
64 NST* temp = that.object_;
72 NST* release() WARN_UNUSED_RESULT {
73 NST* temp = object_;
79 NST* object_;