Searched refs:getUTF8Value (Results 1 - 25 of 37) sorted by relevance

12

/openjdk10/langtools/src/jdk.jdeps/share/classes/com/sun/tools/classfile/
H A DField.java58 return constant_pool.getUTF8Value(name_index);
H A DMethod.java58 return constant_pool.getUTF8Value(name_index);
H A DCompilationID_attribute.java55 return constant_pool.getUTF8Value(compilationID_index);
H A DSourceID_attribute.java54 return constant_pool.getUTF8Value(sourceID_index);
H A DSignature_attribute.java55 return constant_pool.getUTF8Value(signature_index);
H A DSourceFile_attribute.java55 return constant_pool.getUTF8Value(sourcefile_index);
H A DInnerClasses_attribute.java97 return constant_pool.getUTF8Value(inner_name_index);
H A DDescriptor.java75 return constant_pool.getUTF8Value(index);
H A DConstantPool.java301 public String getUTF8Value(int index) throws InvalidIndex, UnexpectedEntry { method in class:ConstantPool
456 return cp.getUTF8Value(name_index);
775 return cp.getUTF8Value(descriptor_index);
825 return cp.getUTF8Value(name_index);
862 return cp.getUTF8Value(name_index);
866 return cp.getUTF8Value(type_index);
907 return cp.getUTF8Value(name_index);
942 return cp.getUTF8Value(string_index);
H A DAttribute.java89 String name = cp.getUTF8Value(name_index);
161 return constant_pool.getUTF8Value(attribute_name_index);
/openjdk10/langtools/test/tools/javac/classfiles/attributes/deprecated/
H A DDeprecatedTest.java282 String methodName = cf.constant_pool.getUTF8Value(m.name_index);
292 String fieldName = cf.constant_pool.getUTF8Value(f.name_index);
315 cf.constant_pool.getUTF8Value(attr.attribute_name_index),
/openjdk10/langtools/test/tools/javac/
H A DMethodParametersTest.java263 else if (!foo.constant_pool.getUTF8Value(mp.method_parameter_table[0].name_index).equals("j"))
265 foo.constant_pool.getUTF8Value(mp.method_parameter_table[0].name_index) +
267 else if (!foo.constant_pool.getUTF8Value(mp.method_parameter_table[1].name_index).equals("k"))
269 foo.constant_pool.getUTF8Value(mp.method_parameter_table[1].name_index) +
308 else if (!bar.constant_pool.getUTF8Value(mp.method_parameter_table[0].name_index).equals("i"))
310 bar.constant_pool.getUTF8Value(mp.method_parameter_table[0].name_index) +
/openjdk10/langtools/test/tools/javac/multicatch/7005371/
H A DT7005371.java89 cf.constant_pool.getUTF8Value(lvt_table.local_variable_table[0].signature_index);
/openjdk10/langtools/test/tools/javac/modules/
H A DModuleVersion.java124 String actualVersion = cf.constant_pool.getUTF8Value(moduleAttribute.module_version_index);
/openjdk10/langtools/test/tools/javac/classfiles/attributes/annotations/
H A DRuntimeParameterAnnotationsTestBase.java125 String name = classFile.constant_pool.getUTF8Value(ann.type_index);
H A DTestAnnotationInfo.java52 testResult.checkEquals(classFile.constant_pool.getUTF8Value(annotation.type_index),
62 testResult.checkEquals(classFile.constant_pool.getUTF8Value(pair.element_name_index),
/openjdk10/langtools/src/jdk.jdeps/share/classes/com/sun/tools/javap/
H A DLocalVariableTypeTableWriter.java136 print(constant_pool.getUTF8Value(entry.name_index));
H A DLocalVariableTableWriter.java135 print(constant_pool.getUTF8Value(entry.name_index));
H A DClassWriter.java175 name = getJavaName(constant_pool.getUTF8Value(modAttr.module_name));
187 print(getUTF8Value(modAttr.module_version_index));
720 return constant_pool.getUTF8Value(index);
728 return constant_pool.getUTF8Value(index);
732 String getUTF8Value(int index) { method in class:ClassWriter
734 return classFile.constant_pool.getUTF8Value(index);
/openjdk10/langtools/test/tools/javac/T8180141/
H A DMissingLNTEntryForBreakContinueTest.java92 if (classFile.constant_pool.getUTF8Value(m.name_index).equals("foo")) {
/openjdk10/langtools/test/tools/javac/T8180660/
H A DMissingLNTEntryForFinalizerTest.java88 if (classFile.constant_pool.getUTF8Value(m.name_index).equals("foo")) {
/openjdk10/langtools/test/tools/javac/classfiles/attributes/AnnotationDefault/
H A DAnnotationDefaultTest.java90 .getUTF8Value(attr.attribute_name_index),
/openjdk10/langtools/test/tools/javac/lambda/
H A DLocalVariableTable.java106 foundNames.add(cf.constant_pool.getUTF8Value(e.name_index));
/openjdk10/langtools/src/jdk.jdeps/share/classes/com/sun/tools/jdeprscan/scan/
H A DScan.java271 String mdesc = targetClass.constant_pool.getUTF8Value(m.descriptor.index);
504 String type = nameFromDescType(cf.constant_pool.getUTF8Value(f.descriptor.index));
523 String desc = cf.constant_pool.getUTF8Value(m.descriptor.index);
/openjdk10/langtools/test/tools/javap/classfile/6888367/
H A DT6888367.java174 if (cp.getUTF8Value(a.type_index).equals("L" + annotName + ";")) {
180 cp.getUTF8Value(pv0.const_value_index),
181 cp.getUTF8Value(pv1.const_value_index));

Completed in 206 milliseconds

12