Searched refs:classIndex (Results 1 - 7 of 7) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/reflect/
H A DClassFileAssembler.java126 (short classIndex, short nameAndTypeIndex)
129 emitShort(classIndex);
135 (short classIndex, short nameAndTypeIndex)
138 emitShort(classIndex);
144 (short classIndex, short nameAndTypeIndex)
147 emitShort(classIndex);
642 public void opc_new(short classIndex) { argument
644 emitShort(classIndex);
662 public void opc_checkcast(short classIndex) { argument
664 emitShort(classIndex);
125 emitConstantPoolFieldref(short classIndex, short nameAndTypeIndex) argument
134 emitConstantPoolMethodref(short classIndex, short nameAndTypeIndex) argument
143 emitConstantPoolInterfaceMethodref(short classIndex, short nameAndTypeIndex) argument
667 opc_instanceof(short classIndex) argument
[all...]
/openjdk7/jdk/test/java/lang/instrument/ilib/
H A DInject.java675 int classIndex = writeCPEntryClass(classNameIndex);
677 return classIndex;
680 int addMethodToConstantPool(int classIndex, argument
687 return addMethodToConstantPool(classIndex, methodNameIndex, descrIndex);
690 int addMethodToConstantPool(int classIndex, argument
696 int methodIndex = writeCPEntryMethodRef(classIndex, nameAndTypeIndex);
738 int writeCPEntryMethodRef(int classIndex, int nameAndTypeIndex) { argument
741 c.writeU2(classIndex);
/openjdk7/jdk/test/javax/management/remote/mandatory/loading/
H A DSingleClassLoader.java166 private int writeMethodRefConst(int classIndex, int nameAndTypeIndex) argument
169 dout.writeShort((short) classIndex);
/openjdk7/jdk/src/share/classes/javax/swing/plaf/synth/
H A DSynthParser.java642 int classIndex = typeName.lastIndexOf('.');
645 if (classIndex == -1) {
647 classIndex = 0;
652 0, classIndex));
655 typeName.substring(0, classIndex));
657 classIndex++;
661 getField(typeName.substring(classIndex)).
/openjdk7/jdk/src/share/classes/sun/reflect/annotation/
H A DAnnotationParser.java367 int classIndex = buf.getShort() & 0xFFFF;
370 String sig = constPool.getUTF8At(classIndex);
374 return constPool.getClassAt(classIndex);
/openjdk7/jdk/src/share/instrument/
H A DJPLISAgent.c941 jint classIndex = 0; local
959 for (classIndex = 0; classIndex < classCount; classIndex++) {
961 (*jnienv)->SetObjectArrayElement(jnienv, localArray, classIndex, classes[classIndex]);
/openjdk7/jdk/src/share/classes/sun/misc/
H A DProxyGenerator.java1758 short classIndex = getClass(className);
1761 CONSTANT_FIELD, classIndex, nameAndTypeIndex));
1770 short classIndex = getClass(className);
1773 CONSTANT_METHOD, classIndex, nameAndTypeIndex));
1782 short classIndex = getClass(className);
1785 CONSTANT_INTERFACEMETHOD, classIndex, nameAndTypeIndex));

Completed in 65 milliseconds