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

1 2 3 4 5 6 7 8 91011

  /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
65 public Annotation(Object value) {
79 * Returns the String representation of this Annotation.
81 * @return the {@code String} representation of this {@code 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
38 * compatibility concerns when evolving an annotation type from being
44 public interface Annotation {
46 * Returns true if the specified object represents an annotation
49 * annotation type as this instance, all of whose members are equal
50 * to the corresponding member of this annotation, as defined below
    [all...]
  /dalvik/dx/src/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) {
55 public int compareTo(Annotation other) {
  /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;
  /system/tools/hidl/
Annotation.h 80 struct Annotation {
81 Annotation(const char *name, AnnotationParamVector *params);
96 DISALLOW_COPY_AND_ASSIGN(Annotation);
Annotation.cpp 17 #include "Annotation.h"
114 Annotation::Annotation(const char* name, AnnotationParamVector* params)
117 std::string Annotation::name() const {
121 const AnnotationParamVector &Annotation::params() const {
125 const AnnotationParam *Annotation::getParam(const std::string &name) const {
135 std::vector<ConstantExpression*> Annotation::getConstantExpressions() {
136 const auto& constRet = static_cast<const Annotation*>(this)->getConstantExpressions();
143 std::vector<const ConstantExpression*> Annotation::getConstantExpressions() const {
152 void Annotation::dump(Formatter &out) const
    [all...]
  /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.
  /external/tensorflow/tensorflow/core/platform/
tracing.cc 98 Tracing::Engine::Annotation::~Annotation() {}
tracing.h 145 // Represents an active annotation.
146 class Annotation {
148 Annotation() {}
149 virtual ~Annotation();
163 // Register the specified name as an annotation on the current thread.
164 // Caller should delete the result to remove the annotation.
167 virtual Annotation* PushAnnotation(StringPiece name) = 0;
187 // This class permits a user to apply annotation on kernels and memcpys
188 // when launching them. While an annotation is in scope, all activities
189 // within that scope get their names replaced by the annotation. The kerne
    [all...]
  /cts/tests/tests/text/src/android/text/cts/
AnnotationTest.java 25 import android.text.Annotation;
40 private Annotation mAnnotation;
44 // new the Annotation instance
45 new Annotation(KEY1, VALUE1);
50 // new the Annotation instance
51 mAnnotation = new Annotation(KEY1, VALUE1);
53 mAnnotation = new Annotation(KEY2, VALUE2);
59 // new the Annotation instance
60 mAnnotation = new Annotation(KEY1, VALUE1);
62 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/annotation-tools/scene-lib/src/annotations/
Annotation.java 15 * A very simple annotation representation constructed with a map of field names
16 * to values. See the rules for values on {@link Annotation#getFieldValue};
17 * furthermore, subannotations must be {@link Annotation}s.
18 * {@link Annotation}s are immutable.
21 * {@link Annotation}s can be constructed directly or through
25 public final class Annotation {
28 * The annotation definition.
47 : String.format("Annotation contains field %s but AnnotationDef does not%n annotation: %s%n def: %s%n", s, this, this.def);
52 // : String.format("AnnotationDef contains field %s but Annotation does not", s)
    [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/llvm/unittests/DebugInfo/PDB/
PDBApiTest.cpp 335 InsertItemWithTag(PDB_SymType::Annotation);
397 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 58 private ArrayList<Annotation> annotations;
60 /** {@code >= 40 (if used);} the desired maximum annotation width */
386 annotations.add(new Annotation(cursor, msg));
408 annotations.add(new Annotation(startAt, startAt + amt, msg));
438 * @param annotationWidth {@code >= 40;} the desired maximum annotation width
457 this.annotations = new ArrayList<Annotation>(1000);
464 * Finishes up annotation processing. This closes off any open
469 // Close off the final annotation, if any.
476 Annotation last = annotations.get(asz - 1);
503 int rightAt = 0; // right-hand annotation inde
    [all...]
  /external/clang/lib/Sema/
SemaCXXScopeSpec.cpp     [all...]
  /external/tensorflow/tensorflow/java/src/gen/cc/
java_defs.h 37 class Annotation;
47 PRIMITIVE, CLASS, INTERFACE, ENUM, GENERIC, ANNOTATION
112 const std::vector<Annotation>& annotations() const { return annotations_; }
113 Type& add_annotation(const Annotation& annotation) {
114 annotations_.push_back(annotation);
145 std::vector<Annotation> annotations_;
149 // Definition of a Java annotation
151 // This class only defines the usage of an annotation in a specific context,
153 class Annotation : public Type
    [all...]
  /external/annotation-tools/annotation-file-utilities/
annotation-file-format.tex 40 \title{Annotation File Format Specification}
42 \author{\url{https://checkerframework.org/annotation-file-utilities/} \\
80 parallelization, etc.)\ can store annotations in an annotation file without
88 When debugging annotation-processing tools, a textual file format
97 An ``annotation file'' serves this purpose by specifying a set of
99 The Annotation File Utilities
100 (\url{https://checkerframework.org/annotation-file-utilities/}) are a set
101 of tools that process annotation files.
106 program. For annotations in method bodies of \code{.class} files the annotation
126 % separate annotation files, named in the same ``{\t
    [all...]
  /external/swiftshader/third_party/PowerVR_SDK/Tools/
PVRTPFXParser.h 246 CPVRTString Annotation;
  /external/llvm/include/llvm/DebugInfo/CodeView/
SymbolRecord.h 414 uint32_t Annotation = GetCompressedAnnotation(Next);
415 Result.S1 = DecodeSignedOperand(Annotation >> 4);
416 Result.U1 = Annotation & 0xf;
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/DebugInfo/CodeView/
SymbolRecord.h 318 uint32_t Annotation = GetCompressedAnnotation(Next);
319 Result.S1 = DecodeSignedOperand(Annotation >> 4);
320 Result.U1 = Annotation & 0xf;
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/DebugInfo/CodeView/
SymbolRecord.h 316 uint32_t Annotation = GetCompressedAnnotation(Next);
317 Result.S1 = DecodeSignedOperand(Annotation >> 4);
318 Result.U1 = Annotation & 0xf;

Completed in 565 milliseconds

1 2 3 4 5 6 7 8 91011