HomeSort by relevance Sort by last modified time
    Searched refs:getParameterAnnotations (Results 1 - 25 of 48) sorted by null

1 2

  /dalvik/dx/src/com/android/dx/cf/attrib/
BaseParameterAnnotations.java 70 public final AnnotationsList getParameterAnnotations() {
  /external/guava/guava-testlib/src/com/google/common/testing/
NullPointerTester.java 204 @Override public Annotation[][] getParameterAnnotations() {
205 return method.getParameterAnnotations();
231 @Override public Annotation[][] getParameterAnnotations() {
232 return ctor.getParameterAnnotations();
279 Annotation[] annotations = func.getParameterAnnotations()[paramIndex];
306 Annotation[][] getParameterAnnotations();
  /external/junit/src/org/junit/experimental/theories/
ParameterSignature.java 16 .getParameterAnnotations());
21 .getParameterAnnotations());
  /libcore/libart/src/main/java/java/lang/reflect/
Constructor.java 215 public Annotation[][] getParameterAnnotations() {
216 return artMethod.getParameterAnnotations();
ArtMethod.java 171 Annotation[][] getParameterAnnotations() {
172 return AnnotationAccess.getParameterAnnotations(declaringClass, methodDexIndex);
Method.java 312 public Annotation[][] getParameterAnnotations() {
313 return artMethod.findOverriddenMethodIfProxy().getParameterAnnotations();
AbstractMethod.java 190 public abstract Annotation[][] getParameterAnnotations();
  /dalvik/dx/src/com/android/dx/dex/cf/
AttributeTranslator.java 357 public static AnnotationsList getParameterAnnotations(Method method) {
372 return invisible.getParameterAnnotations();
376 return visible.getParameterAnnotations();
381 return AnnotationsList.combine(visible.getParameterAnnotations(),
382 invisible.getParameterAnnotations());
  /libcore/libdvm/src/main/java/java/lang/reflect/
Method.java 301 public Annotation[][] getParameterAnnotations() {
303 = getParameterAnnotations(declaringClass, slot);
310 static native Annotation[][] getParameterAnnotations(Class declaringClass, int slot);
Constructor.java 234 public Annotation[][] getParameterAnnotations() {
236 = Method.getParameterAnnotations(declaringClass, slot);
  /art/test/004-annotations/src/android/test/anno/
TestAnnotations.java 44 for (Annotation[] pannos: c.getParameterAnnotations()) {
55 for (Annotation[] pannos: m.getParameterAnnotations()) {
  /dalvik/tests/004-annotations/src/android/test/anno/
TestAnnotations.java 44 for (Annotation[] pannos: c.getParameterAnnotations()) {
55 for (Annotation[] pannos: m.getParameterAnnotations()) {
  /libcore/benchmarks/src/benchmarks/regression/
AnnotatedElementBenchmark.java 61 method.getParameterAnnotations();
  /libcore/luni/src/test/java/libcore/java/lang/reflect/
AnnotationsTest.java 59 Annotation[][] parameterAnnotations = method.getParameterAnnotations();
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
ClassDefItem.java 383 public AnnotationsList getParameterAnnotations(CstMethodRef method) {
384 return annotationsDirectory.getParameterAnnotations(method);
AnnotationsDirectoryItem.java 225 public AnnotationsList getParameterAnnotations(CstMethodRef method) {
  /dalvik/dx/src/com/android/dx/dex/file/
ClassDefItem.java 380 public AnnotationsList getParameterAnnotations(CstMethodRef method) {
381 return annotationsDirectory.getParameterAnnotations(method);
AnnotationsDirectoryItem.java 224 public AnnotationsList getParameterAnnotations(CstMethodRef method) {
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
ClassDefItem.java 381 public AnnotationsList getParameterAnnotations(CstMethodRef method) {
382 return annotationsDirectory.getParameterAnnotations(method);
AnnotationsDirectoryItem.java 225 public AnnotationsList getParameterAnnotations(CstMethodRef method) {
  /external/smali/dexlib/src/main/java/org/jf/dexlib/
AnnotationDirectoryItem.java 391 public List<ParameterAnnotation> getParameterAnnotations() {
439 public AnnotationSetRefList getParameterAnnotations(MethodIdItem methodIdItem) {
  /art/test/044-proxy/src/
BasicTest.java 88 Annotation[][] paramAnnos = meth.getParameterAnnotations();
  /dalvik/dx/tests/115-merge/com/android/dx/merge/
DexMergeTest.java 124 method.getParameterAnnotations()[1][0].toString());
  /dalvik/tests/044-proxy/src/
BasicTest.java 76 Annotation[][] paramAnnos = meth.getParameterAnnotations();
  /external/javassist/src/main/javassist/
CtBehavior.java 242 public Object[][] getParameterAnnotations() throws ClassNotFoundException {
243 return getParameterAnnotations(false);
255 * @see #getParameterAnnotations()
261 return getParameterAnnotations(true);
268 Object[][] getParameterAnnotations(boolean ignoreNotFound)
    [all...]

Completed in 2186 milliseconds

1 2