Home
last modified time | relevance | path

Searched refs:methodInvocation (Results 1 – 13 of 13) sorted by relevance

/external/guice/extensions/persist/src/com/google/inject/persist/jpa/
DJpaLocalTxnInterceptor.java49 public Object invoke(MethodInvocation methodInvocation) throws Throwable { in invoke() argument
57 Transactional transactional = readTransactionMetadata(methodInvocation); in invoke()
62 return methodInvocation.proceed(); in invoke()
70 result = methodInvocation.proceed(); in invoke()
105 private Transactional readTransactionMetadata(MethodInvocation methodInvocation) { in readTransactionMetadata() argument
107 Method method = methodInvocation.getMethod(); in readTransactionMetadata()
108 Class<?> targetClass = methodInvocation.getThis().getClass(); in readTransactionMetadata()
DJpaFinderProxy.java57 public Object invoke(MethodInvocation methodInvocation) throws Throwable { in invoke() argument
61 JpaFinderProxy.FinderDescriptor finderDescriptor = getFinderDescriptor(methodInvocation); in invoke()
68 bindQueryRawParameters(jpaQuery, finderDescriptor, methodInvocation.getArguments()); in invoke()
70 bindQueryNamedParameters(jpaQuery, finderDescriptor, methodInvocation.getArguments()); in invoke()
/external/guice/core/test/com/google/inject/
DMethodInterceptionTest.java49 public Object invoke(MethodInvocation methodInvocation) throws Throwable { in invoke() argument
51 return methodInvocation.proceed(); in invoke()
56 public Object invoke(MethodInvocation methodInvocation) throws Throwable { in invoke() argument
62 public Object invoke(MethodInvocation methodInvocation) throws Throwable { in invoke() argument
63 return methodInvocation.proceed(); in invoke()
115 public Object invoke(MethodInvocation methodInvocation) throws Throwable { in testGetThis()
116 lastTarget.set(methodInvocation.getThis()); in testGetThis()
117 return methodInvocation.proceed(); in testGetThis()
132 public Object invoke(MethodInvocation methodInvocation) throws Throwable { in testInterceptingFinalClass()
133 return methodInvocation.proceed(); in testInterceptingFinalClass()
[all …]
DIntegrationTest.java63 public Object invoke(MethodInvocation methodInvocation) throws Throwable { in invoke() argument
65 return methodInvocation.proceed(); in invoke()
DTypeListenerTest.java148 public Object invoke(org.aopalliance.intercept.MethodInvocation methodInvocation) in prefixInterceptor()
150 return prefix + methodInvocation.proceed(); in prefixInterceptor()
578 public Object invoke(org.aopalliance.intercept.MethodInvocation methodInvocation)
580 return methodInvocation.proceed();
DBindingTest.java287 public Object invoke(MethodInvocation methodInvocation) throws Throwable { in testToConstructorAndMethodInterceptors()
289 return methodInvocation.proceed(); in testToConstructorAndMethodInterceptors()
DParentInjectorTest.java135 public Object invoke(org.aopalliance.intercept.MethodInvocation methodInvocation) {
/external/guice/core/test/com/google/inject/internal/
DProxyFactoryTest.java72 public Object invoke(MethodInvocation methodInvocation) throws Throwable { in invoke() argument
74 return methodInvocation.proceed(); in invoke()
189 public Object invoke(MethodInvocation methodInvocation) throws Throwable { in invoke() argument
191 return methodInvocation.proceed(); in invoke()
197 public Object invoke(MethodInvocation methodInvocation) throws Throwable { in invoke() argument
198 methodInvocation.proceed(); in invoke()
199 return methodInvocation.proceed(); in invoke()
/external/guice/core/test/com/google/inject/internal/util/
DLineNumbersTest.java67 public Object invoke(org.aopalliance.intercept.MethodInvocation methodInvocation) { in testCanHandleLineNumbersForGuiceGeneratedClasses()
/external/annotation-tools/annotation-file-utilities/src/annotator/find/
DASTPathCriterion.java515 MethodInvocationTree methodInvocation = (MethodInvocationTree) actualNode;
518 List<? extends Tree> typeArgs = methodInvocation.getTypeArguments();
524 return methodInvocation.getMethodSelect();
527 List<? extends ExpressionTree> args = methodInvocation.getArguments();
/external/annotation-tools/scene-lib/src/annotations/io/
DASTPath.java1083 MethodInvocationTree methodInvocation = in matches() local
1087 List<? extends Tree> typeArgs = methodInvocation.getTypeArguments(); in matches()
1093 next = methodInvocation.getMethodSelect(); in matches()
1096 List<? extends ExpressionTree> args = methodInvocation.getArguments(); in matches()
/external/guice/extensions/assistedinject/test/com/google/inject/assistedinject/
DFactoryProvider2Test.java758 public Object invoke(org.aopalliance.intercept.MethodInvocation methodInvocation) in testMethodInterceptorsOnAssistedTypes()
761 return methodInvocation.proceed(); in testMethodInterceptorsOnAssistedTypes()
/external/guice/core/test/com/google/inject/spi/
DElementsTest.java695 public Object invoke(org.aopalliance.intercept.MethodInvocation methodInvocation) { in testBindIntercepor()