/external/armnn/samples/ObjectDetection/src/ |
D | YoloResultDecoder.cpp | 44 for (unsigned int classIndex = 0; classIndex < m_numClasses; ++classIndex) in Decode() local 46 const float class_prob = cur_box[4] * cur_box[5 + classIndex]; in Decode() 68 if(labels.size() > classIndex) in Decode() 70 detectedObject.SetLabel(labels.at(classIndex)); in Decode() 74 detectedObject.SetLabel(std::to_string(classIndex)); in Decode() 76 detectedObject.SetId(classIndex); in Decode()
|
/external/apache-commons-bcel/src/main/java/org/apache/bcel/classfile/ |
D | EnclosingMethod.java | 35 private int classIndex; field in EnclosingMethod 54 classIndex = classIdx; in EnclosingMethod() 70 return classIndex; in getEnclosingClassIndex() 78 classIndex = idx; in setEnclosingClassIndex() 87 (ConstantClass)super.getConstantPool().getConstant(classIndex,Const.CONSTANT_Class); in getEnclosingClass() 103 file.writeShort(classIndex); in dump()
|
/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 | 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);
|
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);
|
/external/google-smali/dexlib2/src/main/java/com/android/tools/smali/dexlib2/dexbacked/raw/ |
D | ClassDefItem.java | 70 int classIndex = dexFile.getBuffer().readSmallUint(out.getCursor()); in makeAnnotator() local 71 … out.annotate(4, "class_idx = %s", TypeIdItem.getReferenceAnnotation(dexFile, classIndex)); in makeAnnotator() 100 addClassDataIdentity(classDataOffset, dexFile.getTypeSection().get(classIndex)); in makeAnnotator() 120 public static String asString(@Nonnull DexBackedDexFile dexFile, int classIndex) { in asString() argument 121 int offset = dexFile.getClassSection().getOffset(classIndex); in asString()
|
D | FieldIdItem.java | 56 int classIndex = dexFile.getBuffer().readUshort(out.getCursor()); in makeAnnotator() local 57 … out.annotate(2, "class_idx = %s", TypeIdItem.getReferenceAnnotation(dexFile, classIndex)); in makeAnnotator() 71 int classIndex = dexFile.getBuffer().readUshort(fieldOffset + CLASS_OFFSET); 72 String classType = dexFile.getTypeSection().get(classIndex);
|
D | MethodIdItem.java | 56 int classIndex = dexFile.getBuffer().readUshort(out.getCursor()); in makeAnnotator() local 57 … out.annotate(2, "class_idx = %s", TypeIdItem.getReferenceAnnotation(dexFile, classIndex)); in makeAnnotator() 71 int classIndex = dexFile.getBuffer().readUshort(methodOffset + CLASS_OFFSET); 72 String classType = dexFile.getTypeSection().get(classIndex);
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/ |
D | DexBackedDexFile.java | 192 public int getClassDefItemOffset(int classIndex) { 193 if (classIndex < 0 || classIndex >= classCount) { 194 throw new InvalidItemIndex(classIndex, "Class index out of bounds: %d", classIndex); 196 return classStartOffset + classIndex*ClassDefItem.ITEM_SIZE;
|
/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/javassist/src/main/javassist/bytecode/ |
D | ConstPool.java | 326 return minfo.classIndex; in getMemberClass() 352 return finfo.classIndex; in getFieldrefClass() 367 return getClassInfo(f.classIndex); in getFieldrefClassName() 427 return minfo.classIndex; in getMethodrefClass() 442 return getClassInfo(minfo.classIndex); in getMethodrefClassName() 504 return minfo.classIndex; in getInterfaceMethodrefClass() 517 return getClassInfo(minfo.classIndex); in getInterfaceMethodrefClassName() 826 if (getClassInfo(minfo.classIndex).equals(classname)) { in isMember() 860 return getClassInfo(minfo.classIndex); in eqMember() 1663 int classIndex; field in MemberrefInfo [all …]
|
D | EnclosingMethodAttribute.java | 81 public int classIndex() { in classIndex() method in EnclosingMethodAttribute 96 return getConstPool().getClassInfo(classIndex()); in className()
|
/external/doclava/src/com/google/doclava/ |
D | TodoFile.java | 75 int classIndex = 0; in writeTodoFile() local 82 String classBase = "classes." + classIndex; in writeTodoFile() 169 classIndex++; in writeTodoFile()
|
/external/pdfium/testing/resources/javascript/xfa_specific/ |
D | xfa_tree_expected.txt | 5 Alert: PASS: classIndex = 0 6 Alert: PASS: classIndex threw Error: Invalid property set operation.
|
D | xfa_tree.in | 29 testROProperty(xfa.form, "classIndex", 0);
|
/external/javassist/src/main/javassist/convert/ |
D | TransformNew.java | 102 int classIndex = cp.addClassInfo(trapClass); in computeMethodref() local 107 return cp.addMethodrefInfo(classIndex, in computeMethodref()
|
/external/cronet/build/android/pylib/utils/ |
D | dexdump.py | 287 def _ParseClassNode(class_node, classIndex: int, 311 annotations.get(classIndex,
|
/external/angle/build/android/pylib/utils/ |
D | dexdump.py | 287 def _ParseClassNode(class_node, classIndex: int, 311 annotations.get(classIndex,
|
/external/testng/src/main/java/org/testng/internal/ |
D | ClassHelper.java | 522 int classIndex = file.lastIndexOf(".class"); in fileToClass() local 523 if (-1 == classIndex) { in fileToClass() 524 classIndex = file.lastIndexOf(".java"); in fileToClass() 541 String shortFileName = file.substring(0, classIndex); in fileToClass()
|
/external/pdfium/fxjs/xfa/ |
D | cjx_tree.h | 30 JSE_PROP(classIndex);
|
/external/ow2-asm/asm-test/src/main/java/org/objectweb/asm/test/ |
D | ClassFile.java | 1851 private final int classIndex; field in ClassFile.ConstantFieldRefInfo 1863 this.classIndex = parser.u2(); in ConstantFieldRefInfo() 1869 return getCpInfo(classIndex, ConstantClassInfo.class).dump() in dump() 1882 private final int classIndex; field in ClassFile.ConstantMethodRefInfo 1894 this.classIndex = parser.u2(); in ConstantMethodRefInfo() 1900 return getCpInfo(classIndex, ConstantClassInfo.class).dump() in dump() 1913 private final int classIndex; field in ClassFile.ConstantInterfaceMethodRefInfo 1926 this.classIndex = parser.u2(); in ConstantInterfaceMethodRefInfo() 1932 return getCpInfo(classIndex, ConstantClassInfo.class).dump() in dump()
|
/external/robolectric/resources/src/main/java/org/robolectric/res/android/ |
D | ResourceTypes.java | 829 final short classIndex; field in ResourceTypes.ResXMLTree_attrExt 844 this.classIndex = buf.getShort(offset + 16); in ResXMLTree_attrExt() 859 private short classIndex; field in ResourceTypes.ResXMLTree_attrExt.Writer 900 classIndex = (short) (i + 1); in write() 908 classIndexWriter.write(classIndex); in write()
|
/external/robolectric-shadows/resources/src/main/java/org/robolectric/res/android/ |
D | ResourceTypes.java | 828 final short classIndex; field in ResourceTypes.ResXMLTree_attrExt 843 this.classIndex = buf.getShort(offset + 16); in ResXMLTree_attrExt() 859 private short classIndex; field in ResourceTypes.ResXMLTree_attrExt.Writer 901 classIndex = (short) (i + 1); in write() 909 classIndexWriter.write(classIndex); in write()
|