/external/vogar/src/vogar/target/junit/ |
D | Junit4.java | 99 for (Annotation a : m.getAnnotations()) { in findParameters() 133 for (Annotation a : klass.getAnnotations()) { in isJunit4Test() 155 for (Annotation a : m.getAnnotations()) { in isJunit4Test() 169 for (Annotation a : suite.getAnnotations()) { in getSuiteTests() 183 for (Annotation a : suite.getAnnotations()) { in getSuiteTests() 260 for (Annotation a : m.getAnnotations()) { in invokeMethodWithAnnotation() 270 for (Annotation a : method.getAnnotations()) { in meetsExpectations()
|
/external/junit/src/org/junit/experimental/theories/ |
D | ParameterSignature.java | 51 public List<Annotation> getAnnotations() { in getAnnotations() method in ParameterSignature 76 .getAnnotations(), annotationType, depth - 1); in findDeepAnnotation() 85 for (Annotation each : getAnnotations()) in getAnnotation()
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/pool/ |
D | ClassPool.java | 114 annotationSetPool.intern(field.getAnnotations()); in intern() 127 annotationSetPool.intern(method.getAnnotations()); in intern() 130 annotationSetPool.intern(parameter.getAnnotations()); in intern() 134 annotationSetPool.intern(poolClassDef.getAnnotations()); in intern() 333 Set<? extends Annotation> annotations = classDef.getAnnotations(); 341 Set<? extends Annotation> annotations = field.getAnnotations(); 349 Set<? extends Annotation> annotations = method.getAnnotations(); 359 return input.getAnnotations().size() > 0; 367 return input.getAnnotations();
|
D | PoolMethod.java | 86 @Override @Nonnull public Set<? extends Annotation> getAnnotations() { in getAnnotations() method in PoolMethod 87 return method.getAnnotations(); in getAnnotations()
|
D | PoolClassDef.java | 88 @Nonnull @Override public Set<? extends Annotation> getAnnotations() { in getAnnotations() method in PoolClassDef 89 return classDef.getAnnotations(); in getAnnotations()
|
/external/junit/src/org/junit/runners/model/ |
D | FrameworkField.java | 25 public Annotation[] getAnnotations() { in getAnnotations() method in FrameworkField 26 return fField.getAnnotations(); in getAnnotations()
|
D | TestClass.java | 52 for (Annotation each : member.getAnnotations()) { in addToAnnotationLists() 134 public Annotation[] getAnnotations() { in getAnnotations() method in TestClass 137 return fClass.getAnnotations(); in getAnnotations()
|
D | FrameworkMethod.java | 145 public Annotation[] getAnnotations() { 146 return fMethod.getAnnotations();
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/rewriter/ |
D | MethodParameterRewriter.java | 64 @Override @Nonnull public Set<? extends Annotation> getAnnotations() { in getAnnotations() method in MethodParameterRewriter.RewrittenMethodParameter 65 …turn RewriterUtils.rewriteSet(rewriters.getAnnotationRewriter(), methodParameter.getAnnotations()); in getAnnotations()
|
D | FieldRewriter.java | 81 @Nonnull public Set<? extends Annotation> getAnnotations() { in getAnnotations() method in FieldRewriter.RewrittenField 82 … return RewriterUtils.rewriteSet(rewriters.getAnnotationRewriter(), field.getAnnotations()); in getAnnotations()
|
D | MethodRewriter.java | 91 @Override @Nonnull public Set<? extends Annotation> getAnnotations() { in getAnnotations() method in MethodRewriter.RewrittenMethod 92 … return RewriterUtils.rewriteSet(rewriters.getAnnotationRewriter(), method.getAnnotations()); in getAnnotations()
|
D | ClassDefRewriter.java | 84 @Override @Nonnull public Set<? extends Annotation> getAnnotations() { in getAnnotations() method in ClassDefRewriter.RewrittenClassDef 85 … return RewriterUtils.rewriteSet(rewriters.getAnnotationRewriter(), classDef.getAnnotations()); in getAnnotations()
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/util/ |
D | AnnotationsDirectory.java | 99 …public static Set<? extends DexBackedAnnotation> getAnnotations(@Nonnull final DexBackedDexFile de… in getAnnotations() method in AnnotationsDirectory 129 return getAnnotations(dexFile, annotationSetOffset); 172 return getAnnotations(dexFile, dexFile.readSmallUint(directoryOffset));
|
/external/dexmaker/src/dx/java/com/android/dx/dex/file/ |
D | FieldAnnotationStruct.java | 119 public Annotations getAnnotations() { in getAnnotations() method in FieldAnnotationStruct 120 return annotations.getAnnotations(); in getAnnotations()
|
D | MethodAnnotationStruct.java | 119 public Annotations getAnnotations() { in getAnnotations() method in MethodAnnotationStruct 120 return annotations.getAnnotations(); in getAnnotations()
|
D | AnnotationSetItem.java | 56 for (Annotation a : annotations.getAnnotations()) { in AnnotationSetItem() 84 public Annotations getAnnotations() { in getAnnotations() method in AnnotationSetItem
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/ |
D | ImmutableMethodParameter.java | 73 methodParameter.getAnnotations(), in of() 78 @Nonnull @Override public Set<? extends Annotation> getAnnotations() { return annotations; } in getAnnotations() method in ImmutableMethodParameter
|
D | ImmutableField.java | 96 field.getAnnotations()); in of() 104 …@Nonnull @Override public ImmutableSet<? extends ImmutableAnnotation> getAnnotations() { return an… in getAnnotations() method in ImmutableField
|
D | ImmutableMethod.java | 101 method.getAnnotations(), in of() 111 …@Override @Nonnull public ImmutableSet<? extends ImmutableAnnotation> getAnnotations() { return an… in getAnnotations() method in ImmutableMethod
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/reflection/ |
D | ReflectionConstructor.java | 64 @Nonnull @Override public Set<? extends Annotation> getAnnotations() { in getParameters() 88 @Nonnull @Override public Set<? extends Annotation> getAnnotations() {
|
D | ReflectionMethod.java | 63 @Nonnull @Override public Set<? extends Annotation> getAnnotations() { in getParameters() 87 @Nonnull @Override public Set<? extends Annotation> getAnnotations() {
|
/external/guava/guava/src/com/google/common/reflect/ |
D | Element.java | 60 @Override public final Annotation[] getAnnotations() { in getAnnotations() method in Element 61 return accessibleObject.getAnnotations(); in getAnnotations()
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/ |
D | DexBackedField.java | 111 public Set<? extends DexBackedAnnotation> getAnnotations() { in getAnnotations() method in DexBackedField 112 return AnnotationsDirectory.getAnnotations(dexFile, annotationSetOffset); in getAnnotations()
|
/external/junit/src/org/junit/runner/ |
D | Description.java | 74 return new Description(testClass.getName(), testClass.getAnnotations()); in createSuiteDescription() 194 public Collection<Annotation> getAnnotations() { in getAnnotations() method in Description
|
/external/javassist/src/main/javassist/bytecode/ |
D | ParameterAnnotationsAttribute.java | 130 public Annotation[][] getAnnotations() { in getAnnotations() method in ParameterAnnotationsAttribute 195 Annotation[][] aa = getAnnotations(); in toString()
|