Home | History | Annotate | Download | only in bytecode

Lines Matching defs:profile

14     InvocationProfile profile = new InvocationProfile("android/view/View/invalidate()V", false, getClass().getClassLoader());
15 assertThat(profile.clazz).isEqualTo(View.class);
16 assertThat(profile.methodName).isEqualTo("invalidate");
17 assertThat(profile.isStatic).isEqualTo(false);
18 assertThat(profile.paramTypes).isEmpty();
23 InvocationProfile profile = new InvocationProfile("android/view/View/invalidate(I[ZLjava/lang/String;)Lwhatever/Foo;", false, getClass().getClassLoader());
24 assertThat(profile.clazz).isEqualTo(View.class);
25 assertThat(profile.methodName).isEqualTo("invalidate");
26 assertThat(profile.isStatic).isEqualTo(false);
27 assertThat(profile.paramTypes).asList().containsExactly("int", "boolean[]", "java.lang.String");