Searched refs:intfs (Results 1 – 5 of 5) sorted by relevance
63 Class<?>[] intfs = Object[].class.getInterfaces(); in getInterfaces() local66 interfaces = new CtClass[intfs.length]; in getInterfaces()67 for (int i = 0; i < intfs.length; i++) in getInterfaces()68 interfaces[i] = pool.get(intfs[i].getName()); in getInterfaces()84 CtClass[] intfs = getInterfaces(); in subtypeOf()85 for (int i = 0; i < intfs.length; i++) in subtypeOf()86 if (intfs[i].subtypeOf(clazz)) in subtypeOf()
348 int[] intfs; in begin() local350 intfs = null; in begin()352 intfs = constPool.addClassInfo(exceptions); in begin()354 begin(accessFlags, nameIndex, descIndex, intfs, aw); in begin()
537 CtClass[] intfs = c.getInterfaces(); in getSuperInterface() local538 for (int i = 0; i < intfs.length; i++) in getSuperInterface()539 if (intfs[i].getName().equals(interfaceName)) in getSuperInterface()540 return intfs[i]; in getSuperInterface()
355 CtClass[] intfs = cc.getInterfaces(); in testCtArray() local356 assertEquals(Cloneable.class.getName(), intfs[0].getName()); in testCtArray()357 assertEquals(java.io.Serializable.class.getName(), intfs[1].getName()); in testCtArray()378 CtClass[] intfs = at.getInterfaces(); in testArrayType() local379 assertEquals(intfs.length, 2); in testArrayType()380 assertEquals(intfs[0].getName(), java.lang.Cloneable.class.getName()); in testArrayType()381 assertEquals(intfs[1].getName(), java.io.Serializable.class.getName()); in testArrayType()384 assertTrue(at.subtypeOf(intfs[0])); in testArrayType()385 assertTrue(at.subtypeOf(intfs[1])); in testArrayType()386 assertTrue(at.subtypeOf(intfs[1])); in testArrayType()
564 InterfaceTypeImpl[] intfs; in getInterfaces() local566 intfs = JDWP.ReferenceType.Interfaces. in getInterfaces()571 return Arrays.asList((InterfaceType[])intfs); in getInterfaces()