Home
last modified time | relevance | path

Searched refs:intersectionType (Results 1 – 9 of 9) sorted by relevance

/external/javaparser/javaparser-core-testing/src/test/java/com/github/javaparser/
DJavaParserTest.java163 IntersectionType intersectionType = type.asIntersectionType(); in parseIntersectionType() local
164 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()
/external/deqp-deps/glslang/Test/baseResults/
DrayQuery-types.comp.out19 Name 35 "intersectionType"
79 35(intersectionType): 34(ptr) Variable Function
116 Store 35(intersectionType) 39
/external/angle/third_party/vulkan-deps/glslang/src/Test/baseResults/
DrayQuery-types.comp.out19 Name 35 "intersectionType"
79 35(intersectionType): 34(ptr) Variable Function
116 Store 35(intersectionType) 39
/external/replicaisland/src/com/replica/replicaisland/
DGameObjectCollisionSystem.java205 int intersectionType = HitType.INVALID; in testAttackAgainstVulnerability() local
208 for (int x = 0; x < attackCount && intersectionType == HitType.INVALID; x++) { in testAttackAgainstVulnerability()
220 intersectionType = hitType; in testAttackAgainstVulnerability()
229 return intersectionType; in testAttackAgainstVulnerability()
/external/auto/factory/src/main/java/com/google/auto/factory/processor/
DTypeVariables.java95 for (TypeMirror intersectionType : t.getBounds()) { in visitIntersection()
96 typeVariables.addAll(intersectionType.accept(this, visited)); in visitIntersection()
/external/deqp-deps/glslang/Test/
DrayQuery-types.comp27 const uint intersectionType = rayQueryGetIntersectionTypeEXT(rayQuery, true);
/external/angle/third_party/vulkan-deps/glslang/src/Test/
DrayQuery-types.comp27 const uint intersectionType = rayQueryGetIntersectionTypeEXT(rayQuery, true);
/external/dagger2/java/dagger/internal/codegen/langmodel/
DDaggerElements.java310 public String visitIntersection(IntersectionType intersectionType, Void v) {
313 return getDescriptor(intersectionType.getBounds().get(0));
/external/javapoet/src/test/java/com/squareup/javapoet/
DTypeSpecTest.java1069 @Test public void intersectionType() { in intersectionType() method in TypeSpecTest