Home
last modified time | relevance | path

Searched refs:getParameterAnnotations (Results 1 – 25 of 31) sorted by relevance

12

/external/guava/android/guava/src/com/google/common/reflect/
DInvokable.java118 Annotation[][] annotations = getParameterAnnotations(); in getParameters()
184 abstract Annotation[][] getParameterAnnotations(); in getParameterAnnotations() method in Invokable
219 final Annotation[][] getParameterAnnotations() { in getParameterAnnotations() method in Invokable.MethodInvokable
220 return method.getParameterAnnotations(); in getParameterAnnotations()
296 final Annotation[][] getParameterAnnotations() { in getParameterAnnotations() method in Invokable.ConstructorInvokable
297 return constructor.getParameterAnnotations(); in getParameterAnnotations()
/external/guava/guava/src/com/google/common/reflect/
DInvokable.java119 Annotation[][] annotations = getParameterAnnotations(); in getParameters()
190 abstract Annotation[][] getParameterAnnotations(); in getParameterAnnotations() method in Invokable
237 final Annotation[][] getParameterAnnotations() { in getParameterAnnotations() method in Invokable.MethodInvokable
238 return method.getParameterAnnotations(); in getParameterAnnotations()
324 final Annotation[][] getParameterAnnotations() { in getParameterAnnotations() method in Invokable.ConstructorInvokable
325 return constructor.getParameterAnnotations(); in getParameterAnnotations()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/introspect/
DAnnotatedWithParams.java75 public final AnnotationMap getParameterAnnotations(int index) in getParameterAnnotations() method in AnnotatedWithParams
87 _typeContext, getParameterAnnotations(index), index); in getParameter()
DAnnotatedCreatorCollector.java274 Annotation[][] paramAnns = ctor.getParameterAnnotations(); in constructNonDefaultConstructor()
305 (mixin == null) ? null : mixin.getParameterAnnotations()); in constructNonDefaultConstructor()
323 collectAnnotations(m.getParameterAnnotations(), in constructFactoryCreator()
324 (mixin == null) ? null : mixin.getParameterAnnotations())); in constructFactoryCreator()
/external/sl4a/Common/src/com/googlecode/android_scripting/rpc/
DMethodDescriptor.java86 final Annotation annotations[][] = getParameterAnnotations(); in invoke()
115 final Annotation annotations[][] = getParameterAnnotations(); in invoke()
294 public Annotation[][] getParameterAnnotations() { in getParameterAnnotations() method in MethodDescriptor
295 return mMethod.getParameterAnnotations(); in getParameterAnnotations()
311 final Annotation[][] annotations = mMethod.getParameterAnnotations(); in getHelp()
409 Annotation[][] parametersAnnotations = mMethod.getParameterAnnotations(); in getParameterValues()
437 Annotation[][] parametersAnnotations = mMethod.getParameterAnnotations(); in getParameterHints()
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/
DDexBackedMethod.java137 getParameterAnnotations(), in getParameters()
150 public List<? extends Set<? extends DexBackedAnnotation>> getParameterAnnotations() {
151 … return AnnotationsDirectory.getParameterAnnotations(dexFile, parameterAnnotationSetListOffset);
/external/junit/src/main/java/org/junit/experimental/theories/
DParameterSignature.java39 .getParameterAnnotations()); in signatures()
44 .getParameterAnnotations()); in signatures()
/external/testng/src/main/java/org/testng/internal/annotations/
DJDK15AnnotationFinder.java227 final Annotation[][] annotations = method.getParameterAnnotations(); in hasTestInstance()
241 return optionalValues(method.getParameterAnnotations()); in findOptionalValues()
246 return optionalValues(method.getParameterAnnotations()); in findOptionalValues()
/external/testng/src/test/java/test/hook/
DHookSuccess862Test.java17 Annotation[] annotations = method.getParameterAnnotations()[i]; in run()
/external/javassist/src/test/scoped/
DScopedRepositoryTestCase.java212 Object[] paramAnnotations = method.getParameterAnnotations(); in getMethodParameterAnnotations()
229 Object[] paramAnnotations = constructor.getParameterAnnotations(); in getConstructorParameterAnnotations()
/external/guice/extensions/assistedinject/src/com/google/inject/assistedinject/
DAssistedConstructor.java52 Annotation[][] annotations = constructor.getParameterAnnotations(); in AssistedConstructor()
DFactoryProvider.java324 method.getParameterAnnotations(); in createMethodMapping()
325 for (Annotation[] parameterAnnotations : method.getParameterAnnotations()) { in createMethodMapping()
/external/mockito/src/test/java/org/mockito/
DAnnotationsAreCopiedFromMockedTypeTest.java54 final Annotation[] firstParamAnnotations = method.getParameterAnnotations()[0]; in firstParamOf()
/external/guice/extensions/mini/src/com/google/inject/mini/
DMiniGuice.java154 method, method.getGenericParameterTypes(), method.getParameterAnnotations()); in addProviderMethodBinding()
247 constructor.getParameterAnnotations()); in addJitBinding()
/external/javassist/src/main/javassist/
DCtBehavior.java280 public Object[][] getParameterAnnotations() throws ClassNotFoundException { in getParameterAnnotations() method in CtBehavior
281 return getParameterAnnotations(false); in getParameterAnnotations()
299 return getParameterAnnotations(true); in getAvailableParameterAnnotations()
306 Object[][] getParameterAnnotations(boolean ignoreNotFound) in getParameterAnnotations() method in CtBehavior
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/
DClassSection.java73 @Nullable List<? extends AnnotationSetKey> getParameterAnnotations(@Nonnull MethodKey key); in getParameterAnnotations() method
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/util/
DAnnotationsDirectory.java119 public static List<Set<? extends DexBackedAnnotation>> getParameterAnnotations(
DDebugInfo.java132 method.getParameterAnnotations(), in iterator()
/external/guice/extensions/throwingproviders/src/com/google/inject/throwingproviders/
DCheckedProviderMethodsModule.java98 Annotation[][] parameterAnnotations = method.getParameterAnnotations(); in createProviderMethod()
/external/smali/examples/AnnotationTypes/
DMain.smali129 …invoke-virtual {v1}, Ljava/lang/reflect/Method;->getParameterAnnotations()[[Ljava/lang/annotation/…
/external/javassist/src/test/javassist/
DJvstTest3.java474 Object[][] anno = cc.getDeclaredMethod("foo").getParameterAnnotations(); in testGetParmeterAnnotations()
481 Object[][] anno2 = cc.getDeclaredMethod("bar").getParameterAnnotations(); in testGetParmeterAnnotations()
497 ja = m1.getParameterAnnotations(); in testGetParmeterAnnotations()
504 assertEquals(0, m2.getParameterAnnotations().length); in testGetParmeterAnnotations()
/external/guice/extensions/persist/src/com/google/inject/persist/jpa/
DJpaFinderProxy.java174 Annotation[][] parameterAnnotations = method.getParameterAnnotations(); in getFinderDescriptor()
/external/junit-params/src/main/java/junitparams/internal/
DInvokeParameterisedMethod.java101 Annotation[][] parameterAnnotations = testMethod.getMethod().getParameterAnnotations(); in castParamsUsingConverters()
/external/guice/core/src/com/google/inject/spi/
DInjectionPoint.java74 this.dependencies = forMember(method, declaringType, method.getParameterAnnotations()); in InjectionPoint()
82 forMember(constructor, declaringType, constructor.getParameterAnnotations()); in InjectionPoint()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/util/
DClassUtil.java1363 public Annotation[][] getParameterAnnotations() { in getParameterAnnotations() method in ClassUtil.Ctor
1366 result = _ctor.getParameterAnnotations(); in getParameterAnnotations()

12