Searched defs:qtype (Results 1 - 3 of 3) sorted by relevance

/openjdk7/langtools/src/share/classes/com/sun/tools/javac/jvm/
H A DUninitializedType.java43 public static UninitializedType uninitializedThis(Type qtype) { argument
44 return new UninitializedType(UNINITIALIZED_THIS, qtype, -1);
47 public static UninitializedType uninitializedObject(Type qtype, int offset) { argument
48 return new UninitializedType(UNINITIALIZED_OBJECT, qtype, offset);
52 private UninitializedType(int tag, Type qtype, int offset) { argument
53 super(tag, qtype);
58 return qtype;
/openjdk7/jdk/src/share/classes/com/sun/jndi/dns/
H A DDnsClient.java165 ResourceRecords query(DnsName fqdn, int qclass, int qtype, argument
178 Packet pkt = makeQueryPacket(fqdn, xid, qclass, qtype, recursion);
477 int qclass, int qtype, boolean recursion) {
491 pkt.putShort(qtype, DNS_HDR_SIZE + qnameLen);
476 makeQueryPacket(DnsName fqdn, int xid, int qclass, int qtype, boolean recursion) argument
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/
H A DType.java1095 public Type qtype; field in class:Type.DelegatedType
1096 public DelegatedType(int tag, Type qtype) { argument
1097 super(tag, qtype.tsym);
1098 this.qtype = qtype;
1100 public String toString() { return qtype.toString(); }
1101 public List<Type> getTypeArguments() { return qtype.getTypeArguments(); }
1102 public Type getEnclosingType() { return qtype.getEnclosingType(); }
1103 public List<Type> getParameterTypes() { return qtype.getParameterTypes(); }
1104 public Type getReturnType() { return qtype
1114 ForAll(List<Type> tvars, Type qtype) argument
[all...]

Completed in 356 milliseconds