Searched refs:constant_pool (Results 76 - 95 of 95) sorted by relevance

1234

/openjdk7/langtools/src/share/classes/com/sun/tools/classfile/
H A DAttribute.java145 public String getName(ConstantPool constant_pool) throws ConstantPoolException { argument
146 return constant_pool.getUTF8Value(attribute_name_index);
H A DStackMapTable_attribute.java55 public StackMapTable_attribute(ConstantPool constant_pool, stack_map_frame[] entries) argument
57 this(constant_pool.getUTF8Index(Attribute.StackMapTable), entries);
H A DAnnotation.java54 public Annotation(ConstantPool constant_pool, argument
H A DClassWriter.java119 ConstantPool pool = classFile.constant_pool;
/openjdk7/langtools/src/share/classes/com/sun/tools/javap/
H A DJavapTask.java644 ConstantPool.CONSTANT_Class_info outerClassInfo = cf.constant_pool.getClassInfo(outerIndex);
648 ConstantPool.CONSTANT_Class_info innerClassInfo = cf.constant_pool.getClassInfo(innerIndex);
827 attrWriter.write(cf, value, cf.constant_pool);
834 attrWriter.write(cf, attrs, cf.constant_pool);
837 protected void write(ConstantPool constant_pool) { argument
839 constantWriter.writeConstantPool(constant_pool);
842 protected void write(ConstantPool constant_pool, int value) { argument
H A DStackMapWriter.java81 ConstantPool cp = classWriter.getClassFile().constant_pool;
184 ConstantPool cp = classWriter.getClassFile().constant_pool;
H A DSourceWriter.java161 String sourceFile = sf.getSourceFile(cf.constant_pool);
/openjdk7/langtools/test/tools/javap/classfile/6888367/
H A DT6888367.java74 ConstantPool cp = cf.constant_pool;
82 ConstantPool cp = cf.constant_pool;
89 ConstantPool cp = cf.constant_pool;
99 test("class " + innerClassName, null, icf.attributes, icf.constant_pool);
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DClassGen.java398 public void setConstantPool(ConstantPoolGen constant_pool) { argument
399 cp = constant_pool;
/openjdk7/langtools/test/tools/javac/varargs/6199075/
H A DT6199075.java214 if (m.getName(cf.constant_pool).equals("test")) {
231 (CONSTANT_Methodref_info)cf.constant_pool.get(cp_entry);
/openjdk7/hotspot/src/share/vm/runtime/
H A Ddeoptimization.cpp1186 void Deoptimization::load_class_by_index(constantPoolHandle constant_pool, int index, TRAPS) { argument
1188 if (constant_pool->tag_at(index).is_unresolved_klass()) {
1189 klassOop tk = constant_pool->klass_at(index, CHECK);
1193 if (!constant_pool->tag_at(index).is_symbol()) return;
1195 Handle class_loader (THREAD, instanceKlass::cast(constant_pool->pool_holder())->class_loader());
1196 Symbol* symbol = constant_pool->symbol_at(index);
1200 Handle protection_domain (THREAD, Klass::cast(constant_pool->pool_holder())->protection_domain());
1210 Handle protection_domain (THREAD, Klass::cast(constant_pool->pool_holder())->protection_domain());
1217 void Deoptimization::load_class_by_index(constantPoolHandle constant_pool, int index) { argument
1219 load_class_by_index(constant_pool, inde
[all...]
/openjdk7/langtools/test/tools/javac/varargs/7042566/
H A DT7042566.java113 if (m.getName(cf.constant_pool).equals("test")) {
130 (CONSTANT_Methodref_info)cf.constant_pool.get(cp_entry);
/openjdk7/langtools/test/tools/javac/4241573/
H A DT4241573.java111 String found = sfa.getSourceFile(cf.constant_pool);
/openjdk7/langtools/test/tools/javac/7003595/
H A DT7003595.java167 String foundSig = info.getInnerClassInfo(cf.constant_pool).getName();
/openjdk7/langtools/test/tools/javac/diags/
H A DCheckResourceKeys.java345 for (ConstantPool.CPInfo cpinfo: cf.constant_pool.entries()) {
/openjdk7/jdk/test/sun/reflect/CallerSensitive/
H A DMethodFinder.java53 for (ConstantPool.CPInfo cpInfo : cf.constant_pool.entries()) {
/openjdk7/hotspot/src/share/vm/oops/
H A DcpCacheOop.hpp424 constantPoolOop constant_pool() const { return _constant_pool; } function in class:constantPoolCacheOopDesc
/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A Dhprof_site.c643 reference_index = reference_info->constant_pool.index;
/openjdk7/hotspot/src/share/vm/classfile/
H A DclassFileParser.cpp338 constantPoolOop constant_pool = local
342 constantPoolHandle cp (THREAD, constant_pool);
/openjdk7/jdk/src/share/javavm/export/
H A Djvmti.h581 jvmtiHeapReferenceInfoConstantPool constant_pool; member in union:_jvmtiHeapReferenceInfo

Completed in 108 milliseconds

1234