Searched refs:ConstHandle (Results 1 – 1 of 1) sorted by relevance
36 class ConstHandle {38 ConstHandle() : reference_(nullptr) { in ConstHandle() function41 ALWAYS_INLINE ConstHandle(const ConstHandle<T>& handle) : reference_(handle.reference_) { in ConstHandle() function44 ALWAYS_INLINE ConstHandle<T>& operator=(const ConstHandle<T>& handle) {49 ALWAYS_INLINE explicit ConstHandle(StackReference<T>* reference) : reference_(reference) { in ConstHandle() function74 explicit ConstHandle(StackReference<S>* reference) in ConstHandle() function78 explicit ConstHandle(const ConstHandle<S>& handle) in ConstHandle() function94 template<class S> friend class ConstHandle; variable102 class Handle : public ConstHandle<T> {108 : ConstHandle<T>(handle.reference_) { in Handle()[all …]