HomeSort by relevance Sort by last modified time
    Searched refs:METHOD (Results 1 - 25 of 179) sorted by null

1 2 3 4 5 6 7 8

  /dalvik/tests/004-annotations/src/android/test/anno/
AnnoSimpleMethod.java 5 @Target(ElementType.METHOD)
AnnoFancyMethod.java 5 @Target(ElementType.METHOD)
ExportedProperty.java 6 @Target({ ElementType.FIELD, ElementType.METHOD })
  /libcore/luni/src/main/java/java/lang/annotation/
ElementType.java 37 * Method declaration.
39 METHOD,
  /external/clang/test/Index/
annotate-macro-args.h 12 #define INVOKE(METHOD, CLASS) [CLASS METHOD]
get-cursor-macro-args.h 12 #define INVOKE(METHOD, CLASS) [CLASS METHOD]
  /external/hamcrest/src/org/hamcrest/
Factory.java 3 import static java.lang.annotation.ElementType.METHOD;
9 * Marks a Hamcrest static factory method so tools recognise them.
10 * A factory method is an equivalent to a named constructor.
15 @Target({METHOD})
  /external/proguard/examples/annotations/src/proguard/annotation/
Keep.java 15 @Target({ ElementType.TYPE, ElementType.FIELD, ElementType.METHOD, ElementType.CONSTRUCTOR })
KeepName.java 15 @Target({ ElementType.TYPE, ElementType.FIELD, ElementType.METHOD, ElementType.CONSTRUCTOR })
  /prebuilts/tools/common/proguard/proguard4.7/examples/annotations/src/proguard/annotation/
Keep.java 15 @Target({ ElementType.TYPE, ElementType.FIELD, ElementType.METHOD, ElementType.CONSTRUCTOR })
KeepName.java 15 @Target({ ElementType.TYPE, ElementType.FIELD, ElementType.METHOD, ElementType.CONSTRUCTOR })
  /external/jmonkeyengine/engine/src/core/com/jme3/system/
Annotations.java 45 * Annotation used for math primitive fields, method parameters or method return values.
51 @Target({ElementType.FIELD, ElementType.LOCAL_VARIABLE, ElementType.TYPE, ElementType.METHOD})
62 @Target({ElementType.METHOD})
  /frameworks/base/core/java/android/annotation/
TargetApi.java 19 import static java.lang.annotation.ElementType.METHOD;
28 @Target({TYPE, METHOD, CONSTRUCTOR})
  /sdk/annotations/src/android/annotation/
TargetApi.java 19 import static java.lang.annotation.ElementType.METHOD;
28 @Target({TYPE, METHOD, CONSTRUCTOR})
  /external/jsr305/ri/src/main/java/javax/annotation/
OverridingMethodsMustInvokeSuper.java 10 * When this annotation is applied to a method, it indicates that if this method
11 * is overridden in a subclass, the overriding method should invoke this method
12 * (through method invocation on super).
16 @Target( { ElementType.METHOD })
  /external/jsr305/ri/src/main/java/javax/annotation/concurrent/
GuardedBy.java 18 * The field or method to which this annotation is applied can only be accessed
22 * The argument determines which lock guards the annotated field or method: this :
30 * specified by class-name.field-name. method-name() : The lock object is
31 * returned by calling the named nil-ary method. class-name.class : The Class
34 @Target( { ElementType.FIELD, ElementType.METHOD })
  /external/junit/src/org/junit/
After.java 9 * <p>If you allocate external resources in a {@link org.junit.Before} method you need to release them
10 * after the test runs. Annotating a <code>public void</code> method
11 * with <code>&#064;After</code> causes that method to be run after the {@link org.junit.Test} method. All <code>&#064;After</code>
12 * methods are guaranteed to run even if a {@link org.junit.Before} or {@link org.junit.Test} method throws an
37 @Target(ElementType.METHOD)
AfterClass.java 9 * <p>If you allocate expensive external resources in a {@link org.junit.BeforeClass} method you need to release them
10 * after all the tests in the class have run. Annotating a <code>public static void</code> method
11 * with <code>&#064;AfterClass</code> causes that method to be run after all the tests in the class have been run. All <code>&#064;AfterClass</code>
12 * methods are guaranteed to run even if a {@link org.junit.BeforeClass} method throws an
39 @Target(ElementType.METHOD)
Before.java 10 * objects created before they can run. Annotating a <code>public void</code> method
11 * with <code>&#064;Before</code> causes that method to be run before the {@link org.junit.Test} method.
36 @Target(ElementType.METHOD)
BeforeClass.java 11 * tests, sometimes it is a necessary optimization. Annotating a <code>public static void</code> no-arg method
33 @Target(ElementType.METHOD)
Ignore.java 33 @Target({ElementType.METHOD, ElementType.TYPE})
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/annotation/
DisableStrictI18n.java 4 * Indicates that a JUnit test class or method should not be checked for I18N/L10N-safety
11 @java.lang.annotation.Target({java.lang.annotation.ElementType.TYPE, java.lang.annotation.ElementType.METHOD})
EnableStrictI18n.java 4 * Indicates that a JUnit test class or method should be checked for I18N/L10N-safety.
10 @java.lang.annotation.Target({java.lang.annotation.ElementType.TYPE,java.lang.annotation.ElementType.METHOD})
Values.java 9 @java.lang.annotation.Target(java.lang.annotation.ElementType.METHOD)
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/internal/
Implementation.java 4 * Indicates that a method declaration is intended to Shadow a method with the same signature on the associated
11 @java.lang.annotation.Target({java.lang.annotation.ElementType.METHOD})

Completed in 155 milliseconds

1 2 3 4 5 6 7 8