Searched defs:annotations (Results 1 - 17 of 17) sorted by relevance

/external/guava/src/com/google/common/annotations/
H A DVisibleForTesting.java17 package com.google.common.annotations;
H A DGwtCompatible.java17 package com.google.common.annotations;
H A DGwtIncompatible.java17 package com.google.common.annotations;
/external/proguard/src/proguard/classfile/attribute/annotation/
H A DAnnotationsAttribute.java28 * This Attribute represents an annotations attribute.
35 public Annotation[] annotations; field in class:AnnotationsAttribute
51 Annotation[] annotations)
56 this.annotations = annotations;
61 * Applies the given visitor to all class annotations.
69 annotationVisitor.visitAnnotation(clazz, annotations[index]);
75 * Applies the given visitor to all field annotations.
83 annotationVisitor.visitAnnotation(clazz, field, annotations[index]);
89 * Applies the given visitor to all method annotations
49 AnnotationsAttribute(int u2attributeNameIndex, int u2annotationsCount, Annotation[] annotations) argument
[all...]
H A DRuntimeInvisibleAnnotationsAttribute.java27 * This Attribute represents a runtime invisible annotations attribute.
46 Annotation[] annotations)
48 super(u2attributeNameIndex, u2annotationsCount, annotations);
44 RuntimeInvisibleAnnotationsAttribute(int u2attributeNameIndex, int u2annotationsCount, Annotation[] annotations) argument
H A DRuntimeVisibleAnnotationsAttribute.java27 * This Attribute represents a runtime visible annotations attribute.
46 Annotation[] annotations)
48 super(u2attributeNameIndex, u2annotationsCount, annotations);
44 RuntimeVisibleAnnotationsAttribute(int u2attributeNameIndex, int u2annotationsCount, Annotation[] annotations) argument
/external/android-mock/src/com/google/android/testing/mocking/
H A DUsesMocksProcessor.java46 * specified by {@link UsesMocks} annotations.
71 public boolean process(Set<? extends TypeElement> annotations, RoundEnvironment environment) { argument
127 * Finds all of the classes that should be mocked, based on {@link UsesMocks} annotations
130 * @param annotatedElements a Set of all elements holding {@link UsesMocks} annotations.
/external/doclava/src/com/google/doclava/
H A DMemberInfo.java26 ArrayList<AnnotationInstanceInfo> annotations) {
40 mAnnotations = annotations;
132 public ArrayList<AnnotationInstanceInfo> annotations() { method in class:MemberInfo
22 MemberInfo(String rawCommentText, String name, String signature, ClassInfo containingClass, ClassInfo realContainingClass, boolean isPublic, boolean isProtected, boolean isPackagePrivate, boolean isPrivate, boolean isFinal, boolean isStatic, boolean isSynthetic, String kind, SourcePositionInfo position, ArrayList<AnnotationInstanceInfo> annotations) argument
H A DFieldInfo.java35 SourcePositionInfo position, ArrayList<AnnotationInstanceInfo> annotations) {
38 position, annotations);
49 annotations());
109 for (AnnotationInstanceInfo annotation : annotations()) {
31 FieldInfo(String name, ClassInfo containingClass, ClassInfo realContainingClass, boolean isPublic, boolean isProtected, boolean isPackagePrivate, boolean isPrivate, boolean isFinal, boolean isStatic, boolean isTransient, boolean isVolatile, boolean isSynthetic, TypeInfo type, String rawCommentText, Object constantValue, SourcePositionInfo position, ArrayList<AnnotationInstanceInfo> annotations) argument
H A DStubs.java90 // annotations are handled like methods
158 // cant strip annotations
160 * if (cl.annotations() != null){ for (AnnotationInstanceInfo ai : cl.annotations()){ if
211 .annotations());
327 writeAnnotations(stream, cl.annotations(), cl.isDeprecated());
369 // can java annotations extend other ones?
501 writeAnnotations(stream, method.annotations(), method.isDeprecated());
565 writeAnnotations(stream, field.annotations(), field.isDeprecated());
720 * Write out the given list of annotations
728 writeAnnotations(PrintStream stream, List<AnnotationInstanceInfo> annotations, boolean isDeprecated) argument
[all...]
H A DInfoBuilder.java121 if (!cl.annotations().isEmpty()) {
123 printAnnotations(cl.annotations());
159 printAnnotations(f.annotations());
183 printAnnotations(f.annotations());
205 printAnnotations(m.annotations());
225 printAnnotations(m.annotations());
261 printAnnotations(m.annotations());
315 private static void printAnnotations(ArrayList<AnnotationInstanceInfo> annotations) { argument
316 for (AnnotationInstanceInfo i : annotations) {
374 // annotations
[all...]
H A DMethodInfo.java211 for (AnnotationInstanceInfo annotation : annotations()) {
246 annotations());
258 ArrayList<AnnotationInstanceInfo> annotations) {
264 isStatic, isSynthetic, kind, position, annotations);
251 MethodInfo(String rawCommentText, ArrayList<TypeInfo> typeParameters, String name, String signature, ClassInfo containingClass, ClassInfo realContainingClass, boolean isPublic, boolean isProtected, boolean isPackagePrivate, boolean isPrivate, boolean isFinal, boolean isStatic, boolean isSynthetic, boolean isAbstract, boolean isSynchronized, boolean isNative, boolean isAnnotationElement, String kind, String flatSignature, MethodInfo overriddenMethod, TypeInfo returnType, ArrayList<ParameterInfo> parameters, ArrayList<ClassInfo> thrownExceptions, SourcePositionInfo position, ArrayList<AnnotationInstanceInfo> annotations) argument
H A DClassInfo.java86 boolean isIncluded, String qualifiedTypeName, boolean isPrimitive, ArrayList<AnnotationInstanceInfo> annotations) {
107 mAnnotations = annotations;
116 TypeInfo superclassType, ArrayList<AnnotationInstanceInfo> annotations) {
130 mAnnotations = annotations;
381 for (AnnotationInstanceInfo annotation : annotations()) {
438 public ArrayList<AnnotationInstanceInfo> annotations() { method in class:ClassInfo
1561 public void setAnnotations(ArrayList<AnnotationInstanceInfo> annotations) { argument
1562 mAnnotations = annotations;
82 initialize(String rawCommentText, SourcePositionInfo position, boolean isPublic, boolean isProtected, boolean isPackagePrivate, boolean isPrivate, boolean isStatic, boolean isInterface, boolean isAbstract, boolean isOrdinaryClass, boolean isException, boolean isError, boolean isEnum, boolean isAnnotation, boolean isFinal, boolean isIncluded, String qualifiedTypeName, boolean isPrimitive, ArrayList<AnnotationInstanceInfo> annotations) argument
110 init(TypeInfo typeInfo, ArrayList<ClassInfo> interfaces, ArrayList<TypeInfo> interfaceTypes, ArrayList<ClassInfo> innerClasses, ArrayList<MethodInfo> constructors, ArrayList<MethodInfo> methods, ArrayList<MethodInfo> annotationElements, ArrayList<FieldInfo> fields, ArrayList<FieldInfo> enumConstants, PackageInfo containingPackage, ClassInfo containingClass, ClassInfo superclass, TypeInfo superclassType, ArrayList<AnnotationInstanceInfo> annotations) argument
/external/javassist/src/main/javassist/bytecode/
H A DAnnotationsAttribute.java34 * runtime visible annotations attribute.
174 * Parses the annotations and returns a data structure representing
183 Annotation[] annotations = getAnnotations();
184 for (int i = 0; i < annotations.length; i++) {
185 if (annotations[i].getTypeName().equals(type))
186 return annotations[i];
200 Annotation[] annotations = getAnnotations();
201 for (int i = 0; i < annotations.length; i++) {
202 if (annotations[i].getTypeName().equals(type)) {
203 annotations[
240 setAnnotations(Annotation[] annotations) argument
[all...]
/external/doclava/src/com/google/doclava/parser/
H A DJavaParser.java77 * annotations (e.g. @InterfaceName.InnerAnnotation())
84 * Updated localVariableDeclaration to allow annotations. Interestingly the JLS
133 * Fixed annotations, old version allowed "@X(y,z)", which is illegal.
349 "synpred68_Java", "synpred3_Java", "synpred203_Java", "annotations",
465 // src/com/google/doclava/parser/Java.g:293:1: compilationUnit : ( ( annotations )? packageDeclaration )? ( importDeclaration )* ( typeDeclaration )* ;
475 // src/com/google/doclava/parser/Java.g:298:5: ( ( ( annotations )? packageDeclaration )? ( importDeclaration )* ( typeDeclaration )* )
478 // src/com/google/doclava/parser/Java.g:298:9: ( ( annotations )? packageDeclaration )? ( importDeclaration )* ( typeDeclaration )*
481 // src/com/google/doclava/parser/Java.g:298:9: ( ( annotations )? packageDeclaration )?
500 // src/com/google/doclava/parser/Java.g:298:13: ( annotations )? packageDeclaration
503 // src/com/google/doclava/parser/Java.g:298:13: ( annotations )
5914 public final void annotations() throws RecognitionException { method in class:JavaParser
[all...]
/external/jdiff/
H A Dxerces.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/services/ org/ org/apache/ org/apache/html/ ...
/external/proguard/lib/
H A Dproguard.jarMETA-INF/ META-INF/MANIFEST.MF proguard/evaluation/Stack.class Stack.java package proguard ...

Completed in 286 milliseconds