/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 | 283 ClassObject* thisClass; 310 thisClass = thisPtr->clazz; 316 methodToCall = dvmFindInterfaceMethodInCache(thisClass, ref, curMethod, 319 self->callsiteClass = thisClass; [all...] |
/external/jmonkeyengine/engine/src/core/com/jme3/export/ |
SavableClassUtil.java | 125 Class thisClass = savable.getClass(); 128 while (thisClass != desiredClass) { 129 thisClass = thisClass.getSuperclass(); 130 if (thisClass != null && SavableClassUtil.isImplementingSavable(thisClass)){ 137 if (thisClass == null){
|
/dalvik/vm/hprof/ |
HprofHeap.cpp | 267 const ClassObject *thisClass = (const ClassObject *)obj; 270 int sFieldCount = thisClass->sfieldCount; 287 hprofAddIdToRecord(rec, hprofLookupClassId(thisClass)); 288 hprofAddU4ToRecord(rec, stackTraceSerialNumber(thisClass)); 289 hprofAddIdToRecord(rec, hprofLookupClassId(thisClass->super)); 290 hprofAddIdToRecord(rec, (hprof_object_id)thisClass->classLoader); 301 hprofAddU4ToRecord(rec, thisClass->objectSize); // instance size 319 const StaticField *f = &thisClass->sfields[i]; 340 int iFieldCount = thisClass->ifieldCount; 343 const InstField *f = &thisClass->ifields[i] [all...] |
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/ |
IntentTest.java | 207 Class<? extends IntentTest> thisClass = getClass(); 208 Intent output = intent.setClass(new Activity(), thisClass); 212 assertSame(si.getIntentClass(), thisClass); 218 Class<? extends IntentTest> thisClass = getClass(); 219 intent.setClassName("package.name", thisClass.getName()); 220 assertSame(thisClass.getName(), intent.getComponent().getClassName()); 223 assertSame(si.getIntentClass(), thisClass);
|
/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 | 114 CstType thisClass = cf.getThisClass(); 121 translateInnerClasses(thisClass, attribs, 261 * @param thisClass {@code non-null;} type representing the class being 269 private static Annotations translateInnerClasses(CstType thisClass, 291 if (innerClass.equals(thisClass)) { 293 } else if (thisClass.equals(item.getOuterClass())) { 316 "(" + thisClass.toHuman() + 396 CstType thisClass = cf.getThisClass(); 400 new Annotation(thisClass, AnnotationVisibility.EMBEDDED);
|
CfTranslator.java | 121 CstType thisClass = cf.getThisClass(); 126 new ClassDefItem(thisClass, classAccessFlags, 171 CstType thisClass = cf.getThisClass(); 178 CstFieldRef field = new CstFieldRef(thisClass, one.getNat()); 252 CstType thisClass = cf.getThisClass(); 259 CstMethodRef meth = new CstMethodRef(thisClass, one.getNat()); 289 = thisClass.getClassType().getDescriptor()
|
/dalvik/dx/src/com/android/dx/dex/file/ |
ClassDataItem.java | 41 private final CstType thisClass; 71 * @param thisClass {@code non-null;} what class this data is for, just 74 public ClassDataItem(CstType thisClass) { 77 if (thisClass == null) { 78 throw new NullPointerException("thisClass == null"); 81 this.thisClass = thisClass; 344 thisClass.toHuman());
|
ClassDefItem.java | 46 private final CstType thisClass; 79 * @param thisClass {@code non-null;} type constant for this class 87 public ClassDefItem(CstType thisClass, int accessFlags, 89 if (thisClass == null) { 90 throw new NullPointerException("thisClass == null"); 102 this.thisClass = thisClass; 108 this.classData = new ClassDataItem(thisClass); 134 typeIds.intern(thisClass); 173 int classIdx = typeIds.indexOf(thisClass); [all...] |
/external/dexmaker/src/dx/java/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();
|
/packages/apps/Gallery2/jni_jpegstream/src/ |
jpegstream.cpp | 34 jclass thisClass = env->GetObjectClass(thiz); 35 if (env->ExceptionCheck() || thisClass == NULL) { 39 jfieldID fidNumber = env->GetFieldID(thisClass, "JNIPointer", "J"); 87 jclass thisClass = env->GetObjectClass(thiz); 88 if (env->ExceptionCheck() || thisClass == NULL) { 105 jfieldID fidNumber = env->GetFieldID(thisClass, "JNIPointer", "J"); 149 jclass thisClass = env->GetObjectClass(thiz); 150 if (env->ExceptionCheck() || thisClass == NULL) { 153 jfieldID fidNumber = env->GetFieldID(thisClass, "JNIPointer", "J"); 170 jclass thisClass = env->GetObjectClass(thiz) [all...] |
/dalvik/dx/src/com/android/dx/cf/direct/ |
DirectClassFile.java | 111 private CstType thisClass; 276 return thisClass; 488 thisClass = (CstType) pool.get(cpi); 497 observer.parsed(bytes, at + 2, 2, "this_class: " + thisClass); 516 String thisClassName = thisClass.getClassType().getClassName(); 534 new FieldListParser(this, thisClass, at, attributeFactory); 540 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);
|
/dalvik/vm/interp/ |
Jit.cpp | 703 * + thisClass (new) 707 const ClassObject* thisClass, 712 self->trace[currTraceRun].info.meta = thisClass ? 713 (void *) thisClass->descriptor : NULL; 717 self->trace[currTraceRun].info.meta = thisClass ? 718 (void *) thisClass->classLoader : NULL; 732 * + thisClass (existing entry) 781 const ClassObject *thisClass = self->callsiteClass; [all...] |
/dalvik/vm/mterp/out/ |
InterpC-allstubs.cpp | [all...] |