Lines Matching refs:new_method
7691 ArtMethod& new_method = *out; in ReallocMethods() local
7692 new_method.CopyFrom(mir_method, pointer_size); in ReallocMethods()
7693 new_method.SetAccessFlags(new_method.GetAccessFlags() | kAccMiranda | kAccCopied); in ReallocMethods()
7694 DCHECK_NE(new_method.GetAccessFlags() & kAccAbstract, 0u) in ReallocMethods()
7696 move_table_.emplace(mir_method, &new_method); in ReallocMethods()
7701 miranda_methods_[i] = &new_method; in ReallocMethods()
7714 ArtMethod& new_method = *out; in ReallocMethods() local
7715 new_method.CopyFrom(def_method, pointer_size); in ReallocMethods()
7720 DCHECK_EQ(new_method.GetAccessFlags() & kAccNative, 0u); in ReallocMethods()
7723 new_method.SetAccessFlags((new_method.GetAccessFlags() | kSetFlags) & kMaskFlags); in ReallocMethods()
7724 move_table_.emplace(def_method, &new_method); in ReallocMethods()
7729 (*methods_vec)[i] = &new_method; in ReallocMethods()
7737 ArtMethod& new_method = *out; in ReallocMethods() local
7738 new_method.CopyFrom(conf_method, pointer_size); in ReallocMethods()
7745 DCHECK_EQ(new_method.GetAccessFlags() & kAccNative, 0u); in ReallocMethods()
7749 new_method.SetAccessFlags((new_method.GetAccessFlags() | kSetFlags) & kMaskFlags); in ReallocMethods()
7750 DCHECK(new_method.IsDefaultConflicting()); in ReallocMethods()
7754 EnsureThrowsInvocationError(class_linker_, &new_method); in ReallocMethods()
7755 move_table_.emplace(conf_method, &new_method); in ReallocMethods()
7760 (*methods_vec)[i] = &new_method; in ReallocMethods()