Searched defs:getAnnotations (Results 1 - 25 of 60) sorted by relevance

123

/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/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();
/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/analysis/reflection/
H A DReflectionConstructor.java64 @Nonnull @Override public Set<? extends Annotation> getAnnotations() {
88 @Nonnull @Override public Set<? extends Annotation> getAnnotations() { method in class:ReflectionConstructor
H A DReflectionField.java60 @Nonnull @Override public Set<? extends Annotation> getAnnotations() { method in class:ReflectionField
H A DReflectionMethod.java63 @Nonnull @Override public Set<? extends Annotation> getAnnotations() {
87 @Nonnull @Override public Set<? extends Annotation> getAnnotations() { method in class:ReflectionMethod
H A DReflectionClassDef.java104 @Nonnull @Override public Set<? extends Annotation> getAnnotations() { method in class:ReflectionClassDef
/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/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/builder/
H A DBuilderAnnotationSetPool.java81 public Collection<? extends BuilderAnnotation> getAnnotations(@Nonnull BuilderAnnotationSet key) { method in class:BuilderAnnotationSetPool
H A DBuilderField.java65 @Nonnull @Override public BuilderAnnotationSet getAnnotations() { method in class:BuilderField
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/smali/smali/src/main/java/org/jf/smali/
H A DSmaliMethodParameter.java58 @Nonnull @Override public Set<? extends Annotation> getAnnotations() { return annotations; } method in class:SmaliMethodParameter
/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/dexmaker/src/dx/java/com/android/dx/rop/annotation/
H A DAnnotations.java210 public Collection<Annotation> getAnnotations() { method in class:Annotations

Completed in 1386 milliseconds

123