Searched refs:compound (Results 1 - 9 of 9) sorted by relevance

/openjdk10/langtools/test/tools/javac/Diagnostics/6862608/
H A DT6862608a.java14 <T> Comparator<T> compound(Iterable<? extends Comparator<? super T>> it) { method in class:T6862608a
19 Comparator<String> c3 = compound(x);
/openjdk10/langtools/test/tools/javac/generics/inference/6638712/
H A DT6638712a.java13 <T> Comparator<T> compound(Iterable<? extends Comparator<? super T>> it) { return null; } method in class:T6638712a
16 Comparator<String> c3 = compound(x);
/openjdk10/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/code/
H A DLint.java385 public void visitCompound(Attribute.Compound compound) { argument
386 if (compound.type.tsym == syms.suppressWarningsType.tsym) {
387 for (List<Pair<MethodSymbol,Attribute>> v = compound.values;
H A DAttribute.java143 /** A compound annotation element value, the type of which is an
301 public TypeCompound(Compound compound, argument
303 super(compound.type, compound.values, position);
414 void visitCompound(Attribute.Compound compound); argument
H A DTypes.java3621 * Return the minimum type of a closure, a compound type if no
3626 List<Type> compound = closureMin(cl);
3627 if (compound.isEmpty())
3629 else if (compound.tail.isEmpty())
3630 return compound.head;
3632 return makeIntersectionType(compound);
3845 * Perform glb for a list of non-primitive, non-error, non-compound types;
/openjdk10/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/tree/
H A DTreeMaker.java877 public void visitCompound(Attribute.Compound compound) { argument
878 if (compound instanceof Attribute.TypeCompound) {
879 result = visitTypeCompoundInternal((Attribute.TypeCompound) compound);
881 result = visitCompoundInternal(compound);
884 public JCAnnotation visitCompoundInternal(Attribute.Compound compound) { argument
886 for (List<Pair<Symbol.MethodSymbol,Attribute>> values = compound.values; values.nonEmpty(); values=values.tail) {
891 return Annotation(Type(compound.type), args.toList());
893 public JCAnnotation visitTypeCompoundInternal(Attribute.TypeCompound compound) { argument
895 for (List<Pair<Symbol.MethodSymbol,Attribute>> values = compound.values; values.nonEmpty(); values=values.tail) {
900 return TypeAnnotation(Type(compound
[all...]
/openjdk10/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/jvm/
H A DClassReader.java1997 /** A temporary proxy representing a compound attribute.
2031 final CompoundAnnotationProxy compound; field in class:ClassReader.TypeAnnotationProxy
2033 public TypeAnnotationProxy(CompoundAnnotationProxy compound, argument
2035 this.compound = compound;
2132 public void visitCompound(Attribute.Compound compound) { argument
2312 Attribute.Compound compound = deproxyCompound(proxy.compound);
2313 Attribute.TypeCompound typeCompound = new Attribute.TypeCompound(compound, proxy.position);
H A DClassWriter.java839 public void visitCompound(Attribute.Compound compound) { argument
841 writeCompoundAttribute(compound);
856 /** Write a compound attribute excluding the '@' marker. */
/openjdk10/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/comp/
H A DLambdaToMethod.java747 JCBinary compound = make.Binary(JCTree.Tag.AND, prev, eqtest);
748 compound.operator = operators.resolveBinary(compound, JCTree.Tag.AND, syms.booleanType, syms.booleanType);
749 compound.setType(syms.booleanType);
750 return compound;

Completed in 108 milliseconds