Searched defs:thisClass (Results 1 - 11 of 11) sorted by relevance

/external/javassist/src/main/javassist/
H A DClassClassPath.java45 private Class thisClass; field in class:ClassClassPath
54 thisClass = c;
58 /* The value of thisClass was this.getClass() in early versions:
60 * thisClass = this.getClass();
74 return thisClass.getResourceAsStream(jarname);
84 return thisClass.getResource(jarname);
94 return thisClass.getName() + ".class";
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DClassDataItem.java42 private final CstType thisClass; field in class:ClassDataItem
72 * @param thisClass {@code non-null;} what class this data is for, just
75 public ClassDataItem(CstType thisClass) { argument
78 if (thisClass == null) {
79 throw new NullPointerException("thisClass == null");
82 this.thisClass = thisClass;
345 thisClass.toHuman());
H A DClassDefItem.java47 private final CstType thisClass; field in class:ClassDefItem
80 * @param thisClass {@code non-null;} type constant for this class
88 public ClassDefItem(CstType thisClass, int accessFlags, argument
90 if (thisClass == null) {
91 throw new NullPointerException("thisClass == null");
103 this.thisClass = thisClass;
109 this.classData = new ClassDataItem(thisClass);
135 typeIds.intern(thisClass);
174 int classIdx = typeIds.indexOf(thisClass);
[all...]
/external/javassist/src/main/javassist/compiler/
H A DJavac.java48 * @param thisClass the class that a compiled method/field
51 public Javac(CtClass thisClass) { argument
52 this(new Bytecode(thisClass.getClassFile2().getConstPool(), 0, 0),
53 thisClass);
61 * @param thisClass the class that a compiled method/field
64 public Javac(Bytecode b, CtClass thisClass) { argument
65 gen = new JvstCodeGen(b, thisClass, thisClass.getClassPool());
H A DMemberCodeGen.java28 protected CtClass thisClass; field in class:MemberCodeGen
36 thisClass = cc;
45 ClassFile cf = thisClass.getClassFile2();
61 public CtClass getThisClass() { return thisClass; }
67 return MemberResolver.javaToJvmName(thisClass.getName());
75 MemberResolver.getSuperclass(thisClass).getName());
80 bytecode.addInvokespecial(MemberResolver.getSuperclass(thisClass),
460 targetClass = thisClass;
471 targetClass = thisClass;
561 found = resolver.lookupMethod(targetClass, thisClass, thisMetho
[all...]
H A DTypeChecker.java40 protected CtClass thisClass; field in class:TypeChecker
45 thisClass = cc;
114 return MemberResolver.javaToJvmName(thisClass.getName());
122 MemberResolver.getSuperclass(thisClass).getName());
633 targetClass = thisClass;
638 targetClass = MemberResolver.getSuperclass(thisClass);
640 targetClass = thisClass;
705 = resolver.lookupMethod(targetClass, thisClass, thisMethod,
804 CtField f = thisClass.getField(name);
/external/javassist/src/main/javassist/expr/
H A DExpr.java47 CtClass thisClass; field in class:Expr
60 thisClass = declaring;
70 public CtClass getEnclosingClass() { return thisClass; }
100 CtBehavior[] cb = thisClass.getDeclaredBehaviors();
105 CtConstructor init = thisClass.getClassInitializer();
132 ClassPool pool = thisClass.getClassPool();
204 ClassFile cf = thisClass.getClassFile2();
258 // The implementation of replace() should call thisClass.checkModify()
259 // so that isModify() will return true. Otherwise, thisClass.classfile
320 if (ed.doit(thisClass, thisMetho
[all...]
/external/javassist/src/main/javassist/bytecode/
H A DClassFile.java36 int thisClass; field in class:ClassFile
125 thisClass = constPool.getThisClassInfo();
188 thisClass = cp.getThisClassInfo();
766 thisClass = in.readUnsignedShort();
767 constPool.setThisClassInfo(thisClass);
794 thisclassname = constPool.getClassInfo(thisClass);
808 out.writeShort(thisClass);
H A DClassFileWriter.java37 * int thisClass = cpw.addClassInfo("sample/Test");
57 * byte[] classfile = cfw.end(AccessFlag.PUBLIC, thisClass, superClass,
80 int thisClass, superClass; field in class:ClassFileWriter
118 * @param thisClass this class. an index indicating its <code>CONSTANT_Class_info</code>.
127 public byte[] end(int accessFlags, int thisClass, int superClass, argument
131 output.writeShort(thisClass);
161 * @param thisClass this class. an index indicating its <code>CONSTANT_Class_info</code>.
171 int accessFlags, int thisClass, int superClass,
178 out.writeShort(thisClass);
170 end(DataOutputStream out, int accessFlags, int thisClass, int superClass, int[] interfaces, AttributeWriter aw) argument
/external/javassist/src/main/javassist/util/proxy/
H A DProxyFactory.java162 private Class thisClass; field in class:ProxyFactory
340 thisClass = null;
418 if (thisClass == null) {
429 Class result = thisClass;
430 thisClass = null;
481 thisClass = (Class)reference.get();
482 if (thisClass != null) {
487 details = new ProxyDetails(signature, thisClass, factoryWriteReplace);
501 thisClass = FactoryHelper.toClass(cf, cl, getDomain());
515 if (thisClass !
[all...]
/external/dexmaker/lib/
H A Djarjar.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/tonicsystems/ com/tonicsystems/jarjar/ com/tonicsystems/jarjar/AbstractDepHandler ...

Completed in 688 milliseconds