HomeSort by relevance Sort by last modified time
    Searched refs:delegateMethod (Results 1 - 3 of 3) sorted by null

  /frameworks/base/tools/layoutlib/bridge/tests/src/com/android/layoutlib/bridge/
TestDelegates.java 121 Method delegateMethod = delegateClass.getDeclaredMethod(originalMethod.getName(),
128 delegateMethod.getName(),
130 delegateMethod.getAnnotation(LayoutlibDelegate.class));
136 delegateMethod.getName(),
138 (delegateMethod.getModifiers() & Modifier.STATIC) == Modifier.STATIC);
141 checkedDelegateMethods.add(delegateMethod);
155 for (Method delegateMethod : delegateMethods) {
157 if (delegateMethod.getAnnotation(LayoutlibDelegate.class) == null) {
165 getMethodName(delegateMethod)),
166 checkedDelegateMethods.contains(delegateMethod));
    [all...]
  /external/javassist/src/main/javassist/
CtNewMethod.java 61 * @param delegateMethod the name of the method
65 String delegateObj, String delegateMethod)
70 if (delegateMethod != null)
71 compiler.recordProceed(delegateObj, delegateMethod);
CtBehavior.java 387 * @param delegateMethod the name of the method
391 String delegateObj, String delegateMethod)
398 if (delegateMethod != null)
399 jv.recordProceed(delegateObj, delegateMethod);
    [all...]

Completed in 460 milliseconds