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
47
) sorted by null
1
2
/dalvik/dx/src/com/android/dx/cf/attrib/
BaseParameterAnnotations.java
71
public final AnnotationsList
getParameterAnnotations
() {
/external/guava/guava/src/com/google/common/reflect/
Invokable.java
119
Annotation[][] annotations =
getParameterAnnotations
();
182
abstract Annotation[][]
getParameterAnnotations
();
212
@Override final Annotation[][]
getParameterAnnotations
() {
213
return method.
getParameterAnnotations
();
276
@Override final Annotation[][]
getParameterAnnotations
() {
277
return constructor.
getParameterAnnotations
();
/external/testng/src/test/java/test/hook/
HookSuccess862Test.java
17
Annotation[] annotations = method.
getParameterAnnotations
()[i];
/dalvik/dx/src/com/android/dx/dex/cf/
AttributeTranslator.java
375
public static AnnotationsList
getParameterAnnotations
(Method method) {
390
return invisible.
getParameterAnnotations
();
394
return visible.
getParameterAnnotations
();
399
return AnnotationsList.combine(visible.
getParameterAnnotations
(),
400
invisible.
getParameterAnnotations
());
/external/junit/src/main/java/org/junit/experimental/theories/
ParameterSignature.java
39
.
getParameterAnnotations
());
44
.
getParameterAnnotations
());
/external/guice/extensions/assistedinject/src/com/google/inject/assistedinject/
AssistedConstructor.java
52
Annotation[][] annotations = constructor.
getParameterAnnotations
();
FactoryProvider.java
324
method.
getParameterAnnotations
();
325
for (Annotation[] parameterAnnotations : method.
getParameterAnnotations
()) {
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/
DexBackedMethod.java
137
getParameterAnnotations
(),
150
public List<? extends Set<? extends DexBackedAnnotation>>
getParameterAnnotations
() {
151
return AnnotationsDirectory.
getParameterAnnotations
(dexFile, parameterAnnotationSetListOffset);
/external/sl4a/Common/src/com/googlecode/android_scripting/rpc/
MethodDescriptor.java
86
final Annotation annotations[][] =
getParameterAnnotations
();
115
final Annotation annotations[][] =
getParameterAnnotations
();
294
public Annotation[][]
getParameterAnnotations
() {
295
return mMethod.
getParameterAnnotations
();
311
final Annotation[][] annotations = mMethod.
getParameterAnnotations
();
409
Annotation[][] parametersAnnotations = mMethod.
getParameterAnnotations
();
437
Annotation[][] parametersAnnotations = mMethod.
getParameterAnnotations
();
/external/testng/src/main/java/org/testng/internal/annotations/
JDK15AnnotationFinder.java
227
final Annotation[][] annotations = method.
getParameterAnnotations
();
241
return optionalValues(method.
getParameterAnnotations
());
246
return optionalValues(method.
getParameterAnnotations
());
/art/test/005-annotations/src/android/test/anno/
TestAnnotations.java
62
for (Annotation[] pannos: c.
getParameterAnnotations
()) {
73
for (Annotation[] pannos: m.
getParameterAnnotations
()) {
/cts/tests/tests/libcoreapievolution/src/android/apievolution/cts/
ApiEvolutionTest.java
197
Annotation[][] parameterAnnotations = original.
getParameterAnnotations
();
200
+ fullMethodName, parameterAnnotations, synthetic.
getParameterAnnotations
());
/art/test/715-clinit-implicit-parameter-annotations/src/
Main.java
111
Annotation[][] annotations = c.
getParameterAnnotations
();
/external/mockito/src/test/java/org/mockito/
AnnotationsAreCopiedFromMockedTypeTest.java
54
final Annotation[] firstParamAnnotations = method.
getParameterAnnotations
()[0];
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/util/
AnnotationsDirectory.java
119
public static List<Set<? extends DexBackedAnnotation>>
getParameterAnnotations
(
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/
ClassSection.java
73
@Nullable List<? extends AnnotationSetKey>
getParameterAnnotations
(@Nonnull MethodKey key);
/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
384
public AnnotationsList
getParameterAnnotations
(CstMethodRef method) {
385
return annotationsDirectory.
getParameterAnnotations
(method);
AnnotationsDirectoryItem.java
228
public AnnotationsList
getParameterAnnotations
(CstMethodRef method) {
/external/guice/extensions/mini/src/com/google/inject/mini/
MiniGuice.java
154
method, method.getGenericParameterTypes(), method.
getParameterAnnotations
());
247
constructor.
getParameterAnnotations
());
/dalvik/dx/tests/115-merge/com/android/dx/merge/
DexMergeTest.java
125
method.
getParameterAnnotations
()[1][0].toString());
/external/guice/extensions/throwingproviders/src/com/google/inject/throwingproviders/
CheckedProviderMethodsModule.java
98
Annotation[][] parameterAnnotations = method.
getParameterAnnotations
();
/art/test/044-proxy/src/
BasicTest.java
87
Annotation[][] paramAnnos = meth.
getParameterAnnotations
();
/external/guice/extensions/persist/src/com/google/inject/persist/jpa/
JpaFinderProxy.java
174
Annotation[][] parameterAnnotations = method.
getParameterAnnotations
();
Completed in 2755 milliseconds
1
2