HomeSort by relevance Sort by last modified time
    Searched refs:thisClass (Results 1 - 25 of 46) sorted by null

1 2

  /dalvik/vm/mterp/common/
FindInterface.h 29 INLINE Method* dvmFindInterfaceMethodInCache(ClassObject* thisClass,
33 dvmInterpFindInterfaceMethod(thisClass, methodIdx, method, methodClassDex)
37 DEX_INTERFACE_CACHE_SIZE, thisClass, methodIdx);
  /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";
  /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){
  /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...]
  /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();
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();
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...]
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();
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();
Handler.java 81 return thisClass.getClassPool().getCtClass(name);
113 Javac jv = new Javac(thisClass);
FieldAccess.java 89 return thisClass.getClassPool().get(getClassName());
150 thisClass.getClassFile(); // to call checkModify().
155 Javac jc = new Javac(thisClass);
162 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);
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
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...]
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());
  /dalvik/dx/src/com/android/dx/dex/file/
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...]
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());
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
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...]
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());
  /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,
173 CstType thisClass = cf.getThisClass();
180 CstFieldRef field = new CstFieldRef(thisClass, one.getNat());
256 CstType thisClass = cf.getThisClass();
263 CstMethodRef meth = new CstMethodRef(thisClass, one.getNat());
293 = thisClass.getClassType().getDescriptor()
  /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...]
  /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);
  /art/runtime/hprof/
hprof.cc 874 mirror::Class* thisClass = obj->AsClass();
876 size_t sFieldCount = thisClass->NumStaticFields();
892 rec->AddId(LookupClassId(thisClass));
893 rec->AddU4(StackTraceSerialNumber(thisClass));
894 rec->AddId(LookupClassId(thisClass->GetSuperClass()));
895 rec->AddId((HprofObjectId)thisClass->GetClassLoader());
900 if (thisClass->IsClassClass()) {
904 } else if (thisClass->IsArrayClass() || thisClass->IsPrimitive()) {
907 rec->AddU4(thisClass->GetObjectSize()); // instance siz
    [all...]
  /external/javassist/src/main/javassist/compiler/
MemberCodeGen.java 28 protected CtClass thisClass;
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, thisMethod
    [all...]
  /dalvik/vm/interp/
InterpDefs.h 74 Method* dvmInterpFindInterfaceMethod(ClassObject* thisClass, u4 methodIdx,

Completed in 473 milliseconds

1 2