Home
last modified time | relevance | path

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

1234

/external/vogar/src/vogar/target/junit/
DJunit4.java99 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/
DParameterSignature.java51 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/
DClassPool.java114 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();
DPoolMethod.java86 @Override @Nonnull public Set<? extends Annotation> getAnnotations() { in getAnnotations() method in PoolMethod
87 return method.getAnnotations(); in getAnnotations()
DPoolClassDef.java88 @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/
DFrameworkField.java25 public Annotation[] getAnnotations() { in getAnnotations() method in FrameworkField
26 return fField.getAnnotations(); in getAnnotations()
DTestClass.java52 for (Annotation each : member.getAnnotations()) { in addToAnnotationLists()
134 public Annotation[] getAnnotations() { in getAnnotations() method in TestClass
137 return fClass.getAnnotations(); in getAnnotations()
DFrameworkMethod.java145 public Annotation[] getAnnotations() {
146 return fMethod.getAnnotations();
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/rewriter/
DMethodParameterRewriter.java64 @Override @Nonnull public Set<? extends Annotation> getAnnotations() { in getAnnotations() method in MethodParameterRewriter.RewrittenMethodParameter
65 …turn RewriterUtils.rewriteSet(rewriters.getAnnotationRewriter(), methodParameter.getAnnotations()); in getAnnotations()
DFieldRewriter.java81 @Nonnull public Set<? extends Annotation> getAnnotations() { in getAnnotations() method in FieldRewriter.RewrittenField
82 … return RewriterUtils.rewriteSet(rewriters.getAnnotationRewriter(), field.getAnnotations()); in getAnnotations()
DMethodRewriter.java91 @Override @Nonnull public Set<? extends Annotation> getAnnotations() { in getAnnotations() method in MethodRewriter.RewrittenMethod
92 … return RewriterUtils.rewriteSet(rewriters.getAnnotationRewriter(), method.getAnnotations()); in getAnnotations()
DClassDefRewriter.java84 @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/
DAnnotationsDirectory.java99 …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/
DFieldAnnotationStruct.java119 public Annotations getAnnotations() { in getAnnotations() method in FieldAnnotationStruct
120 return annotations.getAnnotations(); in getAnnotations()
DMethodAnnotationStruct.java119 public Annotations getAnnotations() { in getAnnotations() method in MethodAnnotationStruct
120 return annotations.getAnnotations(); in getAnnotations()
DAnnotationSetItem.java56 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/
DImmutableMethodParameter.java73 methodParameter.getAnnotations(), in of()
78 @Nonnull @Override public Set<? extends Annotation> getAnnotations() { return annotations; } in getAnnotations() method in ImmutableMethodParameter
DImmutableField.java96 field.getAnnotations()); in of()
104 …@Nonnull @Override public ImmutableSet<? extends ImmutableAnnotation> getAnnotations() { return an… in getAnnotations() method in ImmutableField
DImmutableMethod.java101 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/
DReflectionConstructor.java64 @Nonnull @Override public Set<? extends Annotation> getAnnotations() { in getParameters()
88 @Nonnull @Override public Set<? extends Annotation> getAnnotations() {
DReflectionMethod.java63 @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/
DElement.java60 @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/
DDexBackedField.java111 public Set<? extends DexBackedAnnotation> getAnnotations() { in getAnnotations() method in DexBackedField
112 return AnnotationsDirectory.getAnnotations(dexFile, annotationSetOffset); in getAnnotations()
/external/junit/src/org/junit/runner/
DDescription.java74 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/
DParameterAnnotationsAttribute.java130 public Annotation[][] getAnnotations() { in getAnnotations() method in ParameterAnnotationsAttribute
195 Annotation[][] aa = getAnnotations(); in toString()

1234