Lines Matching defs:exception
167 Throwable* exception = self->GetException(nullptr);
168 DCHECK(exception != nullptr) << "No pending exception on MOVE_EXCEPTION instruction";
169 shadow_frame.SetVRegReference(inst->VRegA_11x(inst_data), exception);
258 // Return the pending exception.
532 Object* exception = shadow_frame.GetVRegReference(inst->VRegA_11x(inst_data));
533 if (UNLIKELY(exception == NULL)) {
534 ThrowNullPointerException(NULL, "throw with null exception");
535 } else if (do_assignability_check && !exception->GetClass()->IsThrowableClass()) {
541 exception->GetClass()->GetDescriptor(&temp));
543 self->SetException(shadow_frame.GetCurrentLocationForThrow(), exception->AsThrowable());