Home
last modified time | relevance | path

Searched refs:isRuntimeVisible (Results 1 – 6 of 6) sorted by relevance

/external/apache-commons-bcel/src/main/java/org/apache/bcel/classfile/
DAnnotations.java33 private final boolean isRuntimeVisible; field in Annotations
43 final ConstantPool constant_pool, final boolean isRuntimeVisible) throws IOException { in Annotations() argument
44 …is(annotation_type, name_index, length, (AnnotationEntry[]) null, constant_pool, isRuntimeVisible); in Annotations()
48 annotation_table[i] = AnnotationEntry.read(input, constant_pool, isRuntimeVisible); in Annotations()
60 final ConstantPool constant_pool, final boolean isRuntimeVisible) { in Annotations() argument
63 this.isRuntimeVisible = isRuntimeVisible; in Annotations()
101 public boolean isRuntimeVisible() { in isRuntimeVisible() method in Annotations
102 return isRuntimeVisible; in isRuntimeVisible()
DAnnotationEntry.java39 private final boolean isRuntimeVisible; field in AnnotationEntry
52 …al DataInput input, final ConstantPool constant_pool, final boolean isRuntimeVisible) throws IOExc… in read() argument
54 … annotationEntry = new AnnotationEntry(input.readUnsignedShort(), constant_pool, isRuntimeVisible); in read()
65 …tionEntry(final int type_index, final ConstantPool constant_pool, final boolean isRuntimeVisible) { in AnnotationEntry() argument
68 this.isRuntimeVisible = isRuntimeVisible; in AnnotationEntry()
79 public boolean isRuntimeVisible() { in isRuntimeVisible() method in AnnotationEntry
80 return isRuntimeVisible; in isRuntimeVisible()
/external/apache-commons-bcel/src/main/java/org/apache/bcel/generic/
DAnnotationEntryGen.java48 private boolean isRuntimeVisible = false; field in AnnotationEntryGen
66 isRuntimeVisible = a.isRuntimeVisible(); in AnnotationEntryGen()
88 isRuntimeVisible); in getAnnotation()
101 isRuntimeVisible = vis; in AnnotationEntryGen()
114 a.isRuntimeVisible(b); in read()
183 private void isRuntimeVisible(final boolean b) { in isRuntimeVisible() method in AnnotationEntryGen
184 isRuntimeVisible = b; in isRuntimeVisible()
187 public boolean isRuntimeVisible() { in isRuntimeVisible() method in AnnotationEntryGen
188 return isRuntimeVisible; in isRuntimeVisible()
210 if (a.isRuntimeVisible()) { in getAnnotationAttributes()
[all …]
/external/apache-commons-bcel/src/test/java/org/apache/bcel/generic/
DAnnotationGenTestCase.java99 assertTrue(((Annotations) attribute).isRuntimeVisible()); in testVisibleInvisibleAnnotationGen()
114 assertFalse(((Annotations) attribute).isRuntimeVisible()); in testVisibleInvisibleAnnotationGen()
135 annAfter = AnnotationEntryGen.read(dis, cpg, a.isRuntimeVisible()); in checkSerialize()
/external/turbine/java/com/google/turbine/bytecode/
DLowerAttributes.java93 (annotation.isRuntimeVisible() ? visible : invisible).add(annotation); in addAllAnnotations()
108 (annotation.anno().isRuntimeVisible() ? visible : invisible).add(annotation); in addAllTypeAnnotations()
129 if (annotation.isRuntimeVisible()) { in addParameterAnnotations()
DClassFile.java360 public boolean isRuntimeVisible() { in isRuntimeVisible() method in ClassFile.AnnotationInfo