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

1 2

  /libcore/luni/src/main/java/java/text/
Annotation.java 21 * Wrapper for a text attribute value which represents an annotation. An
22 * annotation has two special aspects:
25 * is changed then the annotation becomes invalid,</li>
30 * By wrapping text attribute values into an {@code Annotation}, these aspects
31 * will be taken into account when handling annotation text and the
34 * Note: There is no semantic connection between this annotation class and the
35 * {@code java.lang.annotation} package.
37 public class Annotation {
42 * Constructs a new {@code Annotation}.
44 * @param attribute the attribute attached to this annotation. This may b
    [all...]
  /frameworks/base/core/java/android/text/
Annotation.java 26 public class Annotation implements ParcelableSpan {
30 public Annotation(String key, String value) {
35 public Annotation(Parcel src) {
41 return TextUtils.ANNOTATION;
  /libcore/luni/src/main/java/java/lang/annotation/
Annotation.java 18 package java.lang.annotation;
22 * itself is <i>not</i> an annotation, and neither is an interface that simply
23 * extends this one. Only the compiler is able to create proper annotation
28 public interface Annotation {
31 * Returns the type of this annotation.
33 * @return A {@code Class} instance representing the annotation type.
35 Class<? extends Annotation> annotationType();
38 * Determines whether or not this annotation is equivalent to the annotation
44 * they are members of the same annotation type and all the membe
    [all...]
  /dalvik/dx/src/com/android/dx/io/
Annotation.java 22 * An annotation.
24 public final class Annotation implements Comparable<Annotation> {
31 public Annotation(DexBuffer buffer, byte visibility, int typeIndex, int[] names,
66 @Override public int compareTo(Annotation other) {
  /external/proguard/src/proguard/classfile/attribute/annotation/
Annotation.java 21 package proguard.classfile.attribute.annotation;
24 import proguard.classfile.attribute.annotation.visitor.ElementValueVisitor;
28 * Representation of an annotation.
32 public class Annotation implements VisitorAccepter
54 * Creates an uninitialized Annotation.
56 public Annotation()
62 * Creates an initialized Annotation.
64 public Annotation(int u2typeIndex,
86 * main annotation class.
  /cts/tests/tests/text/src/android/text/cts/
AnnotationTest.java 21 import android.text.Annotation;
30 private Annotation mAnnotation;
40 // new the Annotation instance
41 new Annotation(KEY1, VALUE1);
45 // new the Annotation instance
46 mAnnotation = new Annotation(KEY1, VALUE1);
48 mAnnotation = new Annotation(KEY2, VALUE2);
53 // new the Annotation instance
54 mAnnotation = new Annotation(KEY1, VALUE1);
56 mAnnotation = new Annotation(KEY2, VALUE2)
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/annotation/
Annotation.java 17 package com.android.dexgen.rop.annotation;
38 * An annotation on an element of a class. Annotations have an
42 public final class Annotation extends MutabilityControl
43 implements Comparable<Annotation>, ToHuman {
44 /** {@code non-null;} type of the annotation */
47 /** {@code non-null;} the visibility of the annotation */
56 * @param type {@code non-null;} type of the annotation
57 * @param visibility {@code non-null;} the visibility of the annotation
59 public Annotation(CstType type, AnnotationVisibility visibility) {
76 if (! (other instanceof Annotation)) {
    [all...]
  /dalvik/dx/src/com/android/dx/rop/annotation/
Annotation.java 17 package com.android.dx.rop.annotation;
30 * An annotation on an element of a class. Annotations have an
34 public final class Annotation extends MutabilityControl
35 implements Comparable<Annotation>, ToHuman {
36 /** {@code non-null;} type of the annotation */
39 /** {@code non-null;} the visibility of the annotation */
48 * @param type {@code non-null;} type of the annotation
49 * @param visibility {@code non-null;} the visibility of the annotation
51 public Annotation(CstType type, AnnotationVisibility visibility) {
68 if (! (other instanceof Annotation)) {
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/rop/annotation/
Annotation.java 17 package com.android.dx.rop.annotation;
30 * An annotation on an element of a class. Annotations have an
34 public final class Annotation extends MutabilityControl
35 implements Comparable<Annotation>, ToHuman {
36 /** {@code non-null;} type of the annotation */
39 /** {@code non-null;} the visibility of the annotation */
48 * @param type {@code non-null;} type of the annotation
49 * @param visibility {@code non-null;} the visibility of the annotation
51 public Annotation(CstType type, AnnotationVisibility visibility) {
68 if (! (other instanceof Annotation)) {
    [all...]
  /external/javassist/src/main/javassist/bytecode/annotation/
Annotation.java 16 package javassist.bytecode.annotation;
31 * The <code>annotation</code> structure.
47 public class Annotation {
59 * Constructs an annotation including no members. A member can be
60 * later added to the created annotation by <code>addMemberValue()</code>.
65 * repreenting the name of the annotation interface type.
70 public Annotation(int type, ConstPool cp) {
77 * Constructs an annotation including no members. A member can be
78 * later added to the created annotation by <code>addMemberValue()</code>.
80 * @param typeName the name of the annotation interface type
    [all...]
  /external/clang/lib/Sema/
SemaCXXScopeSpec.cpp     [all...]
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
ByteArrayOutput.java 60 private ArrayList<Annotation> annotations;
62 /** &gt;= 40 (if used); the desired maximum annotation width */
367 annotations.add(new Annotation(cursor, msg));
388 annotations.add(new Annotation(startAt, startAt + amt, msg));
416 * @param annotationWidth &gt;= 40; the desired maximum annotation width
435 this.annotations = new ArrayList<Annotation>(1000);
442 * Finishes up annotation processing. This closes off any open
447 // Close off the final annotation, if any.
454 Annotation last = annotations.get(asz - 1);
491 * Annotation on output
    [all...]
ByteArrayAnnotatedOutput.java 62 private ArrayList<Annotation> annotations;
64 /** &gt;= 40 (if used); the desired maximum annotation width */
385 annotations.add(new Annotation(cursor, msg, currentIndent));
421 annotations.add(new Annotation(startAt, startAt + amt, msg, currentIndent));
449 * @param annotationWidth &gt;= 40; the desired maximum annotation width
468 this.annotations = new ArrayList<Annotation>(1000);
475 * Finishes up annotation processing. This closes off any open
480 // Close off the final annotation, if any.
487 Annotation last = annotations.get(asz - 1);
519 int rightAt = 0; // right-hand annotation inde
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/util/
ByteArrayAnnotatedOutput.java 54 private ArrayList<Annotation> annotations;
56 /** {@code >= 40 (if used);} the desired maximum annotation width */
373 annotations.add(new Annotation(cursor, msg));
394 annotations.add(new Annotation(startAt, startAt + amt, msg));
422 * @param annotationWidth {@code >= 40;} the desired maximum annotation width
441 this.annotations = new ArrayList<Annotation>(1000);
448 * Finishes up annotation processing. This closes off any open
453 // Close off the final annotation, if any.
460 Annotation last = annotations.get(asz - 1);
487 int rightAt = 0; // right-hand annotation inde
    [all...]
  /dalvik/dx/src/com/android/dx/util/
ByteArrayAnnotatedOutput.java 54 private ArrayList<Annotation> annotations;
56 /** {@code >= 40 (if used);} the desired maximum annotation width */
366 annotations.add(new Annotation(cursor, msg));
387 annotations.add(new Annotation(startAt, startAt + amt, msg));
415 * @param annotationWidth {@code >= 40;} the desired maximum annotation width
434 this.annotations = new ArrayList<Annotation>(1000);
441 * Finishes up annotation processing. This closes off any open
446 // Close off the final annotation, if any.
453 Annotation last = annotations.get(asz - 1);
480 int rightAt = 0; // right-hand annotation inde
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/util/
ByteArrayAnnotatedOutput.java 54 private ArrayList<Annotation> annotations;
56 /** {@code >= 40 (if used);} the desired maximum annotation width */
366 annotations.add(new Annotation(cursor, msg));
387 annotations.add(new Annotation(startAt, startAt + amt, msg));
415 * @param annotationWidth {@code >= 40;} the desired maximum annotation width
434 this.annotations = new ArrayList<Annotation>(1000);
441 * Finishes up annotation processing. This closes off any open
446 // Close off the final annotation, if any.
453 Annotation last = annotations.get(asz - 1);
480 int rightAt = 0; // right-hand annotation inde
    [all...]
  /dalvik/dx/etc/
jasmin.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.p2.repository.tools_2.0.1.R36x_v20100823.jar 
org.eclipse.text_3.5.0.v20100601-1300.jar 
  /prebuilts/sdk/tools/lib/
dx.jar 
  /prebuilt/common/netbeans-visual/
org-openide-util.jar 
  /external/proguard/lib/
proguard.jar 
  /prebuilts/tools/common/proguard/proguard4.7/lib/
proguard.jar 
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/16/
android.jar 

Completed in 439 milliseconds

1 2