Lines Matching defs:args
69 va_list args;
71 va_start(args, fmt);
72 AbortTransactionV(self, fmt, args);
73 va_end(args);
75 va_start(args, fmt);
77 StringAppendV(&msg, fmt, args);
78 va_end(args);
350 mirror::ObjectArray<mirror::Class>* args =
359 self, klass, name, args);
362 self, klass, name, args);
367 self, klass, name, args);
370 self, klass, name, args);
384 mirror::ObjectArray<mirror::Class>* args =
393 true>(self, klass, args);
396 true>(self, klass, args);
401 false>(self, klass, args);
404 false>(self, klass, args);
601 uint32_t args[1];
602 args[0] = static_cast<uint32_t>(reinterpret_cast<uintptr_t>(h_array.Get()));
603 EnterInterpreterFromInvoke(self, constructor, h_obj.Get(), args, nullptr);
641 Handle<mirror::ObjectArray<mirror::Object>> args = hs.NewHandle(
652 // Constructor.newInstance(Object... args).
691 soa.AddLocalReference<jobject>(args.Get()));
1639 uint32_t* args, JValue* result) {
1640 int32_t length = args[1];
1642 ObjPtr<mirror::Class> element_class = reinterpret_cast<mirror::Object*>(args[0])->AsClass();
1657 mirror::Object* receiver ATTRIBUTE_UNUSED, uint32_t* args ATTRIBUTE_UNUSED, JValue* result) {
1663 uint32_t* args ATTRIBUTE_UNUSED, JValue* result) {
1673 mirror::Object* receiver ATTRIBUTE_UNUSED, uint32_t* args, JValue* result) {
1675 value.SetJ((static_cast<uint64_t>(args[1]) << 32) | args[0]);
1681 mirror::Object* receiver ATTRIBUTE_UNUSED, uint32_t* args, JValue* result) {
1683 value.SetJ((static_cast<uint64_t>(args[1]) << 32) | args[0]);
1691 uint32_t* args ATTRIBUTE_UNUSED,
1700 uint32_t* args ATTRIBUTE_UNUSED, JValue* result) {
1707 mirror::Object* receiver ATTRIBUTE_UNUSED, uint32_t* args, JValue* result) {
1708 uint64_t long_input = args[0] | (static_cast<uint64_t>(args[1]) << 32);
1714 mirror::Object* receiver ATTRIBUTE_UNUSED, uint32_t* args, JValue* result) {
1715 result->SetI(args[0]);
1720 mirror::Object* receiver ATTRIBUTE_UNUSED, uint32_t* args, JValue* result) {
1721 result->SetI(args[0]);
1726 uint32_t* args ATTRIBUTE_UNUSED, JValue* result) {
1732 uint32_t* args ATTRIBUTE_UNUSED, JValue* result ATTRIBUTE_UNUSED) {
1737 Thread* self, ArtMethod* method ATTRIBUTE_UNUSED, mirror::Object* receiver, uint32_t* args,
1739 mirror::String* rhs = reinterpret_cast<mirror::Object*>(args[0])->AsString();
1748 uint32_t* args ATTRIBUTE_UNUSED, JValue* result) {
1754 uint32_t* args, JValue* result) {
1755 result->SetI(receiver->AsString()->FastIndexOf(args[0], args[1]));
1760 uint32_t* args, JValue* result) {
1762 auto h_class(hs.NewHandle(reinterpret_cast<mirror::Class*>(args[0])->AsClass()));
1763 auto h_dimensions(hs.NewHandle(reinterpret_cast<mirror::IntArray*>(args[1])->AsIntArray()));
1769 uint32_t* args, JValue* result) {
1770 int32_t length = static_cast<int32_t>(args[1]);
1775 ObjPtr<mirror::Class> element_class = reinterpret_cast<mirror::Class*>(args[0])->AsClass();
1791 uint32_t* args ATTRIBUTE_UNUSED, JValue* result) {
1802 mirror::Object* receiver ATTRIBUTE_UNUSED, uint32_t* args ATTRIBUTE_UNUSED, JValue* result) {
1808 mirror::Object* receiver ATTRIBUTE_UNUSED, uint32_t* args, JValue* result) {
1809 mirror::Object* obj = reinterpret_cast<mirror::Object*>(args[0]);
1810 jlong offset = (static_cast<uint64_t>(args[2]) << 32) | args[1];
1811 jint expectedValue = args[3];
1812 jint newValue = args[4];
1826 uint32_t* args, JValue* result) {
1827 mirror::Object* obj = reinterpret_cast<mirror::Object*>(args[0]);
1833 jlong offset = (static_cast<uint64_t>(args[2]) << 32) | args[1];
1839 mirror::Object* receiver ATTRIBUTE_UNUSED, uint32_t* args, JValue* result ATTRIBUTE_UNUSED) {
1840 mirror::Object* obj = reinterpret_cast<mirror::Object*>(args[0]);
1841 jlong offset = (static_cast<uint64_t>(args[2]) << 32) | args[1];
1842 mirror::Object* newValue = reinterpret_cast<mirror::Object*>(args[3]);
1852 mirror::Object* receiver ATTRIBUTE_UNUSED, uint32_t* args, JValue* result) {
1853 mirror::Class* component = reinterpret_cast<mirror::Object*>(args[0])->AsClass();
1860 mirror::Object* receiver ATTRIBUTE_UNUSED, uint32_t* args, JValue* result) {
1861 mirror::Class* component = reinterpret_cast<mirror::Object*>(args[0])->AsClass();
1870 uint32_t* args, JValue* result);
1931 uint32_t* args, JValue* result) {
1937 (*iter->second)(self, method, receiver, args, result);