/external/dexmaker/src/dx/java/com/android/dx/dex/code/ |
D | CstInsn.java | 41 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/ |
D | ConstantPoolEditor.java | 344 public int addFieldrefConstant(int classIndex, in addFieldrefConstant() argument 350 return addFieldrefConstant(classIndex, in addFieldrefConstant() 363 public int addFieldrefConstant(int classIndex, in addFieldrefConstant() argument 380 if (fieldrefConstant.u2classIndex == classIndex && in addFieldrefConstant() 388 return addConstant(new FieldrefConstant(classIndex, in addFieldrefConstant() 451 public int addInterfaceMethodrefConstant(int classIndex, in addInterfaceMethodrefConstant() argument 457 return addInterfaceMethodrefConstant(classIndex, in addInterfaceMethodrefConstant() 470 public int addInterfaceMethodrefConstant(int classIndex, in addInterfaceMethodrefConstant() argument 487 if (methodrefConstant.u2classIndex == classIndex && in addInterfaceMethodrefConstant() 495 return addConstant(new InterfaceMethodrefConstant(classIndex, in addInterfaceMethodrefConstant() [all …]
|
/external/proguard/src/proguard/optimize/ |
D | MemberDescriptorSpecializer.java | 108 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/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/raw/ |
D | ClassDefItem.java | 71 int classIndex = dexFile.readSmallUint(out.getCursor()); in makeAnnotator() local 72 … out.annotate(4, "class_idx = %s", TypeIdItem.getReferenceAnnotation(dexFile, classIndex)); in makeAnnotator() 101 addClassDataIdentity(classDataOffset, dexFile.getType(classIndex)); in makeAnnotator() 121 public static String asString(@Nonnull DexBackedDexFile dexFile, int classIndex) { in asString() argument 122 int offset = dexFile.getClassDefItemOffset(classIndex); in asString()
|
D | FieldIdItem.java | 57 int classIndex = dexFile.readUshort(out.getCursor()); in makeAnnotator() local 58 … out.annotate(2, "class_idx = %s", TypeIdItem.getReferenceAnnotation(dexFile, classIndex)); in makeAnnotator() 72 int classIndex = dexFile.readUshort(fieldOffset + CLASS_OFFSET); 73 String classType = dexFile.getType(classIndex);
|
D | MethodIdItem.java | 57 int classIndex = dexFile.readUshort(out.getCursor()); in makeAnnotator() local 58 … out.annotate(2, "class_idx = %s", TypeIdItem.getReferenceAnnotation(dexFile, classIndex)); in makeAnnotator() 72 int classIndex = dexFile.readUshort(methodOffset + CLASS_OFFSET); 73 String classType = dexFile.getType(classIndex);
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/ |
D | DexBackedDexFile.java | 199 public int getClassDefItemOffset(int classIndex) { 200 if (classIndex < 0 || classIndex >= classCount) { 201 throw new InvalidItemIndex(classIndex, "Class index out of bounds: %d", classIndex); 203 return classStartOffset + classIndex*ClassDefItem.ITEM_SIZE;
|
/external/javassist/src/main/javassist/bytecode/ |
D | ConstPool.java | 247 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 …]
|
D | EnclosingMethodAttribute.java | 80 public int classIndex() { in classIndex() method in EnclosingMethodAttribute 95 return getConstPool().getClassInfo(classIndex()); in className()
|
/external/proguard/src/proguard/classfile/attribute/preverification/ |
D | VerificationTypeFactory.java | 108 public static ObjectType createObjectType(int classIndex) in createObjectType() argument 110 return new ObjectType(classIndex); in createObjectType()
|
/external/doclava/src/com/google/doclava/ |
D | TodoFile.java | 74 int classIndex = 0; in writeTodoFile() local 81 String classBase = "classes." + classIndex; in writeTodoFile() 168 classIndex++; in writeTodoFile()
|
/external/javassist/src/main/javassist/convert/ |
D | TransformNew.java | 94 int classIndex = cp.addClassInfo(trapClass); in computeMethodref() local 99 return cp.addMethodrefInfo(classIndex, in computeMethodref()
|
/external/jdiff/src/jdiff/ |
D | HTMLReportGenerator.java | 438 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()
|
/external/proguard/src/proguard/classfile/util/ |
D | DynamicMemberReferenceInitializer.java | 714 int classIndex = constantSequenceMatcher.matchedConstantIndex(CLASS_INDEX); in initializeStringReference() local 715 clazz.constantPoolEntryAccept(classIndex, this); in initializeStringReference()
|
/external/guava/guava/lib/ |
D | jdiff.jar | META-INF/
META-INF/MANIFEST.MF
jdiff/
jdiff/API.class
API ... |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
D | org.eclipse.equinox.p2.repository.tools_2.0.1.R36x_v20100823.jar | META-INF/MANIFEST.MF
META-INF/ECLIPSEF.SF
META-INF/ECLIPSEF ... |
D | org.apache.commons.httpclient_3.1.0.v201005080502.jar | META-INF/MANIFEST.MF
META-INF/ECLIPSEF.SF
META-INF/ECLIPSEF ... |
D | org.apache.jasper_5.5.17.v201004212143.jar | META-INF/MANIFEST.MF
META-INF/ECLIPSEF.SF
META-INF/ECLIPSEF ... |
D | org.eclipse.pde.api.tools_1.0.202.v20100820_r361.jar | META-INF/MANIFEST.MF
META-INF/ECLIPSEF.SF
META-INF/ECLIPSEF ... |
D | org.eclipse.jdt.core_3.6.2.v_A76_R36x.jar | META-INF/MANIFEST.MF
META-INF/ECLIPSEF.SF
META-INF/ECLIPSEF ... |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/ |
D | ant-nodeps.jar | META-INF/
META-INF/MANIFEST.MF
org/
org/apache/
org/ ... |
/external/robolectric/lib/main/ |
D | javassist-3.14.0-GA.jar | META-INF/
META-INF/MANIFEST.MF
javassist/
javassist/bytecode/
javassist/ ... |
/external/owasp/sanitizer/tools/findbugs/lib/ |
D | ant.jar | META-INF/
META-INF/MANIFEST.MF
org/
org/apache/
org/ ... |
D | bcel.jar | META-INF/
META-INF/MANIFEST.MF
org/
org/apache/
org/ ... |
/external/jarjar/lib/ |
D | apache-ant-1.9.4.jar | META-INF/
META-INF/MANIFEST.MF
org/
org/apache/
org/ ... |