Searched refs:annotations (Results 1 - 25 of 592) sorted by relevance

1234567891011>>

/external/guava/guava/src/com/google/common/annotations/
H A Dpackage-info.java21 package com.google.common.annotations;
H A DVisibleForTesting.java17 package com.google.common.annotations;
/external/proguard/src/proguard/classfile/editor/
H A DAnnotationsAttributeEditor.java26 * This class can add annotations to a given annotations attribute.
37 * Creates a new AnnotationsAttributeEditor that will edit annotations in
38 * the given annotations attribute.
47 * Adds a given annotation to the annotations attribute.
52 Annotation[] annotations = targetAnnotationsAttribute.annotations;
55 if (annotations.length <= annotationsCount)
57 targetAnnotationsAttribute.annotations = new Annotation[annotationsCount+1];
58 System.arraycopy(annotations,
[all...]
H A DParameterAnnotationsAttributeEditor.java26 * This class can add annotations to a given parameter annotations attribute.
38 * annotations in the given parameter annotations attribute.
47 * Adds a given annotation to the annotations attribute.
52 Annotation[] annotations = targetParameterAnnotationsAttribute.parameterAnnotations[parameterIndex];
55 if (annotations == null ||
56 annotations.length <= annotationsCount)
59 if (annotations != null)
61 System.arraycopy(annotations,
[all...]
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DAnnotationSetRefItem.java33 private AnnotationSetItem annotations; field in class:AnnotationSetRefItem
38 * @param annotations {@code non-null;} the annotation set to refer to
40 public AnnotationSetRefItem(AnnotationSetItem annotations) { argument
43 if (annotations == null) {
44 throw new NullPointerException("annotations == null");
47 this.annotations = annotations;
60 annotations = wordData.intern(annotations);
66 return annotations
[all...]
H A DAnnotationSetItem.java25 * Set of annotations, where no annotation type appears more than once.
34 /** {@code non-null;} the set of annotations */
35 private final Annotations annotations; field in class:AnnotationSetItem
38 * {@code non-null;} set of annotations as individual items in an array.
47 * @param annotations {@code non-null;} set of annotations
49 public AnnotationSetItem(Annotations annotations) { argument
50 super(ALIGNMENT, writeSize(annotations));
52 this.annotations = annotations;
68 writeSize(Annotations annotations) argument
[all...]
H A DFieldAnnotationStruct.java26 * Association of a field and its annotations.
33 /** {@code non-null;} the associated annotations */
34 private AnnotationSetItem annotations; field in class:FieldAnnotationStruct
40 * @param annotations {@code non-null;} the associated annotations
43 AnnotationSetItem annotations) {
48 if (annotations == null) {
49 throw new NullPointerException("annotations == null");
53 this.annotations = annotations;
42 FieldAnnotationStruct(CstFieldRef field, AnnotationSetItem annotations) argument
[all...]
H A DMethodAnnotationStruct.java26 * Association of a method and its annotations.
33 /** {@code non-null;} the associated annotations */
34 private AnnotationSetItem annotations; field in class:MethodAnnotationStruct
40 * @param annotations {@code non-null;} the associated annotations
43 AnnotationSetItem annotations) {
48 if (annotations == null) {
49 throw new NullPointerException("annotations == null");
53 this.annotations = annotations;
42 MethodAnnotationStruct(CstMethodRef method, AnnotationSetItem annotations) argument
[all...]
/external/guava/guava-testlib/src/com/google/common/testing/
H A DTearDown.java19 import com.google.common.annotations.Beta;
20 import com.google.common.annotations.GwtCompatible;
H A DTearDownAccepter.java19 import com.google.common.annotations.Beta;
20 import com.google.common.annotations.GwtCompatible;
/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...]
/external/smali/dexlib/src/main/java/org/jf/dexlib/
H A DAnnotationSetItem.java41 private AnnotationItem[] annotations; field in class:AnnotationSetItem
52 * Creates a new <code>AnnotationSetItem</code> for the given annotations
54 * @param annotations The annotations for this <code>AnnotationSetItem</code>
56 private AnnotationSetItem(DexFile dexFile, AnnotationItem[] annotations) { argument
58 this.annotations = annotations;
62 * Returns an <code>AnnotationSetItem</code> for the given annotations, and that has been interned into the given
65 * @param annotations The annotations fo
68 internAnnotationSetItem(DexFile dexFile, List<AnnotationItem> annotations) argument
[all...]
/external/guava/guava/src/com/google/common/base/
H A DSupplier.java19 import com.google.common.annotations.GwtCompatible;
H A DTicker.java19 import com.google.common.annotations.Beta;
20 import com.google.common.annotations.GwtCompatible;
/external/guava/guava-gwt/src/com/google/common/base/
H A DGwtSerializationDependencies.java19 import com.google.common.annotations.GwtCompatible;
/external/guava/guava-gwt/test/com/google/common/net/
H A DTestPlatform.java19 import com.google.common.annotations.GwtCompatible;
/external/dexmaker/src/dx/java/com/android/dx/rop/annotation/
H A DAnnotations.java39 /** {@code non-null;} map from types to annotations */
40 private final TreeMap<CstType, Annotation> annotations; field in class:Annotations
67 * @param annotations {@code non-null;} the instance to augment
72 public static Annotations combine(Annotations annotations, argument
76 result.addAll(annotations);
87 annotations = new TreeMap<CstType, Annotation>();
93 return annotations.hashCode();
105 return annotations.equals(otherAnnotations.annotations);
110 Iterator<Annotation> thisIter = annotations
[all...]
/external/guava/guava/src/com/google/common/collect/
H A DBoundType.java17 import com.google.common.annotations.Beta;
18 import com.google.common.annotations.GwtCompatible;
H A DConstraint.java19 import com.google.common.annotations.Beta;
20 import com.google.common.annotations.GwtCompatible;
H A DMapConstraint.java19 import com.google.common.annotations.Beta;
20 import com.google.common.annotations.GwtCompatible;
H A DComputationException.java19 import com.google.common.annotations.GwtCompatible;
H A DHashing.java19 import com.google.common.annotations.GwtCompatible;
H A DInterner.java19 import com.google.common.annotations.Beta;
/external/guava/guava/src/com/google/common/cache/
H A DRemovalListener.java19 import com.google.common.annotations.Beta;
H A DWeigher.java19 import com.google.common.annotations.Beta;

Completed in 247 milliseconds

1234567891011>>