Searched refs:string_index (Results 1 - 8 of 8) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/classfile/
H A DConstantString.java73 private int string_index; // Identical to ConstantClass except for this name field in class:ConstantString
92 * @param string_index Index of Constant_Utf8 in constant pool
94 public ConstantString(int string_index) argument
97 this.string_index = string_index;
118 file.writeShort(string_index);
123 public final int getStringIndex() { return string_index; }
125 * @param string_index.
127 public final void setStringIndex(int string_index) { argument
128 this.string_index
[all...]
/openjdk7/hotspot/src/os/solaris/vm/
H A DdtraceJSDT_solaris.cpp153 uint32_t string_index = 0; local
157 stroffs[curstr++] = string_index;
158 string_index += strlen("") + 1;
164 stroffs[curstr++] = string_index;
165 string_index += strlen(provider_name) + 1;
173 stroffs[curstr++] = string_index;
174 string_index += strlen(function) + 1;
178 stroffs[curstr++] = string_index;
179 string_index += strlen(name) + 1;
194 stroffs[curstr++] = string_index;
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/classfile/
H A DConstantPool.java831 string_index = cr.readUnsignedShort();
834 public CONSTANT_String_info(ConstantPool cp, int string_index) { argument
836 this.string_index = string_index;
848 return cp.getUTF8Value(string_index);
857 return "CONSTANT_String_info[class_index: " + string_index + "]";
860 public final int string_index; field in class:ConstantPool.CONSTANT_String_info
H A DClassTranslator.java394 info2 = new CONSTANT_String_info(cp2, info.string_index);
H A DClassWriter.java303 out.writeShort(info.string_index);
/openjdk7/langtools/src/share/classes/com/sun/tools/javap/
H A DConstantWriter.java141 print("#" + info.string_index);
350 int string_index = info.string_index;
351 return stringValue(classFile.constant_pool.getUTF8Info(string_index));
/openjdk7/hotspot/src/share/vm/oops/
H A DconstantPoolOop.hpp316 void string_index_at_put(int which, int string_index) { argument
318 *int_at_addr(which) = string_index;
/openjdk7/hotspot/src/share/vm/classfile/
H A DclassFileParser.cpp146 cfs->guarantee_more(3, CHECK); // string_index, tag/access_flags
147 u2 string_index = cfs->get_u2_fast(); local
148 cp->string_index_at_put(index, string_index);
432 int string_index = cp->string_index_at(index); local
434 valid_cp_range(string_index, length) &&
435 cp->tag_at(string_index).is_utf8(),
437 string_index, CHECK_(nullHandle));
438 Symbol* sym = cp->symbol_at(string_index);

Completed in 91 milliseconds