Lines Matching defs:args
28 Object* receiver, uint32_t* args, JValue* result)
32 int32_t length = args[1];
34 mirror::Class* element_class = reinterpret_cast<Object*>(args[0])->AsClass();
49 value.SetJ((static_cast<uint64_t>(args[1]) << 32) | args[0]);
55 result->SetI(args[0]);
57 result->SetI(args[0]);
60 value.SetJ((static_cast<uint64_t>(args[1]) << 32) | args[0]);
67 String* rhs = reinterpret_cast<Object*>(args[0])->AsString();
73 result->SetI(receiver->AsString()->FastIndexOf(args[0], args[1]));
76 auto h_class(hs.NewHandle(reinterpret_cast<mirror::Class*>(args[0])->AsClass()));
77 auto h_dimensions(hs.NewHandle(reinterpret_cast<mirror::IntArray*>(args[1])->AsIntArray()));
87 mirror::Object* obj = reinterpret_cast<Object*>(args[0]);
92 Object* obj = reinterpret_cast<Object*>(args[0]);
93 jlong offset = (static_cast<uint64_t>(args[2]) << 32) | args[1];
94 jint expectedValue = args[3];
95 jint newValue = args[4];
106 Object* obj = reinterpret_cast<Object*>(args[0]);
107 jlong offset = (static_cast<uint64_t>(args[2]) << 32) | args[1];
108 Object* newValue = reinterpret_cast<Object*>(args[3]);
115 mirror::Class* component = reinterpret_cast<Object*>(args[0])->AsClass();
119 mirror::Class* component = reinterpret_cast<Object*>(args[0])->AsClass();
133 Object* receiver, uint32_t* args, JValue* result)
170 result->SetB(fn(soa.Env(), klass.get(), args[0]));
177 result->SetI(fn(soa.Env(), klass.get(), args[0]));
184 soa.AddLocalReference<jobject>(reinterpret_cast<Object*>(args[0])));
197 result->SetI(fn(soa.Env(), klass.get(), args[0], args[1]));
205 soa.AddLocalReference<jobject>(reinterpret_cast<Object*>(args[0])));
207 result->SetI(fn(soa.Env(), klass.get(), arg0.get(), args[1]));
214 result->SetS(fn(soa.Env(), klass.get(), args[0], args[1]));
221 fn(soa.Env(), klass.get(), args[0], args[1]);
228 soa.AddLocalReference<jobject>(reinterpret_cast<Object*>(args[0])));
230 soa.AddLocalReference<jobject>(reinterpret_cast<Object*>(args[1])));
239 soa.AddLocalReference<jobject>(reinterpret_cast<Object*>(args[1])));
241 soa.AddLocalReference<jobject>(reinterpret_cast<Object*>(args[2])));
243 result->SetZ(fn(soa.Env(), klass.get(), args[0], arg1.get(), arg2.get()));
250 soa.AddLocalReference<jobject>(reinterpret_cast<Object*>(args[1])));
252 fn(soa.Env(), klass.get(), args[0], arg1.get(), args[2], args[3]);
259 soa.AddLocalReference<jobject>(reinterpret_cast<Object*>(args[0])));
261 soa.AddLocalReference<jobject>(reinterpret_cast<Object*>(args[2])));
263 fn(soa.Env(), klass.get(), arg0.get(), args[1], arg2.get(), args[3], args[4]);
293 soa.AddLocalReference<jobject>(reinterpret_cast<Object*>(args[0])));
307 result->SetI(fn(soa.Env(), rcvr.get(), args[0], args[1]));
399 uint32_t* args, JValue* result) {
444 Object* o = reinterpret_cast<StackReference<Object>*>(&args[arg_pos])->AsMirrorPtr();
449 uint64_t wide_value = (static_cast<uint64_t>(args[arg_pos + 1]) << 32) | args[arg_pos];
456 shadow_frame->SetVReg(cur_reg, args[arg_pos]);
482 // Update args to be the args in the shadow frame since the input ones could hold stale
484 args = shadow_frame->GetVRegArgs(method->IsStatic() ? 0 : 1);
486 UnstartedRuntimeJni(self, method, receiver, args, result);
488 InterpreterJni(self, method, shorty, receiver, args, result);
573 uint32_t* args = shadow_frame->GetVRegArgs(method->IsStatic() ? 0 : 1);
574 UnstartedRuntimeJni(self, method, receiver, args, result);