Searched defs:ScopedJavaGlobalRef (Results 1 – 6 of 6) sorted by relevance
317 constexpr ScopedJavaGlobalRef() {} in ScopedJavaGlobalRef() function318 constexpr ScopedJavaGlobalRef(std::nullptr_t) {} in ScopedJavaGlobalRef() function322 ScopedJavaGlobalRef(const ScopedJavaGlobalRef& other) { Reset(other); } in ScopedJavaGlobalRef() function327 ScopedJavaGlobalRef(const ScopedJavaGlobalRef<U>& other) { in ScopedJavaGlobalRef() function333 ScopedJavaGlobalRef(ScopedJavaGlobalRef&& other) { in ScopedJavaGlobalRef() function340 ScopedJavaGlobalRef(ScopedJavaGlobalRef<U>&& other) { in ScopedJavaGlobalRef() function345 explicit ScopedJavaGlobalRef(const JavaRef<T>& other) { Reset(other); } in ScopedJavaGlobalRef() function347 ScopedJavaGlobalRef(JNIEnv* env, const JavaRef<T>& other) { in ScopedJavaGlobalRef() function353 ScopedJavaGlobalRef(JNIEnv* env, T obj) { Reset(env, obj); } in ScopedJavaGlobalRef() function
237 constexpr ScopedJavaGlobalRef() {} in ScopedJavaGlobalRef() function238 constexpr ScopedJavaGlobalRef(std::nullptr_t) {} in ScopedJavaGlobalRef() function240 ScopedJavaGlobalRef(const ScopedJavaGlobalRef<T>& other) { in ScopedJavaGlobalRef() function244 ScopedJavaGlobalRef(ScopedJavaGlobalRef<T>&& other) { this->swap(other); } in ScopedJavaGlobalRef() function246 ScopedJavaGlobalRef(JNIEnv* env, T obj) { this->Reset(env, obj); } in ScopedJavaGlobalRef() function248 explicit ScopedJavaGlobalRef(const JavaRef<T>& other) { this->Reset(other); } in ScopedJavaGlobalRef() function
176 explicit constexpr ScopedJavaGlobalRef(std::nullptr_t) {} in ScopedJavaGlobalRef() function177 ScopedJavaGlobalRef(JNIEnv* env, const JavaRef<T>& other) in ScopedJavaGlobalRef() function179 explicit ScopedJavaGlobalRef(const ScopedJavaLocalRef<T>& other) in ScopedJavaGlobalRef() function181 ScopedJavaGlobalRef(ScopedJavaGlobalRef&& other) in ScopedJavaGlobalRef() function
23 using ScopedJavaGlobalRef = jni_zero::ScopedJavaGlobalRef<T>; variable