Home
last modified time | relevance | path

Searched refs:originalMethod (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/tools/layoutlib/bridge/tests/src/com/android/layoutlib/bridge/
DTestDelegates.java92 for (Method originalMethod : originalMethods) { in compare()
94 if (originalMethod.getAnnotation(LayoutlibDelegate.class) == null) { in compare()
99 Class<?>[] parameters = originalMethod.getParameterTypes(); in compare()
103 if ((originalMethod.getModifiers() & Modifier.STATIC) == 0) { in compare()
123 Method delegateMethod = delegateClass.getDeclaredMethod(originalMethod.getName(), in compare()
127 if (delegateMethod.getReturnType() != originalMethod.getReturnType()) { in compare()
133 originalMethod.getReturnType().getName())); in compare()
158 String name = getMethodName(originalMethod, parameters); in compare()
/frameworks/base/tools/layoutlib/create/tests/com/android/tools/layoutlib/create/
DStubMethodAdapterTest.java100 MethodVisitor originalMethod = in visitMethod() local
106 return new StubMethodAdapter(originalMethod, name, descriptor.getReturnType(), in visitMethod()
109 return originalMethod; in visitMethod()