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

1 2 3 4 5 6 7 8 910

  /external/guava/guava/src/com/google/common/annotations/
package-info.java 21 package com.google.common.annotations;
Beta.java 17 package com.google.common.annotations;
VisibleForTesting.java 17 package com.google.common.annotations;
GwtCompatible.java 17 package com.google.common.annotations;
GwtIncompatible.java 17 package com.google.common.annotations;
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/annotations/
DoNotParseDetail.java 17 package com.googlecode.mp4parser.annotations;
ParseDetail.java 16 package com.googlecode.mp4parser.annotations;
  /frameworks/base/core/java/com/android/internal/annotations/
Immutable.java 17 package com.android.internal.annotations;
GuardedBy.java 17 package com.android.internal.annotations;
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/annotations/
ExternallyReferenced.java 17 package com.android.inputmethod.annotations;
UsedForTesting.java 17 package com.android.inputmethod.annotations;
  /external/owasp/sanitizer/tools/findbugs/lib/
jcip-annotations.jar 
  /frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/annotations/
LayoutlibDelegate.java 17 package com.android.tools.layoutlib.annotations;
Nullable.java 17 package com.android.tools.layoutlib.annotations;
  /cts/tools/signature-tools/src/signature/model/impl/
SigAnnotatableElement.java 29 private Set<IAnnotation> annotations; field in class:SigAnnotatableElement
32 annotations = Collections.emptySet();
36 return annotations;
39 public void setAnnotations(Set<IAnnotation> annotations) {
40 this.annotations = annotations;
  /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/proguard/src/proguard/classfile/attribute/annotation/
AnnotationsAttribute.java 28 * 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
    [all...]
  /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...]
  /cts/tools/dex-tools/src/dex/reader/
DexParameterImpl.java 30 private Set<DexAnnotation> annotations; field in class:DexParameterImpl
49 annotations = new HashSet<DexAnnotation>();
54 annotations.add(new DexAnnotationImpl(buffer.createCopy(),
65 return annotations;
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
plexus-component-annotations-1.5.5.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/codehaus/plexus/plexus-component-annotations/1.5.5/
plexus-component-annotations-1.5.5.jar 
  /prebuilts/tools/common/m2/repository/org/codehaus/plexus/plexus-component-annotations/1.5.5/
plexus-component-annotations-1.5.5.jar 
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
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/dx/src/com/android/dx/dex/file/
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...]

Completed in 1016 milliseconds

1 2 3 4 5 6 7 8 910