HomeSort by relevance Sort by last modified time
    Searched refs:annotation (Results 201 - 225 of 2460) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/jsr305/sampleUses/src/main/java/edu/umd/cs/findbugs/examples/
ParametersAreSlashedByDefault.java 3 import java.lang.annotation.ElementType;
5 import javax.annotation.meta.TypeQualifierDefault;
  /frameworks/base/core/java/android/bluetooth/
BluetoothDevicePicker.java 19 import android.annotation.SdkConstant;
20 import android.annotation.SdkConstant.SdkConstantType;
  /frameworks/base/core/java/android/provider/
AlarmClock.java 19 import android.annotation.SdkConstant;
20 import android.annotation.SdkConstant.SdkConstantType;
  /frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/annotations/
VisibleForTesting.java 19 import java.lang.annotation.Retention;
20 import java.lang.annotation.RetentionPolicy;
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/lang/
TestAnnotation.java 19 import java.lang.annotation.Retention;
20 import java.lang.annotation.RetentionPolicy;
  /libcore/luni/src/test/java/tests/api/java/nio/charset/
Charset_ISO_8859_10.java 18 import dalvik.annotation.AndroidOnly;
19 import dalvik.annotation.TestTargetClass;
Charset_ISO_8859_16.java 18 import dalvik.annotation.AndroidOnly;
19 import dalvik.annotation.TestTargetClass;
Charset_MultiByte_Big5_Android.java 18 import dalvik.annotation.AndroidOnly;
19 import dalvik.annotation.TestTargetClass;
Charset_MultiByte_GBK_Android.java 18 import dalvik.annotation.AndroidOnly;
19 import dalvik.annotation.TestTargetClass;
    [all...]
Charset_MultiByte_UTF_16_Android.java 18 import dalvik.annotation.AndroidOnly;
19 import dalvik.annotation.TestTargetClass;
  /cts/tests/tests/database/src/android/database/sqlite/cts/
SQLiteQueryTest.java 19 import dalvik.annotation.TestLevel;
20 import dalvik.annotation.TestTargetClass;
21 import dalvik.annotation.TestTargetNew;
22 import dalvik.annotation.TestTargets;
23 import dalvik.annotation.ToBeFixed;
  /dalvik/dx/src/com/android/dx/dex/file/
AnnotationItem.java 19 import com.android.dx.rop.annotation.Annotation;
20 import com.android.dx.rop.annotation.AnnotationVisibility;
21 import com.android.dx.rop.annotation.NameValuePair;
33 * Single annotation, which consists of a type and a set of name-value
37 /** annotation visibility constant: visible at build time only */
40 /** annotation visibility constant: visible at runtime */
43 /** annotation visibility constant: visible at runtime only to system */
52 /** {@code non-null;} the annotation to represent */
53 private final Annotation annotation field in class:AnnotationItem
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
BitmapFactory_OptionsTest.java 20 import dalvik.annotation.TestLevel;
21 import dalvik.annotation.TestTargetClass;
22 import dalvik.annotation.TestTargetNew;
  /cts/tests/tests/os/src/android/os/cts/
DeadObjectExceptionTest.java 20 import dalvik.annotation.TestLevel;
21 import dalvik.annotation.TestTargetClass;
22 import dalvik.annotation.TestTargetNew;
  /external/proguard/src/proguard/classfile/attribute/annotation/visitor/
AnnotatedClassVisitor.java 21 package proguard.classfile.attribute.annotation.visitor;
24 import proguard.classfile.attribute.annotation.Annotation;
31 * The latter visits the class of each visited annotation, although
53 public void visitAnnotation(Clazz clazz, Annotation annotation)
AnnotationToMemberVisitor.java 21 package proguard.classfile.attribute.annotation.visitor;
24 import proguard.classfile.attribute.annotation.Annotation;
31 * The latter visits the class member of each visited class member annotation
32 * or method parameter annotation, although never twice in a row.
53 public void visitAnnotation(Clazz clazz, Member member, Annotation annotation)
  /external/proguard/src/proguard/classfile/editor/
AnnotationsAttributeEditor.java 23 import proguard.classfile.attribute.annotation.*;
47 * Adds a given annotation to the annotations attribute.
49 public void addAnnotation(Annotation annotation)
52 Annotation[] annotations = targetAnnotationsAttribute.annotations;
54 // Make sure there is enough space for the new annotation.
57 targetAnnotationsAttribute.annotations = new Annotation[annotationsCount+1];
64 // Add the annotation.
65 annotations[targetAnnotationsAttribute.u2annotationsCount++] = annotation;
ParameterAnnotationsAttributeEditor.java 23 import proguard.classfile.attribute.annotation.*;
47 * Adds a given annotation to the annotations attribute.
49 public void addAnnotation(int parameterIndex, Annotation annotation)
52 Annotation[] annotations = targetParameterAnnotationsAttribute.parameterAnnotations[parameterIndex];
54 // Make sure there is enough space for the new annotation.
58 targetParameterAnnotationsAttribute.parameterAnnotations[parameterIndex] = new Annotation[annotationsCount+1];
68 // Add the annotation.
69 annotations[targetParameterAnnotationsAttribute.u2parameterAnnotationsCount[parameterIndex]++] = annotation;
  /libcore/luni/src/test/java/org/apache/harmony/annotation/tests/java/lang/annotation/
AnnotationFormatErrorTest.java 18 package org.apache.harmony.annotation.tests.java.lang.annotation;
20 import java.lang.annotation.AnnotationFormatError;
25 * Test case of java.lang.annotation.AnnotationFormatError
29 * @tests java.lang.annotation.AnnotationFormatError#AnnotationFormatError(String)
38 * @tests java.lang.annotation.AnnotationFormatError#AnnotationFormatError(Throwable)
47 * @tests java.lang.annotation.AnnotationFormatError#AnnotationFormatError(String,Throwable)
AnnotationTypeMismatchExceptionTest.java 18 package org.apache.harmony.annotation.tests.java.lang.annotation;
20 import java.lang.annotation.AnnotationTypeMismatchException;
26 * Test case of java.lang.annotation.AnnotationTypeMismatchException
33 * @tests java.lang.annotation.AnnotationTypeMismatchException#AnnotationTypeMismatchException(Method,
IncompleteAnnotationExceptionTest.java 18 package org.apache.harmony.annotation.tests.java.lang.annotation;
20 import java.lang.annotation.IncompleteAnnotationException;
44 * @tests java.lang.annotation.IncompleteAnnotationException#IncompleteAnnotationException(Class,
55 assertSame("wrong annotation type", clazz, e.annotationType());
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/func/
CipherDESedeWrapTest.java 18 import dalvik.annotation.TestLevel;
19 import dalvik.annotation.TestTargetNew;
20 import dalvik.annotation.TestTargetClass;
  /libcore/luni/src/test/java/org/apache/harmony/nio/tests/java/nio/
HeapByteBufferTest.java 18 import dalvik.annotation.TestLevel;
19 import dalvik.annotation.TestTargetNew;
20 import dalvik.annotation.TestTargetClass;
HeapCharBufferTest.java 18 import dalvik.annotation.TestLevel;
19 import dalvik.annotation.TestTargetNew;
20 import dalvik.annotation.TestTargetClass;
HeapDoubleBufferTest.java 18 import dalvik.annotation.TestLevel;
19 import dalvik.annotation.TestTargetNew;
20 import dalvik.annotation.TestTargetClass;

Completed in 379 milliseconds

1 2 3 4 5 6 7 891011>>