Lines Matching refs:Get

78   if (c.Get() == nullptr) {  in Class_classForName()
93 return soa.AddLocalReference<jclass>(c.Get()); in Class_classForName()
134 if (object_array.Get() == nullptr) { in GetDeclaredFields()
165 return object_array.Get(); in GetDeclaredFields()
294 if (UNLIKELY(h_constructors.Get() == nullptr)) { in Class_getDeclaredConstructorsInternal()
309 return soa.AddLocalReference<jobjectArray>(h_constructors.Get()); in Class_getDeclaredConstructorsInternal()
324 if (UNLIKELY(h_method_name.Get() == nullptr)) { in Class_getDeclaredMethodInternal()
335 if (!np_name->Equals(h_method_name.Get()) || !np_method->EqualParameters(h_args)) { in Class_getDeclaredMethodInternal()
362 if (!np_name->Equals(h_method_name.Get()) || !np_method->EqualParameters(h_args)) { in Class_getDeclaredMethodInternal()
429 return soa.AddLocalReference<jobjectArray>(ret.Get()); in Class_getDeclaredMethodsUnchecked()
439 "%s cannot be instantiated", PrettyClass(klass.Get()).c_str()); in Class_newInstance()
446 if (caller.Get() != nullptr && !caller->CanAccess(klass.Get())) { in Class_newInstance()
449 PrettyClass(klass.Get()).c_str(), PrettyClass(caller.Get()).c_str()); in Class_newInstance()
458 PrettyClass(klass.Get()).c_str()); in Class_newInstance()
473 if (UNLIKELY(receiver.Get() == nullptr)) { in Class_newInstance()
480 if (caller.Get() == nullptr) { in Class_newInstance()
483 if (UNLIKELY(caller.Get() != nullptr && !VerifyAccess( in Class_newInstance()
484 soa.Self(), receiver.Get(), declaring_class, constructor->GetAccessFlags(), in Class_newInstance()
485 caller.Get()))) { in Class_newInstance()
488 PrettyMethod(constructor).c_str(), PrettyClass(caller.Get()).c_str()); in Class_newInstance()
502 uint32_t args[1] = { static_cast<uint32_t>(reinterpret_cast<uintptr_t>(receiver.Get())) }; in Class_newInstance()
508 return soa.AddLocalReference<jobject>(receiver.Get()); in Class_newInstance()