Searched refs:type1 (Results 1 - 16 of 16) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/management/
H A DLazyCompositeData.java148 * all items in type1 exist in type2 and their item types
151 protected static boolean isTypeMatched(CompositeType type1, CompositeType type2) { argument
152 if (type1 == type2) return true;
156 Set allItems = type1.keySet();
158 // Check all items in the type1 exist in type2
164 OpenType ot1 = type1.getType(item);
183 protected static boolean isTypeMatched(TabularType type1, TabularType type2) { argument
184 if (type1 == type2) return true;
186 List list1 = type1.getIndexNames();
193 return isTypeMatched(type1
[all...]
/openjdk7/jdk/test/java/lang/reflect/Generics/
H A DTestParameterizedType.java121 Type type1 = take1.get(i);
128 if (!type1.equals(type2) ) {
131 i, j, type1, type2);
135 if (type1.equals(type2) ) {
138 i, j, type1, type2);
/openjdk7/hotspot/src/share/vm/classfile/
H A DstackMapFrame.hpp210 VerificationType type1, VerificationType type2, TRAPS) {
211 assert(type1.is_long() || type1.is_double(), "must be long/double");
219 _stack[_stack_size++] = type1;
251 VerificationType type1, VerificationType type2, TRAPS) {
252 assert(type1.is_long2() || type1.is_double2(), "must be long/double");
256 bool subtype1 = type1.is_assignable_from(top1, verifier(), CHECK);
264 pop_stack_ex(type1, THREAD);
284 int32_t index, VerificationType type1, VerificationTyp
209 push_stack_2( VerificationType type1, VerificationType type2, TRAPS) argument
250 pop_stack_2( VerificationType type1, VerificationType type2, TRAPS) argument
[all...]
H A DstackMapFrame.cpp297 int32_t index, VerificationType type1, VerificationType type2, TRAPS) {
298 assert(type1.is_long() || type1.is_double(), "must be long/double");
306 bool subtype = type1.is_assignable_from(_locals[index], verifier(), CHECK);
310 TypeOrigin::local(index, this), TypeOrigin::implicit(type1)),
357 int32_t index, VerificationType type1, VerificationType type2, TRAPS) {
358 assert(type1.is_long() || type1.is_double(), "must be long/double");
376 _locals[index] = type1;
296 get_local_2( int32_t index, VerificationType type1, VerificationType type2, TRAPS) argument
356 set_local_2( int32_t index, VerificationType type1, VerificationType type2, TRAPS) argument
/openjdk7/jdk/src/share/classes/com/sun/security/ntlm/
H A DServer.java44 * // Receive client request as type1
45 * byte[] type2 = server.type2(type1, nonce);
80 * @param type1 the Type1 message received, must not be null
87 public byte[] type2(byte[] type1, byte[] nonce) throws NTLMException { argument
93 if (type1 != null) debug(type1);
117 "type1 or nonce cannot be null");
H A DClient.java39 * byte[] type1 = client.type1();
40 * // Send type1 to server and receive response as type2
96 public byte[] type1() { method in class:Client
/openjdk7/langtools/test/tools/javac/types/
H A DGenericTypeWellFormednessTest.java149 final InstantiableType type1 = typeArgs[i];
152 return subst(clazz, Mapping(clazz.getTypeArguments().head, type1.inst(clazz)));
159 final InstantiableType type1 = typeArgs[i];
162 Type t = fac.Wildcard(BoundKind.EXTENDS, type1.inst(clazz));
170 final InstantiableType type1 = typeArgs[i];
173 Type t = fac.Wildcard(BoundKind.SUPER, type1.inst(clazz));
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/org/objectweb/asm/
H A DClassWriter.java1261 * @param type1 index of an internal name in {@link #typeTable}.
1265 int getMergedType(final int type1, final int type2) { argument
1267 key2.longVal = type1 | (((long) type2) << 32);
1268 key2.hashCode = 0x7FFFFFFF & (TYPE_MERGED + type1 + type2);
1271 String t = typeTable[type1].strVal1;
1289 * @param type1 the internal name of a class.
1294 protected String getCommonSuperClass(final String type1, final String type2) argument
1298 c = Class.forName(type1.replace('/', '.'));
1304 return type1;
/openjdk7/jdk/src/share/classes/java/beans/
H A DPropertyDescriptor.java741 Class<?> type1 = m1.getDeclaringClass();
743 if (!type1.isAssignableFrom(type2)) {
746 type1 = getReturnType(getClass0(), m1);
748 if (!type1.isAssignableFrom(type2)) {
/openjdk7/jdk/test/tools/pack200/pack200-verifier/src/xmlkit/
H A DClassWriter.java436 String type1 = getBody(type, next);
438 if (type1.startsWith("<")) {
440 String elemName = type1.substring(1, type1.indexOf('>'));
444 next += type1.length() + 2; // skip body and brackets
446 writeAttribute(elem, type1);
468 String type1 = getBody(type, next);
469 next += type1.length() + 2; // skip body and brackets
475 writeAttribute(aval, type1);
H A DClassReader.java647 String type1 = getBody(type, next);
648 next += type1.length() + 2; // skip body and brackets
650 attachTo(aval, readAttribute(type1));
675 String type1 = getBody(type, next);
676 next += type1.length() + 2; // skip body and brackets
682 attachTo(aval, readAttribute(type1));
/openjdk7/jdk/src/share/classes/com/sun/security/sasl/ntlm/
H A DNTLMClient.java223 return client.type1();
/openjdk7/jdk/src/solaris/classes/sun/net/www/protocol/http/ntlm/
H A DNTLMAuthentication.java57 * REQ (with type1 NTLM msg) --------->
232 byte[] msg = client.type1();
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/util/
H A DUtil.java431 public int compare(Type type1, Type type2) { argument
432 return type1.qualifiedTypeName().toLowerCase().compareTo(
/openjdk7/jdk/test/java/lang/invoke/
H A DMethodHandlesTest.java1531 public void testPermuteArguments(int max, Class<?> type1, int t2c, Class<?> type2, int dilution) throws Throwable { argument
1533 System.out.println("permuteArguments "+max+"*"+type1.getName()
1539 Arrays.fill(types, type1);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/
H A DTypes.java3219 Type type1 = memberType(capturedEncl, t.tsym);
3220 t = subst(type1, t.tsym.type.getTypeArguments(), t.getTypeArguments());

Completed in 137 milliseconds