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

1 2 3 4 5 6 7 8 91011>>

  /external/caliper/caliper/src/main/java/com/google/caliper/runner/
Running.java 20 import static java.lang.annotation.ElementType.METHOD;
36 @Target({FIELD, PARAMETER, METHOD})
41 @Target({FIELD, PARAMETER, METHOD})
46 @Target({FIELD, PARAMETER, METHOD})
51 @Target({FIELD, PARAMETER, METHOD})
56 @Target({FIELD, PARAMETER, METHOD})
  /art/test/005-annotations/src/android/test/anno/
AnnoSimpleMethod.java 5 @Target(ElementType.METHOD)
  /frameworks/data-binding/baseLibrary/src/main/java/android/databinding/
BindingConversion.java 28 @Target({ElementType.METHOD})
  /libcore/ojluni/src/main/java/java/lang/
Override.java 31 * Indicates that a method declaration is intended to override a
32 * method declaration in a supertype. If a method is annotated with
37 * The method does override or implement a method declared in a
40 * The method has a signature that is override-equivalent to that of
41 * any public method declared in {@linkplain Object}.
49 @Target(ElementType.METHOD)
  /libcore/ojluni/src/main/java/java/lang/annotation/
ElementType.java 46 /** Method declaration */
47 METHOD,
  /external/caliper/caliper/src/main/java/com/google/caliper/
Benchmark.java 19 import static java.lang.annotation.ElementType.METHOD;
39 * that the work done in the benchmark method scale linearly to the number of repetitions.
62 * // return a dummy value so the JIT compiler doesn't optimize away the entire method.
77 @Target(METHOD)
  /external/caliper/caliper/src/main/java/com/google/caliper/api/
Footprint.java 19 import static java.lang.annotation.ElementType.METHOD;
26 * Annotates a method whose return value is an object whose total memory footprint is to be
30 @Target(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/dagger2/core/src/main/java/dagger/mapkeys/
ClassKey.java 22 import static java.lang.annotation.ElementType.METHOD;
31 @Target(METHOD)
IntKey.java 22 import static java.lang.annotation.ElementType.METHOD;
26 @Target(METHOD)
LongKey.java 22 import static java.lang.annotation.ElementType.METHOD;
26 @Target(METHOD)
StringKey.java 22 import static java.lang.annotation.ElementType.METHOD;
26 @Target(METHOD)
  /external/guice/core/src/com/google/inject/
Provides.java 19 import static java.lang.annotation.ElementType.METHOD;
27 * Annotates methods of a {@link Module} to create a provider method binding. The method's return
28 * type is bound to its returned value. Guice will pass dependencies to the method as parameters.
33 @Documented @Target(METHOD) @Retention(RUNTIME)
  /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/testng/src/main/java/org/testng/annotations/
DataProvider.java 3 import static java.lang.annotation.ElementType.METHOD;
9 * Mark a method as supplying data for a test method. The data provider name
10 * defaults to method name.
11 * The annotated method must return an Object[][] where each
12 * Object[] can be assigned the parameter list of the test method.
13 * The @Test method that wants to receive data from this DataProvider
19 @Target({METHOD})
  /external/testng/src/main/java/org/testng/xml/dom/
OnElement.java 3 import static java.lang.annotation.ElementType.METHOD;
9 @Target({METHOD})
OnElementList.java 3 import static java.lang.annotation.ElementType.METHOD;
9 @Target({METHOD})
ParentSetter.java 3 import static java.lang.annotation.ElementType.METHOD;
9 @Target({METHOD})
Tag.java 3 import static java.lang.annotation.ElementType.METHOD;
9 @Target({METHOD})
TagContent.java 3 import static java.lang.annotation.ElementType.METHOD;
9 @Target({METHOD})
  /external/testng/src/test/java/test/verify/
Verifier.java 3 import static java.lang.annotation.ElementType.METHOD;
10 @Target({METHOD, TYPE})
Verify.java 3 import static java.lang.annotation.ElementType.METHOD;
10 @Target({METHOD, TYPE})
  /frameworks/base/core/java/android/annotation/
CallSuper.java 21 import static java.lang.annotation.ElementType.METHOD;
25 * Denotes that any overriding methods should invoke this method as well.
36 @Target({METHOD})
CheckResult.java 21 import static java.lang.annotation.ElementType.METHOD;
25 * Denotes that the annotated method returns a result that it typically is
28 * has misunderstood what the method does.
41 @Target({METHOD})
43 /** Defines the name of the suggested method to use instead, if applicable (using
47 * For example, ProcessBuilder has a method named {@code redirectErrorStream()}
51 * In that case, the method should be defined like this:

Completed in 801 milliseconds

1 2 3 4 5 6 7 8 91011>>