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

1 2 3 4 5 6

  /libcore/ojluni/src/main/java/java/text/
Annotation.java 29 * An Annotation object is used as a wrapper for a text attribute value if
30 * the attribute has annotation characteristics. These characteristics are:
48 * Wrapping the attribute value into an Annotation object guarantees that
57 public class Annotation {
60 * Constructs an annotation record with the given value, which
64 public Annotation(Object value) {
76 * Returns the String representation of this Annotation.
  /libcore/ojluni/src/main/java/java/lang/annotation/
Annotation.java 26 package java.lang.annotation;
29 * The common interface extended by all annotation types. Note that an
31 * an annotation type. Also note that this interface does not itself
32 * define an annotation type.
34 * More information about annotation types can be found in section 9.6 of
40 public interface Annotation {
42 * Returns true if the specified object represents an annotation
45 * annotation type as this instance, all of whose members are equal
46 * to the corresponding member of this annotation, as defined below:
65 * annotation typed members whose values are <tt>x</tt> and <tt>y</tt
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/webapp/
Origin.java 21 public enum Origin {NotSet, WebXml, WebDefaults, WebOverride, WebFragment, Annotation, API}
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/iface/
Annotation.java 34 import javax.annotation.Nonnull;
35 import javax.annotation.Nullable;
39 * This class represents a specific instance of an annotation applied to a class/field/method/parameter
41 public interface Annotation extends BasicAnnotation, Comparable<Annotation> {
43 * Gets the visibility of this annotation.
47 * @return The visibility of this annotation
52 * Gets the type of this annotation.
54 * This will be the type descriptor of the class that defines this annotation.
56 * @return The type of this annotation
    [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) {
46 return TextUtils.ANNOTATION;
  /libcore/dex/src/main/java/com/android/dex/
Annotation.java 22 * An annotation.
24 public final class Annotation implements Comparable<Annotation> {
29 public Annotation(Dex dex, byte visibility, EncodedValue encodedAnnotation) {
54 @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;
29 * An annotation on an element of a class. Annotations have an
33 public final class Annotation extends MutabilityControl
34 implements Comparable<Annotation>, ToHuman {
35 /** {@code non-null;} type of the annotation */
38 /** {@code non-null;} the visibility of the annotation */
47 * @param type {@code non-null;} type of the annotation
48 * @param visibility {@code non-null;} the visibility of the annotation
50 public Annotation(CstType type, AnnotationVisibility visibility) {
67 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/llvm/unittests/DebugInfo/PDB/
PDBApiTest.cpp 308 InsertItemWithTag(PDB_SymType::Annotation);
370 VerifyDyncast<PDBSymbolAnnotation>(PDB_SymType::Annotation);
  /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 57 private ArrayList<Annotation> annotations;
59 /** {@code >= 40 (if used);} the desired maximum annotation width */
369 annotations.add(new Annotation(cursor, msg));
390 annotations.add(new Annotation(startAt, startAt + amt, msg));
418 * @param annotationWidth {@code >= 40;} the desired maximum annotation width
437 this.annotations = new ArrayList<Annotation>(1000);
444 * Finishes up annotation processing. This closes off any open
449 // Close off the final annotation, if any.
456 Annotation last = annotations.get(asz - 1);
483 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...]
  /build/tools/ijar/
classfile.cc 659 struct Annotation {
660 virtual ~Annotation() {
681 static Annotation *Read(const u1 *&p) {
682 Annotation *value = new Annotation;
704 // annotation on a type used in a declaration or expression. The type_annotation
754 value->annotation_ = Annotation::Read(p);
852 fprintf(stderr, "Illegal type annotation target type: %d\n",
888 Annotation *annotation_;
902 value->annotation_ = Annotation::Read(p)
1037 Annotation *annotation = Annotation::Read(p); local
1077 Annotation *annotation = Annotation::Read(p); local
1120 TypeAnnotation *annotation = TypeAnnotation::Read(p); local
    [all...]
  /prebuilts/sdk/tools/lib/
shrinkedAndroid.jar 
  /external/llvm/include/llvm/DebugInfo/PDB/
PDBTypes.h 280 Annotation,
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/
descriptor.pb.h 7602 inline const ::google::protobuf::GeneratedCodeInfo_Annotation& GeneratedCodeInfo::annotation(int index) const { function in class:google::protobuf::GeneratedCodeInfo
7620 GeneratedCodeInfo::annotation() const { function in class:google::protobuf::GeneratedCodeInfo
    [all...]
  /dalvik/dx/etc/
jasmin.jar 
  /prebuilts/tools/common/jasmin/
jasmin.jar 
  /prebuilts/tools/common/m2/repository/com/thoughtworks/qdox/qdox/1.12/
qdox-1.12.jar 
  /external/testng/ant/3rdparty/
cobertura.jar 

Completed in 473 milliseconds

1 2 3 4 5 6