Home
last modified time | relevance | path

Searched refs:IntersectionType (Results 1 – 25 of 112) sorted by relevance

12345

/aosp_15_r20/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/type/
H A DIntersectionType.java55 public class IntersectionType extends Type implements NodeWithAnnotations<IntersectionType> { class
61 public IntersectionType(NodeList<ReferenceType> elements) { in IntersectionType() method in IntersectionType
69 public IntersectionType(TokenRange tokenRange, NodeList<ReferenceType> elements) { in IntersectionType() method in IntersectionType
93 public IntersectionType setElements(final NodeList<ReferenceType> elements) { in setElements()
96 return (IntersectionType) this; in setElements()
107 public IntersectionType setAnnotations(NodeList<AnnotationExpr> annotations) { in setAnnotations()
108 return (IntersectionType) super.setAnnotations(annotations); in setAnnotations()
132 public IntersectionType clone() { in clone()
133 return (IntersectionType) accept(new CloneVisitor(), null); in clone()
164 public IntersectionType asIntersectionType() { in asIntersectionType()
[all …]
H A DType.java183 public IntersectionType asIntersectionType() { in asIntersectionType()
266 public void ifIntersectionType(Consumer<IntersectionType> action) { in ifIntersectionType()
311 public Optional<IntersectionType> toIntersectionType() { in toIntersectionType()
/aosp_15_r20/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/type/
H A DIntersectionType.java22 public class IntersectionType extends Type<IntersectionType> implements NodeWithAnnotations<Interse… class
26 public IntersectionType(Range range, List<ReferenceType> elements) { in IntersectionType() method in IntersectionType
31 public IntersectionType(List<ReferenceType> elements) { in IntersectionType() method in IntersectionType
50 public IntersectionType setElements(List<ReferenceType> elements) { in setElements()
/aosp_15_r20/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/expected_output/
H A Dcom_github_javaparser_ast_type_IntersectionType.txt1 …Line 28) setElements(elements) ==> com.github.javaparser.ast.type.IntersectionType.setElements(jav…
2 …Line 33) setElements(elements) ==> com.github.javaparser.ast.type.IntersectionType.setElements(jav…
3 …hub.javaparser.ast.visitor.GenericVisitor.visit(com.github.javaparser.ast.type.IntersectionType, A)
4 …github.javaparser.ast.visitor.VoidVisitor.visit(com.github.javaparser.ast.type.IntersectionType, A)
/aosp_15_r20/external/auto/common/src/main/java/com/google/auto/common/
H A DMoreTypes.java46 import javax.lang.model.type.IntersectionType;
251 public Boolean visitIntersection(IntersectionType a, EqualVisitorParam p) { in visitIntersection()
253 IntersectionType b = (IntersectionType) p.type; in visitIntersection()
674 public static IntersectionType asIntersection(TypeMirror maybeIntersectionType) { in asIntersection()
678 private static final class IntersectionTypeVisitor extends CastingTypeVisitor<IntersectionType> {
686 public IntersectionType visitIntersection(IntersectionType type, Void ignore) { in visitIntersection()
/aosp_15_r20/external/auto/value/src/main/java/com/google/auto/value/processor/
H A DMissingTypes.java24 import javax.lang.model.type.IntersectionType;
128 public Void visitIntersection(IntersectionType t, TypeMirrorSet visiting) { in visitIntersection()
H A DNullables.java37 import javax.lang.model.type.IntersectionType;
185 public Optional<AnnotationMirror> visitIntersection(IntersectionType t, Void unused) {
/aosp_15_r20/external/doclava/doclet_adapter/src/main/java/com/google/doclava/javadoc/
H A DTypeVariableImpl.java37 import javax.lang.model.type.IntersectionType;
64 … public Stream<? extends TypeMirror> visitIntersection(IntersectionType t, Void o) { in bounds()
/aosp_15_r20/external/turbine/javatests/com/google/turbine/processing/
H A DTurbineTypeMirrorTest.java37 import javax.lang.model.type.IntersectionType;
191 IntersectionType t = in intersection()
192 (IntersectionType) in intersection()
/aosp_15_r20/external/auto/factory/src/main/java/com/google/auto/factory/processor/
H A DTypeVariables.java26 import javax.lang.model.type.IntersectionType;
89 public ImmutableSet<TypeVariable> visitIntersection(IntersectionType t, Set<Element> visited) { in visitIntersection()
/aosp_15_r20/external/javaparser/javaparser-core-testing/src/test/java/com/github/javaparser/
H A DJavaParserTest.java57 import com.github.javaparser.ast.type.IntersectionType;
162 assertTrue(type instanceof IntersectionType); in parseIntersectionType()
163 IntersectionType intersectionType = type.asIntersectionType(); in parseIntersectionType()
/aosp_15_r20/external/kotlinpoet/interop/kotlin-metadata/src/main/kotlin/com/squareup/kotlinpoet/metadata/classinspectors/
H A DJvmDescriptorUtils.kt28 import javax.lang.model.type.IntersectionType
193 override fun visitIntersection(t: IntersectionType, types: Types): String = visitUnknown(t, types)
/aosp_15_r20/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/metamodel/
H A DIntersectionTypeMetaModel.java8 …super(superBaseNodeMetaModel, com.github.javaparser.ast.type.IntersectionType.class, "Intersection… in IntersectionTypeMetaModel()
/aosp_15_r20/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/visitor/
H A DNoCommentEqualsVisitor.java373 public Boolean visit(final IntersectionType n, final Visitable arg) { in visit()
374 final IntersectionType n2 = (IntersectionType) arg; in visit()
H A DEqualsVisitor.java465 public Boolean visit(final IntersectionType n, final Visitable arg) { in visit()
466 final IntersectionType n2 = (IntersectionType) arg; in visit()
H A DVoidVisitor.java124 void visit(IntersectionType n, A arg); in visit()
H A DGenericVisitor.java85 R visit(IntersectionType n, A arg); in visit()
H A DObjectIdentityHashCodeVisitor.java209 public Integer visit(final IntersectionType n, final Void arg) { in visit()
H A DObjectIdentityEqualsVisitor.java152 public Boolean visit(final IntersectionType n, final Visitable arg) { in visit()
/aosp_15_r20/external/turbine/java/com/google/turbine/processing/
H A DTurbineTypeMirror.java52 import javax.lang.model.type.IntersectionType;
596 static class TurbineIntersectionType extends TurbineTypeMirror implements IntersectionType {
/aosp_15_r20/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/visitor/
H A DEqualsVisitor.java669 @Override public Boolean visit(final IntersectionType n1, final Node arg) { in visit()
670 final IntersectionType n2 = (IntersectionType) arg; in visit()
H A DVoidVisitor.java130 void visit(IntersectionType n, A arg); in visit()
H A DGenericVisitor.java130 R visit(IntersectionType n, A arg); in visit()
H A DCloneVisitor.java468 public Node visit(IntersectionType _n, Object _arg) { in visit()
472 IntersectionType r = new IntersectionType(_n.getRange(), elements); in visit()
/aosp_15_r20/external/javaparser/javaparser-core-metamodel-generator/src/main/java/com/github/javaparser/generator/metamodel/
H A DMetaModelGenerator.java139 add(IntersectionType.class);

12345