HomeSort by relevance Sort by last modified time
    Searched full:annotations (Results 1 - 25 of 1776) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /dalvik/tests/004-annotations/
info.txt 1 Test a bunch of uses of annotations.
  /external/guava/guava-gwt/src/com/google/common/util/concurrent/
Concurrent.gwt.xml 3 <inherits name="com.google.common.annotations.Annotations"/>
  /external/javassist/src/main/javassist/bytecode/annotation/
package.html 3 Bytecode-level Annotations API.
5 <p>This package provides low-level API for editing annotations attributes.
  /dalvik/dx/src/com/android/dx/cf/attrib/
BaseAnnotations.java 19 import com.android.dx.rop.annotation.Annotations;
23 * Base class for annotations attributes.
26 /** {@code non-null;} list of annotations */
27 private final Annotations annotations; field in class:BaseAnnotations
37 * @param annotations {@code non-null;} the list of annotations
41 public BaseAnnotations(String attributeName, Annotations annotations,
46 if (annotations.isMutable())
    [all...]
  /external/guava/guava-gwt/src/com/google/common/math/
Math.gwt.xml 4 <inherits name="com.google.common.annotations.Annotations"/>
  /external/guava/guava-gwt/src/com/google/common/primitives/
Primitives.gwt.xml 4 <inherits name="com.google.common.annotations.Annotations"/>
  /external/jmonkeyengine/engine/src/core/checkers/quals/
package-info.java 2 * Contains the basic annotations to be used by all type systems
3 * and meta-annotations to qualify annotations (qualifiers).
  /external/proguard/src/proguard/classfile/editor/
AnnotationsAttributeEditor.java 26 * This class can add annotations to a given annotations attribute.
27 * Annotations to be added must have been filled out beforehand.
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; local
55 if (annotations.length <= annotationsCount)
57 targetAnnotationsAttribute.annotations = new Annotation[annotationsCount+1]
    [all...]
ParameterAnnotationsAttributeEditor.java 26 * This class can add annotations to a given parameter annotations attribute.
27 * Annotations to be added must have been filled out beforehand.
38 * annotations in the given parameter annotations attribute.
47 * Adds a given annotation to the annotations attribute.
52 Annotation[] annotations = targetParameterAnnotationsAttribute.parameterAnnotations[parameterIndex]; local
55 if (annotations == null ||
56 annotations.length <= annotationsCount)
59 if (annotations != null
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
AnnotationSetItem.java 20 import com.android.dexgen.rop.annotation.Annotations;
25 * 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) {
    [all...]
AnnotationSetRefItem.java 33 private AnnotationSetItem annotations; field in class:AnnotationSetRefItem
38 * @param annotations {@code non-null;} the annotation set to refer to
40 public AnnotationSetRefItem(AnnotationSetItem annotations) {
43 if (annotations == null) {
44 throw new NullPointerException("annotations == null");
47 this.annotations = annotations;
60 annotations = wordData.intern(annotations);
66 return annotations.toHuman()
    [all...]
FieldAnnotationStruct.java 19 import com.android.dexgen.rop.annotation.Annotations;
26 * 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
    [all...]
MethodAnnotationStruct.java 19 import com.android.dexgen.rop.annotation.Annotations;
26 * 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
    [all...]
  /dalvik/dx/src/com/android/dx/dex/file/
AnnotationSetItem.java 19 import com.android.dx.rop.annotation.Annotations;
25 * 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) {
    [all...]
AnnotationSetRefItem.java 33 private AnnotationSetItem annotations; field in class:AnnotationSetRefItem
38 * @param annotations {@code non-null;} the annotation set to refer to
40 public AnnotationSetRefItem(AnnotationSetItem annotations) {
43 if (annotations == null) {
44 throw new NullPointerException("annotations == null");
47 this.annotations = annotations;
60 annotations = wordData.intern(annotations);
66 return annotations.toHuman()
    [all...]
FieldAnnotationStruct.java 19 import com.android.dx.rop.annotation.Annotations;
26 * 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
    [all...]
MethodAnnotationStruct.java 19 import com.android.dx.rop.annotation.Annotations;
26 * 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
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
AnnotationSetItem.java 19 import com.android.dx.rop.annotation.Annotations;
25 * 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) {
    [all...]
AnnotationSetRefItem.java 33 private AnnotationSetItem annotations; field in class:AnnotationSetRefItem
38 * @param annotations {@code non-null;} the annotation set to refer to
40 public AnnotationSetRefItem(AnnotationSetItem annotations) {
43 if (annotations == null) {
44 throw new NullPointerException("annotations == null");
47 this.annotations = annotations;
60 annotations = wordData.intern(annotations);
66 return annotations.toHuman()
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/annotation/
Annotations.java 30 public final class Annotations extends MutabilityControl
31 implements Comparable<Annotations> {
33 public static final Annotations EMPTY = new Annotations();
39 /** {@code non-null;} map from types to annotations */
40 private final TreeMap<CstType, Annotation> annotations; field in class:Annotations
52 public static Annotations combine(Annotations a1, Annotations a2) {
53 Annotations result = new Annotations()
    [all...]
  /dalvik/dx/src/com/android/dx/rop/annotation/
Annotations.java 30 public final class Annotations extends MutabilityControl
31 implements Comparable<Annotations> {
33 public static final Annotations EMPTY = new Annotations();
39 /** {@code non-null;} map from types to annotations */
40 private final TreeMap<CstType, Annotation> annotations; field in class:Annotations
52 public static Annotations combine(Annotations a1, Annotations a2) {
53 Annotations result = new Annotations()
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/rop/annotation/
Annotations.java 30 public final class Annotations extends MutabilityControl
31 implements Comparable<Annotations> {
33 public static final Annotations EMPTY = new Annotations();
39 /** {@code non-null;} map from types to annotations */
40 private final TreeMap<CstType, Annotation> annotations; field in class:Annotations
52 public static Annotations combine(Annotations a1, Annotations a2) {
53 Annotations result = new Annotations()
    [all...]
  /external/junit/src/org/junit/
package-info.java 2 * Provides JUnit core classes and annotations.
  /libcore/dalvik/src/main/java/dalvik/annotation/
package.html 4 Defines some annotations that are used within the Android system, either
  /external/smali/dexlib/src/main/java/org/jf/dexlib/
AnnotationSetItem.java 41 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) {
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 for this <code>AnnotationSetItem</code
    [all...]

Completed in 1284 milliseconds

1 2 3 4 5 6 7 8 91011>>