/external/annotation-tools/scene-lib/src/annotations/el/ |
AField.java | 11 public class AField extends ADeclaration { 12 static <K extends Object> VivifyingMap<K, AField> 14 return new VivifyingMap<K, AField>( 15 new LinkedHashMap<K, AField>()) { 17 public AField createValueFor(K k) { 18 return new AField("" + k); 22 public boolean subPrune(AField v) { 31 AField(String fieldName) { 36 AField(AField field) [all...] |
ABlock.java | 16 public final VivifyingMap<LocalLocation, AField> locals = 17 AField.<LocalLocation>newVivifyingLHMap_AF(); 68 for (Map.Entry<LocalLocation, AField> em : locals.entrySet()) {
|
AMethod.java | 23 public final AField receiver; // initialized in constructor 26 public final VivifyingMap<Integer, AField> parameters = 27 AField.<Integer>newVivifyingLHMap_AF(); 40 receiver = new AField("receiver parameter type of " + methodName); 114 for (Map.Entry<Integer, AField> em : parameters.entrySet()) {
|
ElementVisitor.java | 12 R visitField(AField el, T arg);
|
DefCollector.java | 145 private void collect(AField f) 161 for (AField l : m.body.locals.values()) { 187 for (AField f : c.fields.values()) {
|
AScene.java | 296 public Void visitField(AField el, AElement arg) { 297 AField f = (AField) arg;
|
AClass.java | 85 public final VivifyingMap<String, AField> fields = 86 AField.<String>newVivifyingLHMap_AF();
|
/external/annotation-tools/annotation-file-utilities/src/annotator/specification/ |
IndexFileSpecification.java | 22 import annotations.el.AField; 242 for (Map.Entry<String, AField> entry : clazz.fields.entrySet()) { 263 private void parseField(CriterionList clist, String fieldName, AField field) { 632 for (Entry<Integer, AField> entry : method.parameters.entrySet()) { 634 AField param = entry.getValue(); 650 for (Entry<LocalLocation, AField> entry : block.locals.entrySet()) { 716 for (Entry<Integer, AField> entry : lambda.parameters.entrySet()) { 718 AField param = entry.getValue();
|
/external/annotation-tools/scene-lib/src/annotations/io/ |
IndexFileWriter.java | 23 import annotations.el.AField; 460 for (Map. Entry<String, AField> fe 463 AField f = fe.getValue(); 488 AField> le : m.body.locals.entrySet()) {
|
IndexFileParser.java | 42 import annotations.el.AField; 777 AField f = c.fields.vivify(name); 870 AField p = m.parameters.vivify(idx); [all...] |
/external/annotation-tools/scene-lib/src/annotations/tools/ |
IndexFileMerger.java | 23 import annotations.el.AField; 210 public Void visitField(AField el, Void v) {
|
/external/annotation-tools/scene-lib/src/annotations/io/classfile/ |
ClassAnnotationSceneWriter.java | 504 private final AElement aField; 513 this.aField = aClass.fields.vivify(name); 526 if (aField.lookup(classDescToName(desc)) != null 543 if (aField.lookup(classDescToName(desc)) != null 576 for (Annotation tla : aField.tlAnnotationsHere) { 586 for (Annotation tla : aField.type.tlAnnotationsHere) { 599 aField.type.innerTypes.entrySet()) { 856 for (Map.Entry<LocalLocation, AField> entry : [all...] |
ClassAnnotationSceneReader.java | 148 AField aField = aClass.fields.vivify(name); 149 return new FieldAnnotationSceneReader(name, desc, signature, value, aField); 640 // } else if (a.def.isTypeAnnotation() && (aElement instanceof AField)) { [all...] |
/external/annotation-tools/scene-lib/src/annotations/util/ |
SceneOps.java | 16 import annotations.el.AField; 228 public Void visitField(AField minuend, Pair<AElement, AElement> eltPair) {
|
/external/annotation-tools/annotation-file-utilities/src/annotator/ |
Main.java | 35 import annotations.el.AField; 265 public Void visitField(AField el0, AElement el) { [all...] |
/external/annotation-tools/scene-lib/test/annotations/tests/executable/ |
TestSceneLib.java | 152 AField l2 =
|
/external/annotation-tools/annotation-file-utilities/ |
annotation-file-utilities.jar | |