Searched refs:TypeCompound (Results 1 - 19 of 19) sorted by relevance

/openjdk10/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/code/
H A DSymbolMetadata.java29 import com.sun.tools.javac.code.Attribute.TypeCompound;
75 private List<Attribute.TypeCompound> type_attributes = List.nil();
81 private List<Attribute.TypeCompound> init_type_attributes = List.nil();
87 private List<Attribute.TypeCompound> clinit_type_attributes = List.nil();
102 public List<Attribute.TypeCompound> getTypeAttributes() {
106 public List<Attribute.TypeCompound> getInitTypeAttributes() {
110 public List<Attribute.TypeCompound> getClassInitTypeAttributes() {
122 public void setTypeAttributes(List<Attribute.TypeCompound> a) {
129 public void setInitTypeAttributes(List<Attribute.TypeCompound> a) {
136 public void setClassInitTypeAttributes(List<Attribute.TypeCompound>
[all...]
H A DTypeMetadata.java175 private List<Attribute.TypeCompound> annos;
177 public static final List<Attribute.TypeCompound> TO_BE_SET = List.nil();
179 public Annotations(List<Attribute.TypeCompound> annos) {
188 public List<Attribute.TypeCompound> getAnnotations() {
H A DTypeAnnotations.java34 import com.sun.tools.javac.code.Attribute.TypeCompound;
301 ListBuffer<Attribute.TypeCompound> typeAnnos = new ListBuffer<>();
302 ListBuffer<Attribute.TypeCompound> onlyTypeAnnos = new ListBuffer<>();
311 Attribute.TypeCompound ta = toTypeCompound(a, pos);
316 Attribute.TypeCompound ta = toTypeCompound(a, pos);
334 List<Attribute.TypeCompound> typeAnnotations = typeAnnos.toList();
418 final List<Attribute.TypeCompound> annotations,
419 final List<Attribute.TypeCompound> onlyTypeAnnotations,
521 Attribute.TypeCompound a = annotations.get(0);
539 private Type rewriteArrayType(ArrayType type, List<TypeCompound> annotation
[all...]
H A DAttribute.java204 && arr.values[0] instanceof Attribute.TypeCompound)
205 return (Attribute.TypeCompound) arr.values[0];
300 public static class TypeCompound extends Compound { class in class:Attribute
301 public TypeCompound(Compound compound, method in class:Attribute.TypeCompound
306 public TypeCompound(Type type, method in class:Attribute.TypeCompound
H A DSymbol.java151 public List<Attribute.TypeCompound> getRawTypeAttributes() {
175 public void appendClassInitTypeAttributes(List<Attribute.TypeCompound> l) {
181 public void appendInitTypeAttributes(List<Attribute.TypeCompound> l) {
187 public void appendUniqueTypeAttributes(List<Attribute.TypeCompound> l) {
193 public List<Attribute.TypeCompound> getClassInitTypeAttributes() {
199 public List<Attribute.TypeCompound> getInitTypeAttributes() {
205 public void setInitTypeAttributes(List<Attribute.TypeCompound> l) {
209 public void setClassInitTypeAttributes(List<Attribute.TypeCompound> l) {
253 public void setTypeAttributes(List<Attribute.TypeCompound> a) {
863 List<Attribute.TypeCompound> candidate
[all...]
H A DPrinter.java199 List<Attribute.TypeCompound> annos = t.getAnnotationMirrors();
H A DType.java387 public Type annotatedType(final List<Attribute.TypeCompound> annos) {
400 public List<Attribute.TypeCompound> getAnnotationMirrors() {
1566 public ModuleType annotatedType(List<Attribute.TypeCompound> annos) {
/openjdk10/langtools/src/jdk.javadoc/share/classes/com/sun/tools/javadoc/main/
H A DAnnotatedTypeImpl.java30 import com.sun.tools.javac.code.Attribute.TypeCompound;
54 List<? extends TypeCompound> tas = type.getAnnotationMirrors();
H A DTypeVariableImpl.java31 import com.sun.tools.javac.code.Attribute.TypeCompound;
145 List<? extends TypeCompound> tas = type.getAnnotationMirrors();
/openjdk10/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/comp/
H A DAnnotate.java30 import com.sun.tools.javac.code.Attribute.TypeCompound;
156 public List<TypeCompound> fromAnnotations(List<JCAnnotation> annotations) {
161 ListBuffer<TypeCompound> buf = new ListBuffer<>();
164 buf.append((TypeCompound) anno.attribute);
385 List<TypeCompound> attrs = (List<TypeCompound>)buf.reverse();
424 public Attribute.TypeCompound attributeTypeAnnotation(JCAnnotation a, Type expectedAnnotationType,
429 if (a.attribute == null || a.type == null || !(a.attribute instanceof Attribute.TypeCompound)) {
430 // Create a new TypeCompound
434 Attribute.TypeCompound t
[all...]
H A DLambdaToMethod.java381 Supplier<List<Attribute.TypeCompound>> source,
382 Consumer<List<Attribute.TypeCompound>> owner,
383 Consumer<List<Attribute.TypeCompound>> lambda) {
385 ListBuffer<Attribute.TypeCompound> ownerTypeAnnos = new ListBuffer<>();
386 ListBuffer<Attribute.TypeCompound> lambdaTypeAnnos = new ListBuffer<>();
388 for (Attribute.TypeCompound tc : source.get()) {
H A DTransTypes.java31 import com.sun.tools.javac.code.Attribute.TypeCompound;
768 List<TypeCompound> mirrors = annotate.fromAnnotations(tree.annotations);
H A DAttr.java1190 List<Attribute.TypeCompound> tas = localEnv.info.scope.owner.getRawTypeAttributes();
/openjdk10/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/jvm/
H A DGen.java33 import com.sun.tools.javac.code.Attribute.TypeCompound;
408 ListBuffer<Attribute.TypeCompound> initTAs = new ListBuffer<>();
410 ListBuffer<Attribute.TypeCompound> clinitTAs = new ListBuffer<>();
466 List<Attribute.TypeCompound> initTAlist = initTAs.toList();
496 private List<Attribute.TypeCompound> getAndRemoveNonFieldTAs(VarSymbol sym) {
497 List<TypeCompound> tas = sym.getRawTypeAttributes();
498 ListBuffer<Attribute.TypeCompound> fieldTAs = new ListBuffer<>();
499 ListBuffer<Attribute.TypeCompound> nonfieldTAs = new ListBuffer<>();
500 for (TypeCompound ta : tas) {
531 void normalizeMethod(JCMethodDecl md, List<JCStatement> initCode, List<TypeCompound> initTA
[all...]
H A DClassWriter.java733 int writeTypeAnnotations(List<Attribute.TypeCompound> typeAnnos, boolean inCode) {
736 ListBuffer<Attribute.TypeCompound> visibles = new ListBuffer<>();
737 ListBuffer<Attribute.TypeCompound> invisibles = new ListBuffer<>();
739 for (Attribute.TypeCompound tc : typeAnnos) {
771 for (Attribute.TypeCompound p : visibles)
780 for (Attribute.TypeCompound p : invisibles)
866 void writeTypeAnnotation(Attribute.TypeCompound c) {
H A DClassReader.java2309 List<Attribute.TypeCompound> deproxyTypeCompoundList(List<TypeAnnotationProxy> proxies) {
2310 ListBuffer<Attribute.TypeCompound> buf = new ListBuffer<>();
2313 Attribute.TypeCompound typeCompound = new Attribute.TypeCompound(compound, proxy.position);
2324 List<Attribute.TypeCompound> newList = deproxyTypeCompoundList(proxies);
H A DCode.java2105 for (Attribute.TypeCompound ta : lv.sym.getRawTypeAttributes()) {
2126 for (Attribute.TypeCompound ta : lv.sym.getRawTypeAttributes()) {
/openjdk10/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/tree/
H A DTreeMaker.java878 if (compound instanceof Attribute.TypeCompound) {
879 result = visitTypeCompoundInternal((Attribute.TypeCompound) compound);
893 public JCAnnotation visitTypeCompoundInternal(Attribute.TypeCompound compound) {
915 JCAnnotation translate(Attribute.TypeCompound a) {
929 return annotationBuilder.translate((Attribute.TypeCompound) a);
/openjdk10/langtools/test/tools/javac/lib/
H A DDPrinter.java1387 if (a instanceof Attribute.TypeCompound) {
1388 Attribute.TypeCompound ta = (Attribute.TypeCompound) a;

Completed in 196 milliseconds