Searched refs:annotations (Results 1 - 25 of 1082) 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...]
/external/owasp/sanitizer/tools/findbugs/lib/
H A Djcip-annotations.jar ... META-INF/ net/ net/jcip/ net/jcip/annotations/ net/jcip/annotations/GuardedBy.class GuardedBy.java package net.
/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...]
/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 DTypeAnnotationsAttribute.java27 * This Attribute represents a type annotations attribute.
46 TypeAnnotation[] annotations)
48 super(u2attributeNameIndex, u2annotationsCount, annotations);
53 * Applies the given visitor to all class annotations.
57 TypeAnnotation[] annotations = (TypeAnnotation[])this.annotations;
63 typeAnnotationVisitor.visitTypeAnnotation(clazz, annotations[index]);
69 * Applies the given visitor to all field annotations.
73 TypeAnnotation[] annotations = (TypeAnnotation[])this.annotations;
44 TypeAnnotationsAttribute(int u2attributeNameIndex, int u2annotationsCount, TypeAnnotation[] annotations) argument
[all...]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/builder/
H A DBuilderAnnotationSet.java46 @Nonnull final Set<BuilderAnnotation> annotations; field in class:BuilderAnnotationSet
49 public BuilderAnnotationSet(@Nonnull Set<BuilderAnnotation> annotations) { argument
50 this.annotations = annotations;
54 return annotations.iterator();
58 return annotations.size();
/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;
H A DVerifyException.java17 import com.google.common.annotations.Beta;
18 import com.google.common.annotations.GwtCompatible;
/external/guava/guava/src/com/google/common/collect/
H A DForwardingImmutableCollection.java19 import com.google.common.annotations.GwtCompatible;
H A DForwardingImmutableList.java19 import com.google.common.annotations.GwtCompatible;
H A DForwardingImmutableSet.java19 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;
/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
H A DLenientSerializableTester.java19 import com.google.common.annotations.GwtCompatible;
34 * TODO(cpovirk): move this to c.g.c.testing if we allow for c.g.c.annotations dependencies so
/external/guava/guava-gwt/test-super/com/google/common/math/super/com/google/common/math/
H A DTestPlatform.java19 import com.google.common.annotations.GwtCompatible;
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DDerivedGenerator.java19 import com.google.common.annotations.GwtCompatible;
H A DWrongType.java19 import com.google.common.annotations.GwtCompatible;
/external/guava/guava-tests/test/com/google/common/math/
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/cache/
H A DRemovalListener.java19 import com.google.common.annotations.Beta;
20 import com.google.common.annotations.GwtCompatible;
H A DWeigher.java17 import com.google.common.annotations.Beta;
18 import com.google.common.annotations.GwtCompatible;

Completed in 2538 milliseconds

1234567891011>>