/external/annotation-tools/scene-lib/src/annotations/el/ |
D | AElement.java | 69 public final Set<Annotation> tlAnnotationsHere; 75 for (Annotation anno : tlAnnotationsHere) { 96 tlAnnotationsHere = new LinkedHashSet<Annotation>(); 108 tlAnnotationsHere.addAll(elem.tlAnnotationsHere); 113 tlAnnotationsHere.addAll(elem.tlAnnotationsHere); 164 return o.tlAnnotationsHere.equals(tlAnnotationsHere) 173 return getClass().getName().hashCode() + tlAnnotationsHere.hashCode() 184 return tlAnnotationsHere.isEmpty() 205 for (Annotation aElement : tlAnnotationsHere) {
|
D | AnnotationDef.java | 86 result.tlAnnotationsHere.add(new Annotation(ja, adefs)); in fromClass() 92 public AnnotationDef(String name, Set<Annotation> tlAnnotationsHere) { in AnnotationDef() argument 96 if (tlAnnotationsHere != null) { in AnnotationDef() 97 this.tlAnnotationsHere.addAll(tlAnnotationsHere); in AnnotationDef() 101 …public AnnotationDef(String name, Set<Annotation> tlAnnotationsHere, Map<String, ? extends Annotat… in AnnotationDef() argument 102 this(name, tlAnnotationsHere); in AnnotationDef() 127 if (tlAnnotationsHere.contains(Annotations.aRetentionClass)) { in retention() 129 } else if (tlAnnotationsHere.contains(Annotations.aRetentionRuntime)) { in retention() 131 } else if (tlAnnotationsHere.contains(Annotations.aRetentionSource)) { in retention() 143 return (tlAnnotationsHere.contains(Annotations.aTargetTypeUse) in isTypeAnnotation() [all …]
|
D | AScene.java | 333 if (el.tlAnnotationsHere.size() != 334 arg.tlAnnotationsHere.size()) { 337 for (Annotation a : el.tlAnnotationsHere) { 338 if (!arg.tlAnnotationsHere.contains(a)) {
|
D | ATypeElement.java | 86 return tlAnnotationsHere.hashCode() + innerTypes.hashCode(); 106 for (Annotation a : tlAnnotationsHere) {
|
D | ATypeElementWithType.java | 95 if (result && tlAnnotationsHere.isEmpty()) {
|
D | DefCollector.java | 109 for (Annotation tla : e.tlAnnotationsHere) { in collect()
|
D | AClass.java | 177 for (Annotation a : tlAnnotationsHere) {
|
/external/annotation-tools/scene-lib/src/annotations/io/classfile/ |
D | ClassAnnotationSceneReader.java | 623 aElement.tlAnnotationsHere.add(a); in visitEnd() 634 m.returnType.tlAnnotationsHere.add(a); in visitEnd() 643 aElement.tlAnnotationsHere.add(a); in visitEnd() 736 aElement.tlAnnotationsHere.add(makeAnnotation()); in handleField() 749 tlAnnotationsHere.add(makeAnnotation()); in handleField() 762 .tlAnnotationsHere.add(makeAnnotation()); in handleMethodReceiver() 766 .tlAnnotationsHere.add(makeAnnotation()); in handleMethodReceiver() 776 .tlAnnotationsHere.add(makeAnnotation()); in handleMethodLocalVariable() 780 .tlAnnotationsHere.add(makeAnnotation()); in handleMethodLocalVariable() 790 .tlAnnotationsHere.add(makeAnnotation()); in handleMethodObjectCreation() [all …]
|
D | ClassAnnotationSceneWriter.java | 267 for (Annotation tla : aClass.tlAnnotationsHere) { in ensureVisitSceneClassAnnotations() 285 for (Annotation tla : bound.tlAnnotationsHere) { in ensureVisitSceneClassAnnotations() 305 for (Annotation tla : innerType.tlAnnotationsHere) { in ensureVisitSceneClassAnnotations() 576 for (Annotation tla : aField.tlAnnotationsHere) { in ensureVisitSceneFieldAnnotations() 586 for (Annotation tla : aField.type.tlAnnotationsHere) { in ensureVisitSceneFieldAnnotations() 601 for (Annotation tla : fieldInnerEntry.getValue().tlAnnotationsHere) { in ensureVisitSceneFieldAnnotations() 760 for (Annotation tla : aMethod.tlAnnotationsHere) { in ensureVisitMethodDeclarationAnnotations() 777 for (Annotation tla : aMethod.returnType.tlAnnotationsHere) { in ensureVisitReturnTypeAnnotations() 795 for (Annotation tla : innerType.tlAnnotationsHere) { in ensureVisitReturnTypeAnnotations() 819 for (Annotation tla : bound.tlAnnotationsHere) { in ensureVisitTypeParameterBoundAnnotations() [all …]
|
/external/annotation-tools/scene-lib/test/annotations/tests/executable/ |
D | TestSceneLib.java | 103 s1.classes.vivify("Foo").fields.vivify("x").tlAnnotationsHere in testEquals() 106 s2.classes.vivify("Foo").fields.vivify("x").tlAnnotationsHere in testEquals() 108 s2.classes.vivify("Foo").fields.vivify("x").tlAnnotationsHere in testEquals() 113 s1.classes.vivify("Foo").fields.vivify("x").tlAnnotationsHere in testEquals() 122 s1.classes.vivify("Foo").fields.vivify("x").tlAnnotationsHere in testStoreParse1() 137 Arrays.asList(new Integer[] { 0, 0, 3, 2 })))).tlAnnotationsHere in testStoreParse1() 295 s1.classes.vivify("Foo").tlAnnotationsHere in testConflictedDefinition() 297 s1.classes.vivify("Bar").tlAnnotationsHere in testConflictedDefinition() 378 clazz.tlAnnotationsHere.add(tla3); in testEmptyArrayHack() 391 Annotation a3_2 = getAnnotation(clazz2.tlAnnotationsHere, "foo.CombinedAnno"); in testEmptyArrayHack() [all …]
|
D | Example.java | 71 paramType1.tlAnnotationsHere.add(Annotations.aNonNull); in main()
|
/external/annotation-tools/scene-lib/src/annotations/ |
D | AnnotationBuilder.java | 34 Set<Annotation> tlAnnotationsHere; field in AnnotationBuilder 203 def = new AnnotationDef(typeName, tlAnnotationsHere, fieldTypes); in finish() 221 AnnotationBuilder(String typeName, Set<Annotation> tlAnnotationsHere) { in AnnotationBuilder() argument 224 this.tlAnnotationsHere = tlAnnotationsHere; in AnnotationBuilder() 231 return String.format("(AnnotationBuilder %s : %s)", typeName, tlAnnotationsHere); in toString()
|
D | AnnotationFactory.java | 48 public AnnotationBuilder beginAnnotation(String typeName, Set<Annotation> tlAnnotationsHere) { in beginAnnotation() argument 50 return new AnnotationBuilder(typeName, tlAnnotationsHere); in beginAnnotation()
|
D | Annotations.java | 116 adRetention.tlAnnotationsHere.add(aRetentionRuntime); 127 adDocumented.tlAnnotationsHere.add(aDocumented);
|
/external/annotation-tools/scene-lib/src/annotations/io/ |
D | IndexFileWriter.java | 75 printAnnotations(requiredMetaannotations(d.tlAnnotationsHere)); in visitAnnotationDef() 161 printAnnotations(e.tlAnnotationsHere); in printAnnotations() 185 if (e.tlAnnotationsHere.isEmpty() && e.innerTypes.isEmpty() && desc.equals("type")) { in printTypeElementAndInnerTypes() 252 if (e.type.tlAnnotationsHere.isEmpty() && e.type.innerTypes.isEmpty()) { in printAmbElementAndInnerTypes() 426 if (elem != null && !elem.tlAnnotationsHere.isEmpty()) { 443 if (!c.tlAnnotationsHere.isEmpty()) { 478 if (!m.receiver.type.tlAnnotationsHere.isEmpty()
|
D | JavapParser.java | 290 annoMember.tlAnnotationsHere.add(a); in parseAnnotationSection()
|
D | IndexFileParser.java | 551 for (Annotation other : e.tlAnnotationsHere) { in parseAnnotations() 563 e.tlAnnotationsHere.add(tla); in parseAnnotations()
|
/external/annotation-tools/scene-lib/src/annotations/util/ |
D | SceneOps.java | 294 diff(minuend.tlAnnotationsHere, subtrahend.tlAnnotationsHere, in visitElement() 295 difference.tlAnnotationsHere); in visitElement()
|
/external/annotation-tools/annotation-file-utilities/src/annotator/ |
D | Main.java | 367 scene.packages.get(pkg).tlAnnotationsHere.add(anno); in convertInsertion() 459 el.tlAnnotationsHere.add(anno); in convertInsertion() 472 elem.tlAnnotationsHere.add(a); in convertInsertion()
|
/external/annotation-tools/scene-lib/src/annotations/tools/ |
D | IndexFileMerger.java | 260 scene.classes.vivify(key).tlAnnotationsHere.add(afAnno); in main()
|
/external/annotation-tools/annotation-file-utilities/src/annotator/specification/ |
D | IndexFileSpecification.java | 574 element.tlAnnotationsHere.size()); in getElementAnnotations() 575 for (Annotation a : element.tlAnnotationsHere) { in getElementAnnotations()
|