/external/turbine/javatests/com/google/turbine/lower/testdata/ |
anno_repeated.test | 3 import java.lang.annotation.Repeatable; 16 @Repeatable(As.class) 26 import java.lang.annotation.Repeatable; 32 @Repeatable(Bs.class) 36 import java.lang.annotation.Repeatable; 42 @Repeatable(Cs.class)
|
/libcore/ojluni/src/main/java/java/lang/annotation/ |
Repeatable.java | 29 * The annotation type {@code java.lang.annotation.Repeatable} is 31 * (meta-)annotates is <em>repeatable</em>. The value of 32 * {@code @Repeatable} indicates the <em>containing annotation 33 * type</em> for the repeatable annotation type. 42 public @interface Repeatable { 45 * repeatable annotation type.
|
/art/test/048-reflect-v8/src/ |
Calendar.java | 18 import java.lang.annotation.Repeatable; 23 // "Repeatable" annotation if we query with getDeclaredAnnotation(Repeatable.class) 25 @Repeatable(Calendars.class)
|
User.java | 20 /* FIXME: Use this code instead, when Jack supports repeatable annotations properly.
|
/external/turbine/java/com/google/turbine/binder/bound/ |
AnnotationMetadata.java | 29 * java.lang.annotation.Retention}, and {@link java.lang.annotation.Repeatable}. 44 private final ClassSymbol repeatable; field in class:AnnotationMetadata 49 ClassSymbol repeatable) { 52 this.repeatable = repeatable; 66 public ClassSymbol repeatable() { method in class:AnnotationMetadata 67 return repeatable;
|
/frameworks/base/packages/SystemUI/plugin/src/com/android/systemui/plugins/annotations/ |
DependsOn.java | 17 import java.lang.annotation.Repeatable; 28 @Repeatable(value = Dependencies.class)
|
Requires.java | 17 import java.lang.annotation.Repeatable; 29 @Repeatable(value = Requirements.class)
|
/libcore/luni/src/main/java/libcore/reflect/ |
AnnotatedElements.java | 21 import java.lang.annotation.Repeatable; 50 // Store a list of repeatable annotations that have been extracted from their container. 95 // This will always succeed unless the annotation and its repeatable annotation class were 130 * Find the {@code \@Repeatable} container annotation class for an annotation class, or 137 * @Repeatable(X.class) 145 * Otherwise if there was no {@code \@Repeatable} annotation, return {@code null}. 151 Repeatable repeatableAnnotation = annotationClass.getDeclaredAnnotation(Repeatable.class);
|
/prebuilts/jdk/jdk8/darwin-x86/sample/annotations/Validator/src/ |
Validate.java | 39 import java.lang.annotation.Repeatable; 47 @Repeatable(ValidateContainer.class) 66 * A container for the repeatable @Validate annotation.
|
/prebuilts/jdk/jdk8/linux-x86/sample/annotations/Validator/src/ |
Validate.java | 39 import java.lang.annotation.Repeatable; 47 @Repeatable(ValidateContainer.class) 66 * A container for the repeatable @Validate annotation.
|
/external/junit/ |
README.md | 2 JUnit is a simple framework to write repeatable tests. It is an instance of the xUnit architecture for unit testing frameworks.
|
/external/robolectric-shadows/utils/src/test/java/org/robolectric/util/ |
PerfStatsCollectorTest.java | 41 Event firstEvent = collector.startEvent("repeatable event"); 45 Event secondEvent = collector.startEvent("repeatable event"); 49 Event thirdEvent = collector.startEvent("repeatable event"); 55 new Metric("repeatable event", 3, 60, true)
|
/external/apache-http/src/org/apache/http/ |
HttpEntity.java | 51 * {@link #isRepeatable repeatable}. 55 * Self-contained entities are generally {@link #isRepeatable repeatable}. 64 * to consider non-repeatable entities as streamed, and those that are 65 * repeatable (without a huge effort) as self-contained. 82 * A repeatable entity's getContent() and writeTo(OutputStream) methods 83 * can be called more than once whereas a non-repeatable entity's can not. 84 * @return true if the entity is repeatable, false otherwise. 140 * Entities that are not {@link #isRepeatable repeatable} 147 * if this entity is not repeatable and the stream
|
/prebuilts/jdk/jdk8/darwin-x86/sample/annotations/DependencyChecker/PluginChecker/src/checker/ |
Require.java | 41 import java.lang.annotation.Repeatable; 49 @Repeatable(RequireContainer.class)
|
RequireContainer.java | 45 * A container for the repeatable @Require annotation.
|
/prebuilts/jdk/jdk8/linux-x86/sample/annotations/DependencyChecker/PluginChecker/src/checker/ |
Require.java | 41 import java.lang.annotation.Repeatable; 49 @Repeatable(RequireContainer.class)
|
RequireContainer.java | 45 * A container for the repeatable @Require annotation.
|
/external/apache-http/src/org/apache/http/entity/ |
BufferedHttpEntity.java | 44 * The buffered entity is always repeatable. 45 * If the wrapped entity is repeatable itself, calls are passed through. 46 * If the wrapped entity is not repeatable, the content is read into a 99 * Tells that this entity is repeatable.
|
/external/autotest/client/site_tests/graphics_KernelMemory/ |
control | 27 repeatable we wait for the login screen to load (hack).
|
/external/valgrind/helgrind/tests/ |
locked_vs_unlocked1.c | 33 sleep(1); /* ensure repeatable results */
|
tc22_exit_w_lock.c | 33 sleeps to enforce exit ordering, for repeatable regtesting. */
|
/art/test/983-source-transform-verify/ |
source_transform.cc | 56 // repeatable we only care about things that come from RetransformClasses.
|
/external/valgrind/none/tests/amd64/ |
bug156404-amd64.c | 76 if (r > 1) r = 1; /* to make the output repeatable */
|
/libcore/ojluni/src/main/java/java/lang/reflect/ |
AnnotatedElement.java | 51 * either method is a repeatable annotation type (JLS 9.6), then the 134 * annotation type <i>T</i> is originally <em>not</em> repeatable and 135 * later modified to be repeatable. 141 * <li>Modifying <i>T</i> to be repeatable is source and binary 154 * formally repeatable. Alternatively, when <i>T</i> is made 155 * repeatable, <i>TC</i> can be introduced as a new type.) 158 * <i>T</i> is modified to be repeatable with <i>TC</i> as its 179 * element and <i>T</i> is made repeatable and more annotations of 214 * {@code @Repeatable} annotation whose value element indicates a type 290 * is that this method detects if its argument is a <em>repeatable [all...] |
/external/guava/guava-gwt/test-super/com/google/common/base/super/com/google/common/base/ |
ObjectsTest.java | 50 // repeatable
|