Lines Matching refs:Reset
164 this->Reset(other); in ScopedJavaLocalRef()
174 this->Reset(); in ~ScopedJavaLocalRef()
180 this->Reset(other);
188 void Reset() { in Reset() function
192 void Reset(const ScopedJavaLocalRef<T>& other) { in Reset() function
196 this->Reset(other.env_, other.obj()); in Reset()
199 void Reset(const JavaRef<T>& other) { in Reset() function
202 this->Reset(env_, other.obj()); in Reset()
208 void Reset(JNIEnv* env, T obj) { env_ = this->SetNewLocalRef(env, obj); } in Reset() function
241 this->Reset(other); in ScopedJavaGlobalRef()
246 ScopedJavaGlobalRef(JNIEnv* env, T obj) { this->Reset(env, obj); } in ScopedJavaGlobalRef()
248 explicit ScopedJavaGlobalRef(const JavaRef<T>& other) { this->Reset(other); } in ScopedJavaGlobalRef()
251 this->Reset(); in ~ScopedJavaGlobalRef()
257 this->Reset(other);
262 void Reset() { in Reset() function
266 void Reset(const JavaRef<T>& other) { this->Reset(nullptr, other.obj()); } in Reset() function
268 void Reset(JNIEnv* env, const JavaParamRef<T>& other) { in Reset() function
269 this->Reset(env, other.obj()); in Reset()
272 void Reset(JNIEnv* env, T obj) { this->SetNewGlobalRef(env, obj); } in Reset() function