OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:getAnnotation
(Results
76 - 100
of
217
) sorted by null
1
2
3
4
5
6
7
8
9
/external/catch2/include/internal/
catch_objc.hpp
62
inline std::string
getAnnotation
( Class cls,
92
std::string name = Detail::
getAnnotation
( cls, "Name", testCaseName );
93
std::string desc = Detail::
getAnnotation
( cls, "Description", testCaseName );
/external/guice/core/test/com/google/inject/
KeyTest.java
159
Foo instance = getClass().getDeclaredField("baz").
getAnnotation
(Foo.class);
264
AllDefaults allDefaults = HasAnnotations.class.
getAnnotation
(AllDefaults.class);
267
Marker marker = HasAnnotations.class.
getAnnotation
(Marker.class);
271
assertNull(noDefaults.
getAnnotation
());
275
assertNull(someDefaults.
getAnnotation
());
/external/robolectric-shadows/junit/src/main/java/org/robolectric/internal/
SandboxTestRunner.java
184
SandboxConfig classConfig = getTestClass().getJavaClass().
getAnnotation
(SandboxConfig.class);
191
SandboxConfig methodConfig = method.
getAnnotation
(SandboxConfig.class);
326
addShadows(shadowClasses, getTestClass().getJavaClass().
getAnnotation
(SandboxConfig.class));
327
addShadows(shadowClasses, method.
getAnnotation
(SandboxConfig.class));
347
return method.
getAnnotation
(Ignore.class) != null;
/external/junit/src/main/java/org/junit/runners/
BlockJUnit4ClassRunner.java
88
return child.
getAnnotation
(Ignore.class) != null;
301
Test annotation = method.
getAnnotation
(Test.class);
314
long timeout = getTimeout(method.
getAnnotation
(Test.class));
Suite.java
54
SuiteClasses annotation = klass.
getAnnotation
(SuiteClasses.class);
Parameterized.java
246
Parameters parameters = getParametersMethod().
getAnnotation
(
255
.
getAnnotation
(UseParametersRunnerFactory.class);
/external/robolectric-shadows/robolectric/src/main/java/org/robolectric/
ParameterizedRobolectricTestRunner.java
145
Annotation parameter = field.
getAnnotation
((Class<Annotation>) parameterClass);
208
int index = each.getField().
getAnnotation
(Parameter.class).value();
280
getParametersMethod(testClass, classLoader).
getAnnotation
(Parameters.class);
/external/caliper/caliper/src/main/java/com/google/caliper/runner/
Parameter.java
112
String[] defaultsAsStrings = field.
getAnnotation
(Param.class).value();
/external/dagger2/compiler/src/main/java/dagger/internal/codegen/
MapKeyProcessingStep.java
74
MapKey mapkey = element.
getAnnotation
(MapKey.class);
/external/guice/core/src/com/google/inject/internal/
Annotations.java
177
Retention retention = annotationType.
getAnnotation
(Retention.class);
238
.
getAnnotation
(TestAnnotation.class)
375
Annotation annotation = key.
getAnnotation
();
378
return key.
getAnnotation
().toString();
Indexer.java
74
Element annotation = (Element) binding.getKey().
getAnnotation
();
107
return binding.getKey().
getAnnotation
() instanceof Element;
ProvidesMethodScanner.java
121
MapKey mapKey = annotation.annotationType().
getAnnotation
(MapKey.class);
152
if (!mapKeyAnnotation.annotationType().
getAnnotation
(MapKey.class).unwrapValue()) {
/external/guice/core/test/com/google/inject/name/
NamesTest.java
43
namedFoo = getClass().getDeclaredField("foo").
getAnnotation
(Named.class);
/external/guice/extensions/dagger-adapter/src/com/google/inject/daggeradapter/
DaggerMethodScanner.java
81
Annotation annotation = key.
getAnnotation
();
/external/guice/extensions/grapher/src/com/google/inject/grapher/
ShortNameFactory.java
52
Annotation annotation = key.
getAnnotation
();
/external/guice/extensions/jmx/src/com/google/inject/tools/jmx/
Manager.java
58
Annotation annotation = key.
getAnnotation
();
/external/junit/src/main/java/org/junit/internal/runners/
TestClass.java
47
Annotation annotation = eachMethod.
getAnnotation
(annotationClass);
/external/junit/src/main/java/org/junit/validator/
AnnotationsValidator.java
66
.
getAnnotation
(ValidateWith.class);
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/objectdescriptors/
ObjectDescriptorFactory.java
143
final Descriptor descriptor = clazz.
getAnnotation
(Descriptor.class);
/external/robolectric-shadows/robolectric/src/main/java/org/robolectric/internal/
AndroidConfigurer.java
25
Implements annotation = clazz.
getAnnotation
(Implements.class);
/external/testng/src/main/java/org/testng/xml/dom/
Reflect.java
16
Annotation a = m.
getAnnotation
(ac);
/external/vogar/src/vogar/target/junit/
VogarBlockJUnit4ClassRunner.java
136
public <T extends Annotation> T
getAnnotation
(Class<T> annotationType) {
/art/test/979-const-method-handle/util-src/transformer/
ConstantTransformer.java
199
ConstantMethodHandle constantMethodHandle = m.
getAnnotation
(ConstantMethodHandle.class);
206
ConstantMethodType constantMethodType = m.
getAnnotation
(ConstantMethodType.class);
/external/junit/src/main/java/org/junit/experimental/theories/internal/
AllMembersSupplier.java
42
DataPoint annotation = method.
getAnnotation
(DataPoint.class);
86
DataPoints annotation = dataPointsMethod.
getAnnotation
(DataPoints.class);
/external/junit-params/src/main/java/junitparams/internal/
TestMethod.java
100
public <T extends Annotation> T
getAnnotation
(Class<T> annotationType) {
101
return frameworkMethodAnnotations.
getAnnotation
(annotationType);
Completed in 1361 milliseconds
1
2
3
4
5
6
7
8
9