Home
last modified time | relevance | path

Searched refs:classIndex (Results 1 – 13 of 13) sorted by relevance

/external/dexmaker/src/dx/java/com/android/dx/dex/code/
DCstInsn.java41 private int classIndex; field in CstInsn
64 this.classIndex = -1; in CstInsn()
77 if (classIndex >= 0) { in withOpcode()
78 result.setClassIndex(classIndex); in withOpcode()
94 if (classIndex >= 0) { in withRegisters()
95 result.setClassIndex(classIndex); in withRegisters()
160 if (classIndex < 0) { in getClassIndex()
164 return classIndex; in getClassIndex()
176 return (classIndex >= 0); in hasClassIndex()
193 if (this.classIndex >= 0) { in setClassIndex()
[all …]
/external/proguard/src/proguard/classfile/editor/
DConstantPoolEditor.java257 public int addFieldrefConstant(int classIndex, in addFieldrefConstant() argument
263 return addFieldrefConstant(classIndex, in addFieldrefConstant()
276 public int addFieldrefConstant(int classIndex, in addFieldrefConstant() argument
293 if (fieldrefConstant.u2classIndex == classIndex && in addFieldrefConstant()
301 return addConstant(new FieldrefConstant(classIndex, in addFieldrefConstant()
364 public int addInterfaceMethodrefConstant(int classIndex, in addInterfaceMethodrefConstant() argument
370 return addInterfaceMethodrefConstant(classIndex, in addInterfaceMethodrefConstant()
383 public int addInterfaceMethodrefConstant(int classIndex, in addInterfaceMethodrefConstant() argument
400 if (methodrefConstant.u2classIndex == classIndex && in addInterfaceMethodrefConstant()
408 return addConstant(new InterfaceMethodrefConstant(classIndex, in addInterfaceMethodrefConstant()
[all …]
/external/proguard/src/proguard/optimize/
DMemberDescriptorSpecializer.java108 int classIndex = 0; in visitProgramMethod() local
117 if (programMethod.referencedClasses[classIndex] != referencedClass) in visitProgramMethod()
122 …System.out.println(" "+programMethod.referencedClasses[classIndex].getName()+" -> "+referencedCla… in visitProgramMethod()
125 programMethod.referencedClasses[classIndex] = referencedClass; in visitProgramMethod()
134 classIndex++; in visitProgramMethod()
/external/proguard/src/proguard/classfile/attribute/preverification/
DVerificationTypeFactory.java108 public static ObjectType createObjectType(int classIndex) in createObjectType() argument
110 return new ObjectType(classIndex); in createObjectType()
/external/javassist/src/main/javassist/bytecode/
DConstPool.java247 return minfo.classIndex; in getMemberClass()
271 return finfo.classIndex; in getFieldrefClass()
286 return getClassInfo(f.classIndex); in getFieldrefClassName()
348 return minfo.classIndex; in getMethodrefClass()
363 return getClassInfo(minfo.classIndex); in getMethodrefClassName()
428 return minfo.classIndex; in getInterfaceMethodrefClass()
441 return getClassInfo(minfo.classIndex); in getInterfaceMethodrefClassName()
628 if (getClassInfo(minfo.classIndex).equals(classname)) { in isMember()
661 return getClassInfo(minfo.classIndex); in eqMember()
1297 int classIndex; field in MemberrefInfo
[all …]
DEnclosingMethodAttribute.java80 public int classIndex() { in classIndex() method in EnclosingMethodAttribute
95 return getConstPool().getClassInfo(classIndex()); in className()
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
DHeapSnapshot.js329 classIndex: function() method in WebInspector.HeapSnapshotNode
979 var classIndex = node.classIndex();
980 if (!(classIndex in aggregates)) {
992 aggregates[classIndex] = value;
993 classIndexes.push(classIndex);
996 var clss = aggregates[classIndex];
1006 var classIndex = classIndexes[i];
1007 aggregates[classIndex].idxs = aggregates[classIndex].idxs.slice();
1033 var classIndex = node.classIndex();
1034 var seen = !!seenClassNameIndexes[classIndex];
[all …]
DJSHeapSnapshot.js493 classIndex: function() method in WebInspector.JSHeapSnapshotNode
/external/doclava/src/com/google/doclava/
DTodoFile.java74 int classIndex = 0; in writeTodoFile() local
81 String classBase = "classes." + classIndex; in writeTodoFile()
168 classIndex++; in writeTodoFile()
/external/smali/dexlib/src/main/java/org/jf/dexlib/
DFieldIdItem.java120 int classIndex = classType.getIndex(); in writeItem() local
121 if (classIndex > 0xffff) { in writeItem()
125 out.writeShort(classIndex); in writeItem()
DMethodIdItem.java115 int classIndex = classType.getIndex(); in writeItem() local
116 if (classIndex > 0xffff) { in writeItem()
120 out.writeShort(classIndex); in writeItem()
/external/javassist/src/main/javassist/convert/
DTransformNew.java94 int classIndex = cp.addClassInfo(trapClass); in computeMethodref() local
99 return cp.addMethodrefInfo(classIndex, in computeMethodref()
/external/jdiff/src/jdiff/
DHTMLReportGenerator.java438 public void reportChangedClass(String pkgName, ClassDiff[] classDiffs, int classIndex) { in reportChangedClass() argument
439 ClassDiff classDiff = classDiffs[classIndex]; in reportChangedClass()
476 if (classIndex != 0) { in reportChangedClass()
477 prevClassRef = pkgName + "." + classDiffs[classIndex-1].name_ + reportFileExt; in reportChangedClass()
481 if (classIndex < classDiffs.length - 1) { in reportChangedClass()
482 nextClassRef = pkgName + "." + classDiffs[classIndex+1].name_ + reportFileExt; in reportChangedClass()