| /external/javassist/src/main/javassist/ |
| ClassClassPath.java | 45 private Class thisClass; 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";
|
| /dalvik/vm/mterp/c/ |
| gotoTargets.cpp | 316 ClassObject* thisClass; 353 thisClass = thisPtr->clazz; 360 methodToCall = dvmFindInterfaceMethodInCache(thisClass, ref, curMethod, 363 self->callsiteClass = thisClass; [all...] |
| /dalvik/vm/hprof/ |
| HprofHeap.cpp | 270 const ClassObject *thisClass = (const ClassObject *)obj; 273 int sFieldCount = thisClass->sfieldCount; 290 hprofAddIdToRecord(rec, hprofLookupClassId(thisClass)); 291 hprofAddU4ToRecord(rec, stackTraceSerialNumber(thisClass)); 292 hprofAddIdToRecord(rec, hprofLookupClassId(thisClass->super)); 293 hprofAddIdToRecord(rec, (hprof_object_id)thisClass->classLoader); 304 hprofAddU4ToRecord(rec, thisClass->objectSize); // instance size 322 const StaticField *f = &thisClass->sfields[i]; 343 int iFieldCount = thisClass->ifieldCount; 346 const InstField *f = &thisClass->ifields[i] [all...] |
| /dalvik/dexgen/src/com/android/dexgen/dex/file/ |
| ClassDataItem.java | 45 private final CstType thisClass; 75 * @param thisClass {@code non-null;} what class this data is for, just 78 public ClassDataItem(CstType thisClass) { 81 if (thisClass == null) { 82 throw new NullPointerException("thisClass == null"); 85 this.thisClass = thisClass; 348 thisClass.toHuman());
|
| ClassDefItem.java | 49 private final CstType thisClass; 82 * @param thisClass {@code non-null;} type constant for this class 90 public ClassDefItem(CstType thisClass, int accessFlags, 92 if (thisClass == null) { 93 throw new NullPointerException("thisClass == null"); 105 this.thisClass = thisClass; 111 this.classData = new ClassDataItem(thisClass); 137 typeIds.intern(thisClass); 176 int classIdx = typeIds.indexOf(thisClass); [all...] |
| /dalvik/dx/src/com/android/dx/dex/cf/ |
| AttributeTranslator.java | 115 CstType thisClass = cf.getThisClass(); 122 translateInnerClasses(thisClass, attribs, 262 * @param thisClass {@code non-null;} type representing the class being 270 private static Annotations translateInnerClasses(CstType thisClass, 292 if (innerClass.equals(thisClass)) { 294 } else if (thisClass.equals(item.getOuterClass())) { 317 "(" + thisClass.toHuman() + 397 CstType thisClass = cf.getThisClass(); 401 new Annotation(thisClass, AnnotationVisibility.EMBEDDED);
|
| CfTranslator.java | 119 CstType thisClass = cf.getThisClass(); 124 new ClassDefItem(thisClass, classAccessFlags, 146 CstType thisClass = cf.getThisClass(); 153 CstFieldRef field = new CstFieldRef(thisClass, one.getNat()); 226 CstType thisClass = cf.getThisClass(); 233 CstMethodRef meth = new CstMethodRef(thisClass, one.getNat()); 263 = thisClass.getClassType().getDescriptor()
|
| /dalvik/dx/src/com/android/dx/dex/file/ |
| ClassDataItem.java | 42 private final CstType thisClass; 72 * @param thisClass {@code non-null;} what class this data is for, just 75 public ClassDataItem(CstType thisClass) { 78 if (thisClass == null) { 79 throw new NullPointerException("thisClass == null"); 82 this.thisClass = thisClass; 345 thisClass.toHuman());
|
| ClassDefItem.java | 47 private final CstType thisClass; 80 * @param thisClass {@code non-null;} type constant for this class 88 public ClassDefItem(CstType thisClass, int accessFlags, 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/expr/ |
| Cast.java | 68 return thisClass.getClassPool().getCtClass(name); 90 thisClass.getClassFile(); // to call checkModify(). 95 Javac jc = new Javac(thisClass); 96 ClassPool cp = thisClass.getClassPool();
|
| Expr.java | 47 CtClass thisClass; 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, thisMethod, context, oldIterator, endPos) [all...] |
| FieldAccess.java | 89 return thisClass.getClassPool().get(getClassName()); 150 thisClass.getClassFile(); // to call checkModify(). 155 Javac jc = new Javac(thisClass); 162 thisClass.getClassPool());
|
| Instanceof.java | 71 return thisClass.getClassPool().getCtClass(name); 93 thisClass.getClassFile(); // to call checkModify(). 98 Javac jc = new Javac(thisClass); 99 ClassPool cp = thisClass.getClassPool();
|
| MethodCall.java | 75 return thisClass.getClassPool().get(getClassName()); 157 thisClass.getClassPool()); 166 thisClass.getClassPool()); 179 thisClass.getClassFile(); // to call checkModify(). 203 Javac jc = new Javac(thisClass); 204 ClassPool cp = thisClass.getClassPool();
|
| NewArray.java | 90 return Descriptor.toCtClass(desc, thisClass.getClassPool()); 173 thisClass.getClassFile(); // to call checkModify(). 206 retType = Descriptor.toCtClass(desc, thisClass.getClassPool()); 208 Javac jc = new Javac(thisClass);
|
| NewExpr.java | 83 return thisClass.getClassPool().get(newTypeName); 136 return Descriptor.getParameterTypes(desc, thisClass.getClassPool()); 162 thisClass.getClassFile(); // to call checkModify(). 182 Javac jc = new Javac(thisClass); 183 ClassPool cp = thisClass.getClassPool();
|
| /sdk/swtmenubar/src-darwin/com/android/menubar/internal/ |
| MenuBarEnhancerCocoa.java | 287 Class<?> thisClass = args[i].getClass(); 288 if (thisClass == Integer.class) 290 else if (thisClass == Long.class) 292 else if (thisClass == Byte.class) 294 else if (thisClass == Boolean.class) 297 signature[i] = thisClass;
|
| /dalvik/dx/src/com/android/dx/cf/direct/ |
| DirectClassFile.java | 110 private CstType thisClass; 266 return thisClass; 478 thisClass = (CstType) pool.get(cpi); 487 observer.parsed(bytes, at + 2, 2, "this_class: " + thisClass); 506 String thisClassName = thisClass.getClassType().getClassName(); 524 new FieldListParser(this, thisClass, at, attributeFactory); 530 new MethodListParser(this, thisClass, at, attributeFactory);
|
| /external/javassist/src/main/javassist/bytecode/ |
| ClassFileWriter.java | 37 * int thisClass = cpw.addClassInfo("sample/Test"); 57 * byte[] classfile = cfw.end(AccessFlag.PUBLIC, thisClass, superClass, 80 int thisClass, superClass; 118 * @param thisClass this class. an index indicating its <code>CONSTANT_Class_info</code>. 127 public byte[] end(int accessFlags, int thisClass, int superClass, 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);
|
| ClassFile.java | 36 int thisClass; 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);
|
| /dalvik/vm/interp/ |
| Jit.cpp | 701 * + thisClass (new) 705 const ClassObject* thisClass, 710 self->trace[currTraceRun].info.meta = thisClass ? 711 (void *) thisClass->descriptor : NULL; 715 self->trace[currTraceRun].info.meta = thisClass ? 716 (void *) thisClass->classLoader : NULL; 730 * + thisClass (existing entry) 779 const ClassObject *thisClass = self->callsiteClass; [all...] |
| /dalvik/vm/mterp/out/ |
| InterpC-allstubs.cpp | [all...] |
| InterpC-portable.cpp | [all...] |
| InterpC-x86-atom.cpp | [all...] |
| InterpC-x86.cpp | [all...] |