Searched defs:ConstHandle (Results 1 - 1 of 1) sorted by relevance

/art/runtime/
H A Dhandle.h33 // a wrap pointer. Handles are generally allocated within HandleScopes. ConstHandle is a super-class
36 class ConstHandle { class in namespace:art
38 ConstHandle() : reference_(nullptr) { function in class:art::ConstHandle
41 ALWAYS_INLINE ConstHandle(const ConstHandle<T>& handle) : reference_(handle.reference_) { function in class:art::ConstHandle
44 ALWAYS_INLINE ConstHandle<T>& operator=(const ConstHandle<T>& handle) {
49 ALWAYS_INLINE explicit ConstHandle(StackReference<T>* reference) : reference_(reference) { function in class:art::ConstHandle
76 explicit ConstHandle(StackReference<S>* reference) function in class:art::ConstHandle
80 explicit ConstHandle(cons function in class:art::ConstHandle
[all...]

Completed in 68 milliseconds