• Home
  • Raw
  • Download

Lines Matching refs:Self

886   StackHandleScope<1> hs(soa.Self());  in TEST_F()
890 ObjPtr<mirror::Class> outer = class_linker_->FindClass(soa.Self(), "LNested;", class_loader); in TEST_F()
896 class_linker_->FindClass(soa.Self(), "LNested$Inner;", class_loader); in TEST_F()
918 StackHandleScope<2> hs(soa.Self()); in TEST_F()
920 class_linker_->FindSystemClass(soa.Self(), "Ljava/lang/Object;")); in TEST_F()
926 ObjPtr<mirror::Class> MyClass = class_linker_->FindClass(soa.Self(), "LMyClass;", class_loader); in TEST_F()
971 StackHandleScope<1> hs(soa.Self()); in TEST_F()
975 ObjPtr<mirror::Class> klass = class_linker_->FindClass(soa.Self(), "LMyClass;", class_loader); in TEST_F()
991 StackHandleScope<2> hs(soa.Self()); in TEST_F()
996 = class_linker_->FindClass(soa.Self(), "LAllFields;", class_loader); in TEST_F()
1009 = class_linker_->FindClass(soa.Self(), "[Ljava/lang/Object;", class_loader); in TEST_F()
1025 StackHandleScope<3> hs(soa.Self()); in TEST_F()
1030 hs.NewHandle(class_linker_->FindClass(soa.Self(), "LErroneousInit;", class_loader)); in TEST_F()
1044 bool initialized = class_linker_->EnsureInitialized(soa.Self(), in TEST_F()
1049 EXPECT_TRUE(soa.Self()->IsExceptionPending()); in TEST_F()
1050 soa.Self()->ClearException(); in TEST_F()
1074 class_linker_->FindSystemClass(soa.Self(), "[Ljava/lang/String;"); in TEST_F()
1076 mirror::ObjectArray<mirror::String>::Alloc(soa.Self(), array_class, 0); in TEST_F()
1089 StackHandleScope<5> hs(soa.Self()); in TEST_F()
1090 Handle<mirror::LongArray> long_array(hs.NewHandle(mirror::LongArray::Alloc(soa.Self(), 0))); in TEST_F()
1091 EXPECT_OBJ_PTR_EQ(class_linker_->FindSystemClass(soa.Self(), "[J"), long_array->GetClass()); in TEST_F()
1095 Handle<mirror::DoubleArray> double_array(hs.NewHandle(mirror::DoubleArray::Alloc(soa.Self(), 0))); in TEST_F()
1096 EXPECT_OBJ_PTR_EQ(class_linker_->FindSystemClass(soa.Self(), "[D"), double_array->GetClass()); in TEST_F()
1100 Handle<mirror::IntArray> int_array(hs.NewHandle(mirror::IntArray::Alloc(soa.Self(), 0))); in TEST_F()
1101 EXPECT_OBJ_PTR_EQ(class_linker_->FindSystemClass(soa.Self(), "[I"), int_array->GetClass()); in TEST_F()
1105 Handle<mirror::CharArray> char_array(hs.NewHandle(mirror::CharArray::Alloc(soa.Self(), 0))); in TEST_F()
1106 EXPECT_OBJ_PTR_EQ(class_linker_->FindSystemClass(soa.Self(), "[C"), char_array->GetClass()); in TEST_F()
1110 Handle<mirror::ShortArray> short_array(hs.NewHandle(mirror::ShortArray::Alloc(soa.Self(), 0))); in TEST_F()
1111 EXPECT_OBJ_PTR_EQ(class_linker_->FindSystemClass(soa.Self(), "[S"), short_array->GetClass()); in TEST_F()
1124 c = class_linker_->FindClass(soa.Self(), "Ljava/lang/Boolean;", class_loader); in TEST_F()
1126 c = class_linker_->FindClass(soa.Self(), "Ljava/lang/Byte;", class_loader); in TEST_F()
1128 c = class_linker_->FindClass(soa.Self(), "Ljava/lang/Character;", class_loader); in TEST_F()
1130 c = class_linker_->FindClass(soa.Self(), "Ljava/lang/Double;", class_loader); in TEST_F()
1132 c = class_linker_->FindClass(soa.Self(), "Ljava/lang/Float;", class_loader); in TEST_F()
1134 c = class_linker_->FindClass(soa.Self(), "Ljava/lang/Integer;", class_loader); in TEST_F()
1136 c = class_linker_->FindClass(soa.Self(), "Ljava/lang/Long;", class_loader); in TEST_F()
1138 c = class_linker_->FindClass(soa.Self(), "Ljava/lang/Short;", class_loader); in TEST_F()
1144 StackHandleScope<3> hs(soa.Self()); in TEST_F()
1150 class_linker_->FindClass(soa.Self(), "LMyClass;", class_loader_1)); in TEST_F()
1152 class_linker_->FindClass(soa.Self(), "LMyClass;", class_loader_2); in TEST_F()
1160 StackHandleScope<2> hs(soa.Self()); in TEST_F()
1164 hs.NewHandle(class_linker_->FindClass(soa.Self(), "LStatics;", class_loader))); in TEST_F()
1165 class_linker_->EnsureInitialized(soa.Self(), statics, true, true); in TEST_F()
1175 ArtField* s0 = mirror::Class::FindStaticField(soa.Self(), statics.Get(), "s0", "Z"); in TEST_F()
1180 ArtField* s1 = mirror::Class::FindStaticField(soa.Self(), statics.Get(), "s1", "B"); in TEST_F()
1185 ArtField* s2 = mirror::Class::FindStaticField(soa.Self(), statics.Get(), "s2", "C"); in TEST_F()
1190 ArtField* s3 = mirror::Class::FindStaticField(soa.Self(), statics.Get(), "s3", "S"); in TEST_F()
1195 ArtField* s4 = mirror::Class::FindStaticField(soa.Self(), statics.Get(), "s4", "I"); in TEST_F()
1200 ArtField* s5 = mirror::Class::FindStaticField(soa.Self(), statics.Get(), "s5", "J"); in TEST_F()
1205 ArtField* s6 = mirror::Class::FindStaticField(soa.Self(), statics.Get(), "s6", "F"); in TEST_F()
1210 ArtField* s7 = mirror::Class::FindStaticField(soa.Self(), statics.Get(), "s7", "D"); in TEST_F()
1216 soa.Self(), statics.Get(), "s8", "Ljava/lang/String;"); in TEST_F()
1219 ObjPtr<mirror::String> str_value = mirror::String::AllocFromModifiedUtf8(soa.Self(), "robot"); in TEST_F()
1237 StackHandleScope<6> hs(soa.Self()); in TEST_F()
1241 hs.NewHandle(class_linker_->FindClass(soa.Self(), "LInterfaces$I;", class_loader))); in TEST_F()
1243 hs.NewHandle(class_linker_->FindClass(soa.Self(), "LInterfaces$J;", class_loader))); in TEST_F()
1245 hs.NewHandle(class_linker_->FindClass(soa.Self(), "LInterfaces$K;", class_loader))); in TEST_F()
1247 hs.NewHandle(class_linker_->FindClass(soa.Self(), "LInterfaces$A;", class_loader))); in TEST_F()
1249 hs.NewHandle(class_linker_->FindClass(soa.Self(), "LInterfaces$B;", class_loader))); in TEST_F()
1294 mirror::Class::FindStaticField(soa.Self(), A.Get(), "foo", "Ljava/lang/String;"); in TEST_F()
1296 mirror::Class::FindStaticField(soa.Self(), B.Get(), "foo", "Ljava/lang/String;"); in TEST_F()
1298 mirror::Class::FindStaticField(soa.Self(), J.Get(), "foo", "Ljava/lang/String;"); in TEST_F()
1300 mirror::Class::FindStaticField(soa.Self(), K.Get(), "foo", "Ljava/lang/String;"); in TEST_F()
1316 StackHandleScope<1> hs(soa.Self()); in TEST_F()
1320 class_linker_->FindClass(soa.Self(), "LStaticsFromCode;", class_loader); in TEST_F()
1331 soa.Self(), in TEST_F()
1338 soa.Self(), in TEST_F()
1348 StackHandleScope<1> hs(soa.Self()); in TEST_F()
1351 hs.Self()->AssertNoPendingException(); in TEST_F()
1353 ObjPtr<mirror::Class> klass = class_linker_->FindClass(soa.Self(), descriptor, class_loader); in TEST_F()
1355 hs.Self()->AssertPendingException(); in TEST_F()
1357 klass = class_linker_->LookupClass(soa.Self(), descriptor, class_loader.Get()); in TEST_F()
1368 c = class_linker_->FindSystemClass(soa.Self(), "Ljava/lang/Object;"); in TEST_F()
1372 c = class_linker_->FindSystemClass(soa.Self(), "Ljava/lang/Enum;"); in TEST_F()
1376 c = class_linker_->FindSystemClass(soa.Self(), "Ljava/math/RoundingMode;"); in TEST_F()
1380 c = class_linker_->FindSystemClass(soa.Self(), "Ljava/io/RandomAccessFile;"); in TEST_F()
1384 c = class_linker_->FindSystemClass(soa.Self(), "Ljava/io/InputStream;"); in TEST_F()
1386 c = class_linker_->FindSystemClass(soa.Self(), "Ljava/io/FileInputStream;"); in TEST_F()
1391 c = class_linker_->FindSystemClass(soa.Self(), "Ljava/util/concurrent/ThreadPoolExecutor;"); in TEST_F()
1393 …c = class_linker_->FindSystemClass(soa.Self(), "Ljava/util/concurrent/ScheduledThreadPoolExecutor;… in TEST_F()
1412 c = class_linker_->FindClass(soa.Self(), "Ljava/lang/Class;", class_loader); in TEST_F()
1416 c = class_linker_->FindClass(soa.Self(), "Ljava/lang/Object;", class_loader); in TEST_F()
1420 c = class_linker_->FindClass(soa.Self(), "Ljava/lang/String;", class_loader); in TEST_F()
1424 c = class_linker_->FindClass(soa.Self(), "Ljava/lang/DexCache;", class_loader); in TEST_F()
1450 class_linker_->FindSystemClass(soa.Self(), "Ljava/lang/Object;"); in TEST_F()
1460 StackHandleScope<1> hs(soa.Self()); in TEST_F()
1463 soa.Self(), "Ljava/lang/SecurityManager;"))); in TEST_F()
1469 class_linker_->EnsureInitialized(soa.Self(), security_manager, true, true); in TEST_F()
1476 StackHandleScope<2> hs(soa.Self()); in TEST_F()
1480 hs.NewHandle(class_linker_->FindClass(soa.Self(), "LStatics;", class_loader))); in TEST_F()
1484 class_linker_->EnsureInitialized(soa.Self(), statics, true, true); in TEST_F()
1491 StackHandleScope<3> hs(soa.Self()); in TEST_F()
1497 hs.NewHandle(class_linker_->FindSystemClass(soa.Self(), "Ljava/lang/Object;"))); in TEST_F()
1503 hs.NewHandle(class_linker_->FindClass(soa.Self(), "LStatics;", class_loader))); in TEST_F()
1511 StackHandleScope<2> hs(soa.Self()); in TEST_F()
1515 ReaderMutexLock mu(soa.Self(), *Locks::dex_lock_); in TEST_F()
1517 dex_cache.Assign(soa.Self()->DecodeJObject(data.weak_root)->AsDexCache()); in TEST_F()
1525 dex_cache.Assign(dex_cache->Clone(soa.Self())->AsDexCache()); in TEST_F()
1527 Handle<mirror::String> location(hs.NewHandle(mirror::String::AllocFromUtf16(soa.Self(), in TEST_F()
1540 WriterMutexLock mu(soa.Self(), *Locks::dex_lock_); in TEST_F()
1548 StackHandleScope<7> hs(soa.Self()); in TEST_F()
1553 hs.NewHandle(class_linker_->FindClass(soa.Self(), "LMethodTypes;", class_loader))); in TEST_F()
1554 class_linker_->EnsureInitialized(soa.Self(), method_types, true, true); in TEST_F()
1565 class_linker_->FindDexCache(soa.Self(), dex_file)); in TEST_F()
1574 class_linker_->ResolveMethodType(soa.Self(), method1_id.proto_idx_, dex_cache, class_loader)); in TEST_F()
1580 Handle<mirror::Class> string_class(hs.NewHandle(class_linker_->FindClass(soa.Self(), in TEST_F()
1588 class_linker_->ResolveMethodType(soa.Self(), method1_id.proto_idx_, dex_cache, class_loader)); in TEST_F()
1601 class_linker_->ResolveMethodType(soa.Self(), method2_id.proto_idx_, dex_cache, class_loader)); in TEST_F()
1619 ObjPtr<mirror::Class> c = class_linker_->FindSystemClass(soa.Self(), "[Ljava/lang/String;"); in TEST_F()
1621 ObjPtr<mirror::Object> o = mirror::ObjectArray<mirror::String>::Alloc(soa.Self(), c, 0); in TEST_F()
1628 ObjPtr<mirror::Class> c = class_linker_->FindSystemClass(soa.Self(), "[Ljava/lang/String;"); in TEST_F()
1630 ObjPtr<mirror::Object> o = mirror::ObjectArray<mirror::String>::Alloc(soa.Self(), c, 0); in TEST_F()
1639 ObjPtr<mirror::Class> java_lang_String = class_linker_->FindSystemClass(soa.Self(), in TEST_F()
1650 ObjPtr<mirror::Class> c = class_linker_->FindSystemClass(soa.Self(), "Ljava/lang/String;"); in TEST_F()
1689 class_linker_->FindClass(soa.Self(), descriptor.c_str(), class_loader_to_search)); in VerifyClassResolution()