/external/testng/src/main/java/org/testng/internal/invokers/ |
D | InvokedMethodListenerInvoker.java | 60 IInvokedMethod invokedMethod) { in invokeListener() argument 62 strategy.callMethod(listenerInstance, invokedMethod, m_testResult, m_testContext); in invokeListener() 76 void callMethod(LISTENER_TYPE listener, IInvokedMethod invokedMethod, ITestResult testResult, in callMethod() argument 82 public void callMethod(IInvokedMethodListener listener, IInvokedMethod invokedMethod, in callMethod() argument 84 listener.beforeInvocation(invokedMethod, testResult); in callMethod() 90 public void callMethod(IInvokedMethodListener2 listener, IInvokedMethod invokedMethod, in callMethod() argument 92 listener.beforeInvocation(invokedMethod, testResult, testContext); in callMethod() 98 public void callMethod(IInvokedMethodListener listener, IInvokedMethod invokedMethod, in callMethod() argument 100 listener.afterInvocation(invokedMethod, testResult); in callMethod() 106 public void callMethod(IInvokedMethodListener2 listener, IInvokedMethod invokedMethod, in callMethod() argument [all …]
|
/external/desugar/java/com/google/devtools/build/android/desugar/ |
D | LambdaDesugaring.java | 229 private MethodReferenceBridgeInfo queueUpBridgeMethodIfNeeded(Handle invokedMethod) in queueUpBridgeMethodIfNeeded() argument 231 if (invokedMethod.getName().startsWith("lambda$")) { in queueUpBridgeMethodIfNeeded() 233 return MethodReferenceBridgeInfo.noBridge(invokedMethod); in queueUpBridgeMethodIfNeeded() 237 Executable invoked = findTargetMethod(invokedMethod); in queueUpBridgeMethodIfNeeded() 238 if (isVisibleToLambdaClass(invoked, invokedMethod.getOwner())) { in queueUpBridgeMethodIfNeeded() 240 return MethodReferenceBridgeInfo.noBridge(invokedMethod); in queueUpBridgeMethodIfNeeded() 248 invokedMethod); in queueUpBridgeMethodIfNeeded() 250 !invokedMethod.isInterface(), in queueUpBridgeMethodIfNeeded() 253 invokedMethod); in queueUpBridgeMethodIfNeeded() 254 MethodReferenceBridgeInfo result = bridgeMethods.get(invokedMethod); in queueUpBridgeMethodIfNeeded() [all …]
|
/external/mockito/src/main/java/org/mockito/internal/creation/bytebuddy/ |
D | MockMethodInterceptor.java | 46 Method invokedMethod, in doIntercept() argument 51 invokedMethod, in doIntercept() 59 Method invokedMethod, in doIntercept() argument 63 …return handler.handle(createInvocation(mock, invokedMethod, arguments, realMethod, mockCreationSet… in doIntercept() 104 @Origin Method invokedMethod, in interceptSuperCallable() argument 112 invokedMethod, in interceptSuperCallable() 123 @Origin Method invokedMethod, in interceptAbstract() argument 130 invokedMethod, in interceptAbstract()
|
/external/mockito/src/main/java/org/mockito/internal/invocation/ |
D | DefaultInvocationFactory.java | 35 …public static InterceptedInvocation createInvocation(Object mock, Method invokedMethod, Object[] a… in createInvocation() argument 38 createMockitoMethod(invokedMethod, settings), in createInvocation() 46 … private static InterceptedInvocation createInvocation(Object mock, Method invokedMethod, Object[] in createInvocation() argument 48 … return createInvocation(mock, invokedMethod, arguments, realMethod, settings, new LocationImpl()); in createInvocation()
|
/external/testng/src/main/java/org/testng/internal/ |
D | Invoker.java | 487 InvokedMethod invokedMethod= new InvokedMethod(targetInstance, in invokeConfigurationMethod() local 493 runInvokedMethodListeners(BEFORE_INVOCATION, invokedMethod, testResult); in invokeConfigurationMethod() 494 m_notifier.addInvokedMethod(invokedMethod); in invokeConfigurationMethod() 535 runInvokedMethodListeners(AFTER_INVOCATION, invokedMethod, testResult); in invokeConfigurationMethod() 547 …runInvokedMethodListeners(InvokedMethodListenerMethod listenerMethod, IInvokedMethod invokedMethod, in runInvokedMethodListeners() argument 556 invoker.invokeListener(currentListener, invokedMethod); in runInvokedMethodListeners() 597 InvokedMethod invokedMethod = null; in invokeMethod() local 609 invokedMethod= new InvokedMethod(instance, in invokeMethod() 621 runInvokedMethodListeners(BEFORE_INVOCATION, invokedMethod, testResult); in invokeMethod() 623 m_notifier.addInvokedMethod(invokedMethod); in invokeMethod() [all …]
|