Home
last modified time | relevance | path

Searched refs:method1 (Results 1 – 5 of 5) sorted by relevance

/art/test/046-reflect/src/
DMain.java581 Method method1, method2; in checkUnique() local
583 method1 = Main.class.getMethod("fancyMethod", new Class[] { ArrayList.class }); in checkUnique()
588 if (method1 == method2) { in checkUnique()
593 if (method1.hashCode() == method2.hashCode() && method1.equals(method2)) { in checkUnique()
601 Method method1; in checkParametrizedTypeEqualsAndHashCode() local
605 method1 = ParametrizedTypeTest.class.getDeclaredMethod("aMethod", Set.class); in checkParametrizedTypeEqualsAndHashCode()
612 List<Type> types1 = Arrays.asList(method1.getGenericParameterTypes()); in checkParametrizedTypeEqualsAndHashCode()
657 Method method1; in checkGenericArrayTypeEqualsAndHashCode() local
661 method1 = GenericArrayTypeTest.class.getDeclaredMethod("aMethod", Object[].class); in checkGenericArrayTypeEqualsAndHashCode()
668 List<Type> types1 = Arrays.asList(method1.getGenericParameterTypes()); in checkGenericArrayTypeEqualsAndHashCode()
/art/test/503-dead-instructions/smali/
DDeadInstructions.smali19 .method public static method1()V
30 invoke-static {v0, v1}, LDeadInstructions;->method1()V
/art/test/589-super-imt/src/
DMain.java18 public Class<?> method1(); in method1() method
112 expectEquals(main.method1(), Main.class); in callMains()
198 expectEquals(main.method1(), SubMain.class); in callSubMains()
286 public Class<?> method1() { return Main.class; } in method1() method in Main
368 public Class<?> method1() { return SubMain.class; } in method1() method in SubMain
/art/tools/dmtracedump/
Dtracedump.cc210 MethodEntry* method1; member
2356 ptr->method1 = methods1[i]; in createDiff()
2359 uint64_t e1 = ptr->method1->elapsedExclusive; in createDiff()
2367 uint64_t i1 = ptr->method1->elapsedInclusive; in createDiff()
2384 ptr->method1 = nullptr; in createDiff()
2405 while (ptr->method1 != nullptr && ptr->method2 != nullptr) { in createDiff()
2408 char* className = htmlEscape(ptr->method1->className, classBuf, HTML_BUFSIZE); in createDiff()
2409 char* methodName = htmlEscape(ptr->method1->methodName, methodBuf, HTML_BUFSIZE); in createDiff()
2414 printf("%" PRIu64 " ", ptr->method1->elapsedExclusive); in createDiff()
2426 printf("%d\n", ptr->method1->numCalls[0]); in createDiff()
[all …]
/art/runtime/
Dclass_linker.cc4844 ArtMethod* method1, in HasSameSignatureWithDifferentClassLoaders() argument
4849 Handle<mirror::Class> return_type(hs.NewHandle(method1->GetReturnType(true /* resolve */, in HasSameSignatureWithDifferentClassLoaders()
4852 ThrowSignatureCheckResolveReturnTypeException(klass, super_klass, method1, method1); in HasSameSignatureWithDifferentClassLoaders()
4858 ThrowSignatureCheckResolveReturnTypeException(klass, super_klass, method1, method2); in HasSameSignatureWithDifferentClassLoaders()
4862 ThrowSignatureMismatch(klass, super_klass, method1, in HasSameSignatureWithDifferentClassLoaders()
4871 const DexFile::TypeList* types1 = method1->GetParameterTypeList(); in HasSameSignatureWithDifferentClassLoaders()
4875 ThrowSignatureMismatch(klass, super_klass, method1, in HasSameSignatureWithDifferentClassLoaders()
4883 ThrowSignatureMismatch(klass, super_klass, method1, in HasSameSignatureWithDifferentClassLoaders()
4892 ThrowSignatureMismatch(klass, super_klass, method1, in HasSameSignatureWithDifferentClassLoaders()
4901 method1->GetClassFromTypeIndex(param_type_idx, true /* resolve */, pointer_size))); in HasSameSignatureWithDifferentClassLoaders()
[all …]