Searched refs:NameAndType (Results 1 - 3 of 3) sorted by relevance

/openjdk7/langtools/src/share/classes/com/sun/tools/javac/jvm/
H A DClassFile.java156 public static class NameAndType { class in class:ClassFile
160 NameAndType(Name name, Type type) { method in class:ClassFile.NameAndType
167 other instanceof NameAndType &&
168 name == ((NameAndType) other).name &&
169 type.equals(((NameAndType) other).type);
H A DClassReader.java486 NameAndType nt = (NameAndType)readPool(getChar(index + 3));
493 NameAndType nt = (NameAndType)readPool(getChar(index + 3));
498 poolObj[i] = new NameAndType(
1163 NameAndType nt = (NameAndType)readPool(nextChar());
1210 private MethodSymbol findMethod(NameAndType nt, Scope scope, long flags) {
H A DClassWriter.java507 } else if (value instanceof NameAndType) {
508 NameAndType nt = (NameAndType)value;
556 NameAndType nameType(Symbol sym) {
557 return new NameAndType(fieldName(sym),
561 // if we retrofit, then the NameAndType has been read in as is
563 // NameAndType is generated from a symbol reference, and the

Completed in 51 milliseconds