Searched refs:ConstantPool (Results 51 - 75 of 160) sorted by relevance

1234567

/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/classfile/
H A DLineNumberTable.java94 ConstantPool constant_pool)
109 ConstantPool constant_pool) throws IOException
231 public Attribute copy(ConstantPool constant_pool) {
H A DLocalVariableTable.java93 ConstantPool constant_pool)
108 ConstantPool constant_pool) throws IOException
187 public Attribute copy(ConstantPool constant_pool) {
H A DLocalVariableTypeTable.java65 ConstantPool constant_pool)
71 LocalVariableTypeTable(int nameIdx, int len, DataInputStream dis,ConstantPool cpool) throws IOException {
134 public Attribute copy(ConstantPool constant_pool) {
H A DMethod.java92 Method(DataInputStream file, ConstantPool constant_pool)
106 Attribute[] attributes, ConstantPool constant_pool)
214 public final Method copy(ConstantPool constant_pool) {
H A DUnknown.java116 ConstantPool constant_pool)
135 ConstantPool constant_pool)
207 public Attribute copy(ConstantPool constant_pool) {
H A DConstantDouble.java142 public Object getConstantValue(ConstantPool cp) {
H A DConstantFloat.java141 public Object getConstantValue(ConstantPool cp) {
H A DConstantInteger.java148 public Object getConstantValue(ConstantPool cp) {
H A DConstantLong.java139 public Object getConstantValue(ConstantPool cp) {
H A DCodeException.java206 public final String toString(ConstantPool cp, boolean verbose) {
218 public final String toString(ConstantPool cp) {
H A DConstantPool.java76 public class ConstantPool implements Cloneable, Node, Serializable { class in inherits:Cloneable,Node,Serializable
83 public ConstantPool(Constant[] constant_pool) method in class:ConstantPool
95 ConstantPool(DataInputStream file) throws IOException, ClassFormatException method in class:ConstantPool
359 public ConstantPool copy() {
360 ConstantPool c = null;
363 c = (ConstantPool)clone();
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DClassReader.java28 import com.sun.java.util.jar.pack.ConstantPool.ClassEntry;
29 import com.sun.java.util.jar.pack.ConstantPool.DescriptorEntry;
30 import com.sun.java.util.jar.pack.ConstantPool.Entry;
31 import com.sun.java.util.jar.pack.ConstantPool.SignatureEntry;
32 import com.sun.java.util.jar.pack.ConstantPool.Utf8Entry;
142 return ConstantPool.getSignatureEntry(e.stringValue());
211 cpMap[i] = ConstantPool.getUtf8Entry(in.readUTF());
215 cpMap[i] = ConstantPool.getLiteralEntry(in.readInt());
220 cpMap[i] = ConstantPool.getLiteralEntry(in.readFloat());
225 cpMap[i] = ConstantPool
[all...]
H A DCode.java55 public ConstantPool.Entry[] getCPMap() {
59 static private final ConstantPool.Entry[] noRefs = ConstantPool.noRefs;
65 ConstantPool.Entry handler_class[] = noRefs;
100 handler_class = new ConstantPool.Entry[h];
145 protected void visitRefs(int mode, Collection<ConstantPool.Entry> refs) {
154 ConstantPool.Entry[] cpMap = getCPMap();
326 public void finishRefs(ConstantPool.Index ix) {
H A DUtils.java28 import com.sun.java.util.jar.pack.ConstantPool.ClassEntry;
29 import com.sun.java.util.jar.pack.ConstantPool.DescriptorEntry;
30 import com.sun.java.util.jar.pack.ConstantPool.LiteralEntry;
31 import com.sun.java.util.jar.pack.ConstantPool.MemberEntry;
32 import com.sun.java.util.jar.pack.ConstantPool.SignatureEntry;
33 import com.sun.java.util.jar.pack.ConstantPool.Utf8Entry;
/openjdk7/langtools/src/share/classes/com/sun/tools/classfile/
H A DAnnotationDefault_attribute.java45 public AnnotationDefault_attribute(ConstantPool constant_pool, Annotation.element_value default_value)
H A DField.java57 public String getName(ConstantPool constant_pool) throws ConstantPoolException {
H A DMethod.java57 public String getName(ConstantPool constant_pool) throws ConstantPoolException {
H A DSourceDebugExtension_attribute.java47 public SourceDebugExtension_attribute(ConstantPool constant_pool, byte[] debug_extension)
H A DAttributes.java56 public Attributes(ConstantPool constant_pool, Attribute[] attrs) {
81 public int getIndex(ConstantPool constant_pool, String name) {
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DCPInstruction.java120 public String toString(ConstantPool cp) {
161 ConstantPool cp = cpg.getConstantPool();
H A DINVOKEINTERFACE.java60 import com.sun.org.apache.bcel.internal.classfile.ConstantPool;
125 public String toString(ConstantPool cp) {
H A DMULTIANEWARRAY.java62 import com.sun.org.apache.bcel.internal.classfile.ConstantPool;
126 public String toString(ConstantPool cp) {
/openjdk7/jdk/src/share/classes/sun/reflect/
H A DConstantPool.java34 public class ConstantPool { class
60 Reflection.registerFieldsToFilter(ConstantPool.class, new String[] { "constantPoolOop" });
/openjdk7/langtools/src/share/classes/com/sun/tools/javap/
H A DConstantWriter.java29 import com.sun.tools.classfile.ConstantPool;
32 import static com.sun.tools.classfile.ConstantPool.*;
58 ConstantPool constant_pool = classWriter.getClassFile().constant_pool;
62 protected void writeConstantPool(ConstantPool constant_pool) {
63 ConstantPool.Visitor<Integer, Void> v = new ConstantPool.Visitor<Integer,Void>() {
163 } catch (ConstantPool.InvalidIndex ex) {
195 } catch (ConstantPool.InvalidIndex e) {
246 } catch (ConstantPool.InvalidIndex e) {
257 private class StringValueVisitor implements ConstantPool
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/interpreter/
H A DBytecodeLoadConstant.java124 ConstantPool cpool = method().getConstants();
126 ConstantPool.CPSlot oop = cpool.getSlotAt(cpIndex);
155 ConstantPool cpool = method().getConstants();
170 ConstantPool.CPSlot obj = cpool.getSlotAt(cpIndex);
183 ConstantPool.CPSlot obj = cpool.getSlotAt(cpIndex);

Completed in 134 milliseconds

1234567