OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:getParameterAnnotations
(Results
1 - 25
of
42
) sorted by null
1
2
/dalvik/dx/src/com/android/dx/cf/attrib/
BaseParameterAnnotations.java
70
public final AnnotationsList
getParameterAnnotations
() {
/external/guava/guava-testlib/src/com/google/common/testing/
NullPointerTester.java
204
@Override public Annotation[][]
getParameterAnnotations
() {
205
return method.
getParameterAnnotations
();
231
@Override public Annotation[][]
getParameterAnnotations
() {
232
return ctor.
getParameterAnnotations
();
279
Annotation[] annotations = func.
getParameterAnnotations
()[paramIndex];
306
Annotation[][]
getParameterAnnotations
();
/external/junit/src/org/junit/experimental/theories/
ParameterSignature.java
16
.
getParameterAnnotations
());
21
.
getParameterAnnotations
());
/dalvik/dx/src/com/android/dx/dex/cf/
AttributeTranslator.java
358
public static AnnotationsList
getParameterAnnotations
(Method method) {
373
return invisible.
getParameterAnnotations
();
377
return visible.
getParameterAnnotations
();
382
return AnnotationsList.combine(visible.
getParameterAnnotations
(),
383
invisible.
getParameterAnnotations
());
CfTranslator.java
337
AttributeTranslator.
getParameterAnnotations
(one);
/libcore/luni/src/main/java/java/lang/reflect/
Method.java
311
public Annotation[][]
getParameterAnnotations
() {
313
=
getParameterAnnotations
(declaringClass, slot);
320
static native Annotation[][]
getParameterAnnotations
(Class declaringClass, int slot);
Constructor.java
228
public Annotation[][]
getParameterAnnotations
() {
230
= Method.
getParameterAnnotations
(declaringClass, slot);
/dalvik/tests/004-annotations/src/android/test/anno/
TestAnnotations.java
44
for (Annotation[] pannos: c.
getParameterAnnotations
()) {
55
for (Annotation[] pannos: m.
getParameterAnnotations
()) {
/libcore/benchmarks/src/benchmarks/regression/
AnnotatedElementBenchmark.java
61
method.
getParameterAnnotations
();
/libcore/luni/src/test/java/libcore/java/lang/reflect/
AnnotationsTest.java
59
Annotation[][] parameterAnnotations = method.
getParameterAnnotations
();
/dalvik/dexgen/src/com/android/dexgen/dex/file/
ClassDefItem.java
383
public AnnotationsList
getParameterAnnotations
(CstMethodRef method) {
384
return annotationsDirectory.
getParameterAnnotations
(method);
AnnotationsDirectoryItem.java
225
public AnnotationsList
getParameterAnnotations
(CstMethodRef method) {
/dalvik/dx/src/com/android/dx/dex/file/
ClassDefItem.java
381
public AnnotationsList
getParameterAnnotations
(CstMethodRef method) {
382
return annotationsDirectory.
getParameterAnnotations
(method);
AnnotationsDirectoryItem.java
225
public AnnotationsList
getParameterAnnotations
(CstMethodRef method) {
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
ClassDefItem.java
381
public AnnotationsList
getParameterAnnotations
(CstMethodRef method) {
382
return annotationsDirectory.
getParameterAnnotations
(method);
AnnotationsDirectoryItem.java
225
public AnnotationsList
getParameterAnnotations
(CstMethodRef method) {
/external/smali/dexlib/src/main/java/org/jf/dexlib/
AnnotationDirectoryItem.java
391
public List<ParameterAnnotation>
getParameterAnnotations
() {
439
public AnnotationSetRefList
getParameterAnnotations
(MethodIdItem methodIdItem) {
/dalvik/dx/tests/115-merge/com/android/dx/merge/
DexMergeTest.java
124
method.
getParameterAnnotations
()[1][0].toString());
/dalvik/tests/044-proxy/src/
BasicTest.java
76
Annotation[][] paramAnnos = meth.
getParameterAnnotations
();
/external/javassist/src/main/javassist/
CtBehavior.java
242
public Object[][]
getParameterAnnotations
() throws ClassNotFoundException {
243
return
getParameterAnnotations
(false);
255
* @see #
getParameterAnnotations
()
261
return
getParameterAnnotations
(true);
268
Object[][]
getParameterAnnotations
(boolean ignoreNotFound)
[
all
...]
/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
ClassDefinition.java
325
parameterAnnotations = annotations.
getParameterAnnotations
(method.method);
/libcore/luni/src/test/java/org/apache/harmony/annotation/tests/java/lang/annotation/
AnnotationTest.java
133
Annotation[][] annotations = c.getDeclaredMethod("test35304_method", parameterTypes).
getParameterAnnotations
();
/libcore/luni/src/test/java/tests/api/java/lang/reflect/
ConstructorTest.java
109
Annotation[][] paramAnnotations = ctor1.
getParameterAnnotations
();
MethodTest.java
400
* java.lang.reflect.Method#
getParameterAnnotations
()
406
Annotation[][] annotations = method.
getParameterAnnotations
();
[
all
...]
/dalvik/dx/src/com/android/dx/command/dexer/
Main.java
844
clazz.
getParameterAnnotations
(meth.getRef());
[
all
...]
Completed in 1085 milliseconds
1
2