Lines Matching refs:new_method
7972 ArtMethod& new_method = *out; in ReallocMethods() local
7973 new_method.CopyFrom(mir_method, pointer_size); in ReallocMethods()
7974 new_method.SetAccessFlags(new_method.GetAccessFlags() | kAccMiranda | kAccCopied); in ReallocMethods()
7975 DCHECK_NE(new_method.GetAccessFlags() & kAccAbstract, 0u) in ReallocMethods()
7977 move_table_.emplace(mir_method, &new_method); in ReallocMethods()
7982 miranda_methods_[i] = &new_method; in ReallocMethods()
7995 ArtMethod& new_method = *out; in ReallocMethods() local
7996 new_method.CopyFrom(def_method, pointer_size); in ReallocMethods()
8001 DCHECK_EQ(new_method.GetAccessFlags() & kAccNative, 0u); in ReallocMethods()
8004 new_method.SetAccessFlags((new_method.GetAccessFlags() | kSetFlags) & kMaskFlags); in ReallocMethods()
8005 move_table_.emplace(def_method, &new_method); in ReallocMethods()
8010 (*methods_vec)[i] = &new_method; in ReallocMethods()
8018 ArtMethod& new_method = *out; in ReallocMethods() local
8019 new_method.CopyFrom(conf_method, pointer_size); in ReallocMethods()
8026 DCHECK_EQ(new_method.GetAccessFlags() & kAccNative, 0u); in ReallocMethods()
8030 new_method.SetAccessFlags((new_method.GetAccessFlags() | kSetFlags) & kMaskFlags); in ReallocMethods()
8031 DCHECK(new_method.IsDefaultConflicting()); in ReallocMethods()
8035 EnsureThrowsInvocationError(class_linker_, &new_method); in ReallocMethods()
8036 move_table_.emplace(conf_method, &new_method); in ReallocMethods()
8041 (*methods_vec)[i] = &new_method; in ReallocMethods()