OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:annotationset
(Results
1 - 6
of
6
) sorted by null
/external/smali/dexlib/src/main/java/org/jf/dexlib/
AnnotationDirectoryItem.java
234
Integer.toHexString(fieldAnnotation.
annotationSet
.getOffset()));
246
Integer.toHexString(methodAnnotation.
annotationSet
.getOffset()));
258
Integer.toHexString(parameterAnnotation.
annotationSet
.getOffset()));
271
out.writeInt(fieldAnnotation.
annotationSet
.getOffset());
278
out.writeInt(methodAnnotation.
annotationSet
.getOffset());
285
out.writeInt(parameterAnnotation.
annotationSet
.getOffset());
412
return fieldAnnotations[index].
annotationSet
;
429
return methodAnnotations[index].
annotationSet
;
447
return parameterAnnotations[index].
annotationSet
;
519
public final AnnotationSetItem
annotationSet
;
[
all
...]
/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
FieldDefinition.java
43
EncodedValue initialValue, AnnotationSetItem
annotationSet
,
73
if (
annotationSet
!= null) {
75
AnnotationFormatter.writeTo(writer,
annotationSet
);
AnnotationFormatter.java
41
public static void writeTo(IndentingWriter writer, AnnotationSetItem
annotationSet
) throws IOException {
43
for (AnnotationItem annotationItem:
annotationSet
.getAnnotations()) {
MethodDefinition.java
106
public void writeTo(IndentingWriter writer, AnnotationSetItem
annotationSet
,
126
if (
annotationSet
!= null) {
127
AnnotationFormatter.writeTo(writer,
annotationSet
);
139
if (
annotationSet
!= null) {
140
AnnotationFormatter.writeTo(writer,
annotationSet
);
198
AnnotationSetItem
annotationSet
= null;
200
annotationSet
= annotations[i];
217
if (
annotationSet
!= null) {
219
AnnotationFormatter.writeTo(writer,
annotationSet
);
ClassDefinition.java
178
AnnotationSetItem
annotationSet
= annotationDirectory.getClassAnnotations();
179
if (
annotationSet
== null) {
185
AnnotationFormatter.writeTo(writer,
annotationSet
);
/libcore/luni/src/test/java/tests/api/java/lang/reflect/
MethodTest.java
411
Set<Class<?>>
annotationSet
= new HashSet<Class<?>>();
412
annotationSet
.add(annotations[0][0].annotationType());
413
annotationSet
.add(annotations[0][1].annotationType());
414
assertTrue("Missing TestAnno annotation",
annotationSet
416
assertTrue("Missing Deprecated annotation",
annotationSet
422
annotationSet
= new HashSet<Class<?>>();
423
annotationSet
.add(annotations[1][0].annotationType());
424
assertTrue("Missing Deprecated annotation",
annotationSet
439
Set<Class<?>>
annotationSet
= new HashSet<Class<?>>();
440
annotationSet
.add(declaredAnnotations[0].annotationType())
[
all
...]
Completed in 535 milliseconds