/external/apache-commons-bcel/src/main/java/org/apache/bcel/util/ |
D | ClassPath.java | 209 return getClassFile(name, suffix).getInputStream(); in getInputStream() 264 public ClassFile getClassFile( final String name, final String suffix ) throws IOException { in getClassFile() method in ClassPath 285 final ClassFile cf = path.getClassFile(name, suffix); in getClassFileInternal() 300 public ClassFile getClassFile( final String name ) throws IOException { in getClassFile() method in ClassPath 301 return getClassFile(name, ".class"); in getClassFile() 357 return getClassFile(name, suffix).getPath(); in getPath() 362 abstract ClassFile getClassFile( String name, String suffix ) throws IOException; in getClassFile() method in ClassPath.PathEntry 429 ClassFile getClassFile( final String name, final String suffix ) throws IOException { in getClassFile() method in ClassPath.Dir 506 ClassFile getClassFile( final String name, final String suffix ) throws IOException {
|
/external/javassist/src/test/javassist/ |
D | JvstTest5.java | 53 cc.getClassFile().compact(); in testTypeAnno() 119 ClassFile cf = cc.getClassFile(); in testInnerClassAttributeRemove() 160 ClassFile ccFile = cc.getClassFile(); in testJIRA256() 271 … = (AnnotationsAttribute)cc.getClassFile().getAttribute(AnnotationsAttribute.invisibleTag); in testRemoveAnnotatino() 273 AttributeInfo ai = cc.getClassFile().removeAttribute(AnnotationsAttribute.invisibleTag); in testRemoveAnnotatino() 424 ClassFile cf = cc.getClassFile(); in testNestHostAttribute() 432 ClassFile cf = cc.getClassFile(); in testNestMembersAttribute() 446 cc.getClassFile().compact(); in testNestMembersAttributeCopy() 453 cc.getClassFile().compact(); in testNestHostAttributeCopy()
|
D | ClassPoolBench.java | 15 cc.getClassFile(); in accessClass()
|
D | JvstTest3.java | 170 cc.getClassFile(); in testCheckModifyAndPruned() 231 ClassFile cf = cc.getClassFile(); in getPublicInner() 325 ClassFile cf = c.getClassFile(); in testNewAnnotation() 739 cc2.getClassFile(); in testCopyAnnotation() 959 cTst.getClassFile().setMajorVersion(ClassFile.JAVA_6); in frameTypeTest()
|
D | JvstTest4.java | 28 m1.getMethodInfo().rebuildStackMapIf6(cc.getClassPool(), cc.getClassFile()); in testInsertLocalVars() 31 m2.getMethodInfo().rebuildStackMapIf6(cc.getClassPool(), cc.getClassFile()); in testInsertLocalVars() 93 m3.getMethodInfo().rebuildStackMapIf6(cc.getClassPool(), cc.getClassFile()); in testInsGap() 422 ClassFile cf = cc.getClassFile(); in testGetAllRef() 1106 ClassFile cf = cc.getClassFile(); in testAnnotationLoader()
|
D | JvstTest2.java | 916 cc.getClassFile().prune(); in testConstField()
|
/external/javassist/src/main/javassist/compiler/ |
D | AccessorMaker.java | 62 ClassFile cf = clazz.getClassFile(); // turn on the modified flag. in getConstructor() 120 ClassFile cf = clazz.getClassFile(); // turn on the modified flag. in getMethodAccessor() 172 ClassFile cf = clazz.getClassFile(); // turn on the modified flag. in getFieldGetter() 223 ClassFile cf = clazz.getClassFile(); // turn on the modified flag. in getFieldSetter()
|
/external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/javassistmodel/ |
D | JavassistClassDeclaration.java | 165 return ctClass.getClassFile().getInterfaces(); in getInterfaceFQNs() 169 return ctClass.getClassFile().getSuperclass(); in getSuperclassFQN() 309 if (ctClass.getClassFile().getSuperclass() == null) { in getSuperClass() 313 …peSolver.solveType(JavassistUtils.internalNameToCanonicalName(ctClass.getClassFile().getSuperclass… in getSuperClass() 327 return Arrays.stream(ctClass.getClassFile().getInterfaces()) in getInterfaces()
|
D | JavassistEnumDeclaration.java | 97 String superClassName = ctClass.getClassFile().getSuperclass(); in getAncestors() 110 for (String interfazeName : ctClass.getClassFile().getInterfaces()) { in getAncestors() 271 return ctClass.getClassFile().getInterfaces(); in getInterfaceFQNs()
|
D | JavassistInterfaceDeclaration.java | 76 … return Arrays.stream(ctClass.getClassFile().getInterfaces()).map(i -> typeSolver.solveType(i)) in getInterfacesExtended() 247 return ctClass.getClassFile().getInterfaces(); in getInterfaceFQNs()
|
/external/javassist/src/test/javassist/compiler/ |
D | CodeTest.java | 15 Bytecode b = new Bytecode(c.getClassFile().getConstPool(), 0, 0); in main()
|
/external/javassist/src/test/javassist/bytecode/ |
D | StackMapTest.java | 52 Iterator it = cc.getClassFile().getMethods().iterator(); in rebuildStackMaps() 83 Iterator it = cc.getClassFile().getMethods().iterator(); in rebuildStackMaps2() 711 ClassFile cf = loader.makeClass("javassist.bytecode.StackMapTestHibTest").getClassFile(); in testForHibernate() 784 ClassFile cf = cc.getClassFile(); in testJsr() 818 …MethodInfo minfo = getMethodInfo(cc.getClassFile(), "getFields", "(Ljava/util/ArrayList;Ljavassist… in tstCtClassType()
|
D | BytecodeTest.java | 105 Bytecode code = new Bytecode(cc.getClassFile().getConstPool(), 2, 300); in test2byteLocalVar() 413 ClassFile cf = cc.getClassFile(); in testAddClassInfo() 785 ClassFile cf = cc.getClassFile(); in testInvokeDynamic() 825 assertEquals("test4.InvokeDyn", cc2.getClassFile().getName()); in testInvokeDynamic() 826 ConstPool cPool2 = cc2.getClassFile().getConstPool(); in testInvokeDynamic()
|
/external/apache-commons-bcel/src/main/java/org/apache/bcel/ |
D | Repository.java | 90 return path.getClassFile(class_name); in lookupClassFile()
|
/external/javassist/src/main/javassist/expr/ |
D | Instanceof.java | 113 thisClass.getClassFile(); // to call checkModify(). in replace()
|
D | Cast.java | 110 thisClass.getClassFile(); // to call checkModify(). in replace()
|
D | NewExpr.java | 185 thisClass.getClassFile(); // to call checkModify(). in replace()
|
D | MethodCall.java | 196 thisClass.getClassFile(); // to call checkModify(). in replace()
|
D | NewArray.java | 193 thisClass.getClassFile(); // to call checkModify(). in replace2()
|
D | FieldAccess.java | 175 thisClass.getClassFile(); // to call checkModify(). in replace()
|
/external/javassist/src/main/javassist/ |
D | SerialVersionUID.java | 87 ClassFile classFile = clazz.getClassFile(); in calculateDefault()
|
D | CtClass.java | 231 public ClassFile getClassFile() { in getClassFile() method in CtClass
|
D | CtClassType.java | 385 ClassFile cf = getClassFile(); in setGenericSignature()
|
/external/javassist/src/main/javassist/tools/reflect/ |
D | Reflection.java | 123 rebuildClassFile(c.getClassFile()); in start()
|
/external/icu/tools/srcgen/currysrc/libs/ |
D | org.eclipse.jdt.core_3.14.0.v20180528-0519.jar | META-INF/MANIFEST.MF
META-INF/ECLIPSE_.SF
META-INF/ECLIPSE_ ... |