Searched refs:method2 (Results 1 – 9 of 9) sorted by relevance
/art/test/503-dead-instructions/smali/ |
D | DeadInstructions.smali | 34 .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/ |
D | MethodTypes.java | 19 public String method2(String a, String b); in method2() method
|
/art/runtime/mirror/ |
D | dex_cache_test.cc | 138 ArtMethod* method2 = method_types->FindClassMethod( in TEST_F() local 142 ASSERT_TRUE(method2 != nullptr); in TEST_F() 143 ASSERT_FALSE(method2->IsDirect()); in TEST_F() 150 const dex::MethodId& method2_id = dex_file.GetMethodId(method2->GetDexMethodIndex()); in TEST_F()
|
/art/test/046-reflect/src/ |
D | Main.java | 579 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/ |
D | Main.java | 19 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/tools/dmtracedump/ |
D | tracedump.cc | 211 MethodEntry* method2; member 2361 ptr->method2 = methods2[match]; in createDiff() 2364 uint64_t e2 = ptr->method2->elapsedExclusive; in createDiff() 2372 uint64_t i2 = ptr->method2->elapsedInclusive; in createDiff() 2389 ptr->method2 = nullptr; in createDiff() 2409 while (ptr->method1 != nullptr && ptr->method2 != nullptr) { in createDiff() 2421 printf("%" PRIu64 " ", ptr->method2->elapsedExclusive); in createDiff() 2433 printf("%d\n", ptr->method2->numCalls[0]); in createDiff() 2452 while (ptr->method1 != nullptr && ptr->method2 != nullptr) { in createDiff() 2464 printf("%" PRIu64 " ", ptr->method2->elapsedInclusive); in createDiff() [all …]
|
/art/runtime/ |
D | class_linker_test.cc | 1604 ArtMethod* method2 = method_types->FindClassMethod( in TEST_F() local 1608 ASSERT_TRUE(method2 != nullptr); in TEST_F() 1609 ASSERT_FALSE(method2->IsDirect()); in TEST_F() 1610 const dex::MethodId& method2_id = dex_file.GetMethodId(method2->GetDexMethodIndex()); in TEST_F()
|
D | class_linker.cc | 5704 ArtMethod* method2) in HasSameSignatureWithDifferentClassLoaders() argument 5713 ObjPtr<mirror::Class> other_return_type = method2->ResolveReturnType(); in HasSameSignatureWithDifferentClassLoaders() 5715 ThrowSignatureCheckResolveReturnTypeException(klass, super_klass, method1, method2); in HasSameSignatureWithDifferentClassLoaders() 5729 const dex::TypeList* types2 = method2->GetParameterTypeList(); in HasSameSignatureWithDifferentClassLoaders() 5734 method2->PrettyMethod(true).c_str())); in HasSameSignatureWithDifferentClassLoaders() 5742 method2->PrettyMethod(true).c_str())); in HasSameSignatureWithDifferentClassLoaders() 5751 method2->PrettyMethod(true).c_str())); in HasSameSignatureWithDifferentClassLoaders() 5766 method2->ResolveClassFromTypeIndex(other_param_type_idx); in HasSameSignatureWithDifferentClassLoaders() 5769 method2, i, other_param_type_idx); in HasSameSignatureWithDifferentClassLoaders()
|
/art/dex2oat/ |
D | dex2oat_test.cc | 1290 for (const ClassAccessor::Method& method2 : accessor.GetMethods()) { in TEST_F() local 1291 EXPECT_LE(method2.GetCodeItemOffset(), code_item_offset); in TEST_F()
|