Searched refs:getAnnotations (Results 1 - 25 of 82) sorted by relevance

1234

/external/junit/src/org/junit/runners/model/
H A DFrameworkMember.java10 abstract Annotation[] getAnnotations(); method in class:FrameworkMember
H A DFrameworkField.java25 public Annotation[] getAnnotations() { method in class:FrameworkField
26 return fField.getAnnotations();
H A DTestClass.java52 for (Annotation each : member.getAnnotations()) {
134 public Annotation[] getAnnotations() { method in class:TestClass
137 return fClass.getAnnotations();
H A DFrameworkMethod.java145 public Annotation[] getAnnotations() { method in class:FrameworkMethod
146 return fMethod.getAnnotations();
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/
H A DAnnotationSetSection.java41 @Nonnull Collection<? extends AnnotationKey> getAnnotations(@Nonnull AnnotationSetKey key); method in interface:AnnotationSetSection
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/iface/
H A DMethodParameter.java67 @Nonnull Set<? extends Annotation> getAnnotations(); method in interface:MethodParameter
H A DField.java95 @Nonnull Set<? extends Annotation> getAnnotations(); method in interface:Field
H A DMethod.java98 @Nonnull Set<? extends Annotation> getAnnotations(); method in interface:Method
H A DClassDef.java98 @Nonnull Set<? extends Annotation> getAnnotations(); method in interface:ClassDef
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/rewriter/
H A DFieldRewriter.java81 @Nonnull public Set<? extends Annotation> getAnnotations() { method in class:FieldRewriter.RewrittenField
82 return RewriterUtils.rewriteSet(rewriters.getAnnotationRewriter(), field.getAnnotations());
H A DMethodParameterRewriter.java64 @Override @Nonnull public Set<? extends Annotation> getAnnotations() { method in class:MethodParameterRewriter.RewrittenMethodParameter
65 return RewriterUtils.rewriteSet(rewriters.getAnnotationRewriter(), methodParameter.getAnnotations());
H A DMethodRewriter.java91 @Override @Nonnull public Set<? extends Annotation> getAnnotations() { method in class:MethodRewriter.RewrittenMethod
92 return RewriterUtils.rewriteSet(rewriters.getAnnotationRewriter(), method.getAnnotations());
/external/junit/src/org/junit/experimental/theories/
H A DParameterSignature.java51 public List<Annotation> getAnnotations() { method in class:ParameterSignature
76 .getAnnotations(), annotationType, depth - 1);
85 for (Annotation each : getAnnotations())
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/builder/
H A DBuilderMethodParameter.java60 @Nonnull @Override public BuilderAnnotationSet getAnnotations() { method in class:BuilderMethodParameter
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/pool/
H A DAnnotationSetPool.java60 @Nonnull @Override public Collection<? extends Annotation> getAnnotations( method in class:AnnotationSetPool
H A DPoolMethod.java86 @Override @Nonnull public Set<? extends Annotation> getAnnotations() { method in class:PoolMethod
87 return method.getAnnotations();
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DFieldAnnotationStruct.java119 public Annotations getAnnotations() { method in class:FieldAnnotationStruct
120 return annotations.getAnnotations();
H A DMethodAnnotationStruct.java119 public Annotations getAnnotations() { method in class:MethodAnnotationStruct
120 return annotations.getAnnotations();
H A DAnnotationSetItem.java56 for (Annotation a : annotations.getAnnotations()) {
84 public Annotations getAnnotations() { method in class:AnnotationSetItem
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/
H A DImmutableMethodParameter.java73 methodParameter.getAnnotations(),
78 @Nonnull @Override public Set<? extends Annotation> getAnnotations() { return annotations; } method in class:ImmutableMethodParameter
/external/vogar/src/vogar/target/junit/
H A DJunit4.java99 for (Annotation a : m.getAnnotations()) {
133 for (Annotation a : klass.getAnnotations()) {
155 for (Annotation a : m.getAnnotations()) {
169 for (Annotation a : suite.getAnnotations()) {
183 for (Annotation a : suite.getAnnotations()) {
260 for (Annotation a : m.getAnnotations()) {
270 for (Annotation a : method.getAnnotations()) {
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/util/
H A DAnnotationsDirectory.java99 public static Set<? extends DexBackedAnnotation> getAnnotations(@Nonnull final DexBackedDexFile dexFile, method in class:AnnotationsDirectory
129 return getAnnotations(dexFile, annotationSetOffset);
172 return getAnnotations(dexFile, dexFile.readSmallUint(directoryOffset));
/external/guava/guava/src/com/google/common/reflect/
H A DElement.java60 @Override public final Annotation[] getAnnotations() { method in class:Element
61 return accessibleObject.getAnnotations();
/external/javassist/src/main/javassist/bytecode/
H A DParameterAnnotationsAttribute.java130 public Annotation[][] getAnnotations() { method in class:ParameterAnnotationsAttribute
195 Annotation[][] aa = getAnnotations();
/external/junit/src/org/junit/runner/
H A DDescription.java74 return new Description(testClass.getName(), testClass.getAnnotations());
194 public Collection<Annotation> getAnnotations() { method in class:Description

Completed in 444 milliseconds

1234