Home | History | Annotate | Download | only in win

Lines Matching defs:handle_

26   ScopedGDIObject() : handle_(NULL) {}
27 explicit ScopedGDIObject(T object) : handle_(object) {}
30 Traits::Close(handle_);
34 return handle_;
38 if (handle_ && object != handle_)
39 Traits::Close(handle_);
40 handle_ = object;
49 T object = handle_;
50 handle_ = NULL;
54 operator T() { return handle_; }
57 T handle_;