Searched refs:intersectionType (Results 1 – 9 of 9) sorted by relevance
163 IntersectionType intersectionType = type.asIntersectionType(); in parseIntersectionType() local164 assertEquals(2, intersectionType.getElements().size()); in parseIntersectionType()165 assertTrue(intersectionType.getElements().get(0) instanceof ClassOrInterfaceType); in parseIntersectionType()166 …assertEquals("Runnable", intersectionType.getElements().get(0).asClassOrInterfaceType().getNameAsS… in parseIntersectionType()167 assertTrue(intersectionType.getElements().get(1) instanceof ClassOrInterfaceType); in parseIntersectionType()168 …assertEquals("Serializable", intersectionType.getElements().get(1).asClassOrInterfaceType().getNam… in parseIntersectionType()
19 Name 35 "intersectionType"79 35(intersectionType): 34(ptr) Variable Function116 Store 35(intersectionType) 39
205 int intersectionType = HitType.INVALID; in testAttackAgainstVulnerability() local208 for (int x = 0; x < attackCount && intersectionType == HitType.INVALID; x++) { in testAttackAgainstVulnerability()220 intersectionType = hitType; in testAttackAgainstVulnerability()229 return intersectionType; in testAttackAgainstVulnerability()
95 for (TypeMirror intersectionType : t.getBounds()) { in visitIntersection()96 typeVariables.addAll(intersectionType.accept(this, visited)); in visitIntersection()
27 const uint intersectionType = rayQueryGetIntersectionTypeEXT(rayQuery, true);
310 public String visitIntersection(IntersectionType intersectionType, Void v) {313 return getDescriptor(intersectionType.getBounds().get(0));
1069 @Test public void intersectionType() { in intersectionType() method in TypeSpecTest