Searched defs:argument (Results 1 - 2 of 2) sorted by relevance

/art/runtime/
H A Djni_internal.cc116 LOG(ERROR) << "Internal error: unresolvable type for argument type in JNI invoke: "
123 Object* argument = reinterpret_cast<Object*>(args[i + offset]); local
124 if (argument != NULL && !argument->InstanceOf(param_type)) {
126 << PrettyTypeOf(argument) << " as argument " << (i + 1) << " to " << PrettyMethod(m);
135 // with an argument.
H A Ddebugger.cc163 // Was there a -Xrunjdwp or -agentlib:jdwp= argument on the command line?
1219 * TODO: jdb uses the value to determine whether a variable is a local or an argument,
1221 * have to "mangle" all the arguments to come first, not just the implicit argument 'this'.
2703 // Check the argument list matches the method.
2716 // Did we really get an argument of an appropriate reference type?
2718 mirror::Object* argument = gRegistry->Get<mirror::Object*>(arg_values[i]); local
2719 if (argument == ObjectRegistry::kInvalidObject) {
2722 if (!argument->InstanceOf(parameter_type)) {

Completed in 87 milliseconds