Home
last modified time | relevance | path

Searched refs:method2 (Results 1 – 11 of 11) sorted by relevance

/art/runtime/mirror/
Ddex_cache_test.cc120 ArtMethod* method2 = method_types->FindClassMethod( in TEST_F() local
124 ASSERT_TRUE(method2 != nullptr); in TEST_F()
125 ASSERT_FALSE(method2->IsDirect()); in TEST_F()
132 const dex::MethodId& method2_id = dex_file.GetMethodId(method2->GetDexMethodIndex()); in TEST_F()
/art/test/503-dead-instructions/smali/
DDeadInstructions.smali34 .method public static method2(J)V
42 invoke-static {v0, v2}, LDeadInstructions;->method2(J)V
52 invoke-static {v0}, LDeadInstructions;->method2(J)V
/art/test/MethodTypes/
DMethodTypes.java19 public String method2(String a, String b); in method2() method
/art/test/046-reflect/src/
DMain.java579 Method method1, method2; in checkUnique() local
582 method2 = Main.class.getMethod("fancyMethod", ArrayList.class); in checkUnique()
586 if (method1 == method2) { in checkUnique()
591 if (method1.hashCode() == method2.hashCode() && method1.equals(method2)) { in checkUnique()
600 Method method2; in checkParametrizedTypeEqualsAndHashCode() local
604 method2 = ParametrizedTypeTest.class.getDeclaredMethod("aMethod", Set.class); in checkParametrizedTypeEqualsAndHashCode()
611 List<Type> types2 = Arrays.asList(method2.getGenericParameterTypes()); in checkParametrizedTypeEqualsAndHashCode()
656 Method method2; in checkGenericArrayTypeEqualsAndHashCode() local
660 method2 = GenericArrayTypeTest.class.getDeclaredMethod("aMethod", Object[].class); in checkGenericArrayTypeEqualsAndHashCode()
667 List<Type> types2 = Arrays.asList(method2.getGenericParameterTypes()); in checkGenericArrayTypeEqualsAndHashCode()
/art/test/589-super-imt/src/
DMain.java19 public Class<?> method2(); in method2() method
113 expectEquals(main.method2(), Main.class); in callMains()
199 expectEquals(main.method2(), SubMain.class); in callSubMains()
287 public Class<?> method2() { return Main.class; } in method2() method in Main
369 public Class<?> method2() { return SubMain.class; } in method2() method in SubMain
/art/test/141-class-unload/src/
DConflictIface.java19 public default Class<?> method2() { return ConflictIface.class; } in method2() method
DMain.java232 iface.method2(); in $noinline$callAllMethods()
/art/tools/dmtracedump/
Dtracedump.cc211 MethodEntry* method2; member
2359 ptr->method2 = methods2[match]; in createDiff()
2362 uint64_t e2 = ptr->method2->elapsedExclusive; in createDiff()
2370 uint64_t i2 = ptr->method2->elapsedInclusive; in createDiff()
2387 ptr->method2 = nullptr; in createDiff()
2407 while (ptr->method1 != nullptr && ptr->method2 != nullptr) { in createDiff()
2419 printf("%" PRIu64 " ", ptr->method2->elapsedExclusive); in createDiff()
2431 printf("%d\n", ptr->method2->numCalls[0]); in createDiff()
2450 while (ptr->method1 != nullptr && ptr->method2 != nullptr) { in createDiff()
2462 printf("%" PRIu64 " ", ptr->method2->elapsedInclusive); in createDiff()
[all …]
/art/runtime/
Dclass_linker_test.cc1613 ArtMethod* method2 = method_types->FindClassMethod( in TEST_F() local
1617 ASSERT_TRUE(method2 != nullptr); in TEST_F()
1618 ASSERT_FALSE(method2->IsDirect()); in TEST_F()
1619 const dex::MethodId& method2_id = dex_file.GetMethodId(method2->GetDexMethodIndex()); in TEST_F()
Dclass_linker.cc5873 ArtMethod* method2) in HasSameSignatureWithDifferentClassLoaders() argument
5882 ObjPtr<mirror::Class> other_return_type = method2->ResolveReturnType(); in HasSameSignatureWithDifferentClassLoaders()
5884 ThrowSignatureCheckResolveReturnTypeException(klass, super_klass, method1, method2); in HasSameSignatureWithDifferentClassLoaders()
5898 const dex::TypeList* types2 = method2->GetParameterTypeList(); in HasSameSignatureWithDifferentClassLoaders()
5903 method2->PrettyMethod(true).c_str())); in HasSameSignatureWithDifferentClassLoaders()
5911 method2->PrettyMethod(true).c_str())); in HasSameSignatureWithDifferentClassLoaders()
5920 method2->PrettyMethod(true).c_str())); in HasSameSignatureWithDifferentClassLoaders()
5935 method2->ResolveClassFromTypeIndex(other_param_type_idx); in HasSameSignatureWithDifferentClassLoaders()
5938 method2, i, other_param_type_idx); in HasSameSignatureWithDifferentClassLoaders()
/art/dex2oat/
Ddex2oat_test.cc1382 for (const ClassAccessor::Method& method2 : accessor.GetMethods()) { in TEST_F() local
1383 EXPECT_LE(method2.GetCodeItemOffset(), code_item_offset); in TEST_F()