Searched refs:method2 (Results 1 - 7 of 7) sorted by relevance

/art/test/MethodTypes/
H A DMethodTypes.java19 public String method2(String a, String b); method in interface:MethodTypes
/art/runtime/mirror/
H A Ddex_cache_test.cc138 ArtMethod* method2 = method_types->FindClassMethod( local
139 "method2",
142 ASSERT_TRUE(method2 != nullptr);
143 ASSERT_FALSE(method2->IsDirect());
150 const DexFile::MethodId& method2_id = dex_file.GetMethodId(method2->GetDexMethodIndex());
/art/test/046-reflect/src/
H A DMain.java579 Method method1, method2;
582 method2 = Main.class.getMethod("fancyMethod", ArrayList.class);
586 if (method1 == method2) {
591 if (method1.hashCode() == method2.hashCode() && method1.equals(method2)) {
600 Method method2;
604 method2 = ParametrizedTypeTest.class.getDeclaredMethod("aMethod", Set.class);
611 List<Type> types2 = Arrays.asList(method2.getGenericParameterTypes());
656 Method method2;
660 method2
[all...]
/art/test/589-super-imt/src/
H A DMain.java19 public Class<?> method2(); method in interface:Itf
113 expectEquals(main.method2(), Main.class);
199 expectEquals(main.method2(), SubMain.class);
287 public Class<?> method2() { return Main.class; } method in class:Main
369 public Class<?> method2() { return SubMain.class; } method in class:SubMain
/art/tools/dmtracedump/
H A Dtracedump.cc211 MethodEntry* method2; member in struct:DiffEntry
2361 ptr->method2 = methods2[match];
2364 uint64_t e2 = ptr->method2->elapsedExclusive;
2372 uint64_t i2 = ptr->method2->elapsedInclusive;
2389 ptr->method2 = nullptr;
2409 while (ptr->method1 != nullptr && ptr->method2 != nullptr) {
2421 printf("%" PRIu64 " ", ptr->method2->elapsedExclusive);
2433 printf("%d\n", ptr->method2->numCalls[0]);
2452 while (ptr->method1 != nullptr && ptr->method2 != nullptr) {
2464 printf("%" PRIu64 " ", ptr->method2
[all...]
/art/runtime/
H A Dclass_linker_test.cc1576 ArtMethod* method2 = method_types->FindClassMethod( local
1577 "method2",
1580 ASSERT_TRUE(method2 != nullptr);
1581 ASSERT_FALSE(method2->IsDirect());
1582 const DexFile::MethodId& method2_id = dex_file.GetMethodId(method2->GetDexMethodIndex());
H A Dclass_linker.cc5086 ArtMethod* method2)
5095 ObjPtr<mirror::Class> other_return_type = method2->ResolveReturnType();
5097 ThrowSignatureCheckResolveReturnTypeException(klass, super_klass, method1, method2);
5111 const DexFile::TypeList* types2 = method2->GetParameterTypeList();
5116 method2->PrettyMethod(true).c_str()));
5124 method2->PrettyMethod(true).c_str()));
5133 method2->PrettyMethod(true).c_str()));
5148 method2->ResolveClassFromTypeIndex(other_param_type_idx);
5151 method2, i, other_param_type_idx);

Completed in 292 milliseconds