Searched refs:t2 (Results 1 - 25 of 179) sorted by relevance

12345678

/openjdk7/langtools/test/tools/javac/T6356217/
H A DT6356217.java38 public void f(T t1, T t2) { argument
43 } while ((b ? t1 : t2).bb);
/openjdk7/langtools/test/tools/javac/diags/examples/
H A DUncheckedGenericArrayCreation.java29 void m(T t1, T t2, T t3) { argument
30 show(t1, t2, t3);
/openjdk7/jdk/test/sun/security/krb5/
H A DMicroTime.java39 KerberosTime t2 = new KerberosTime(true);
40 if (t2.getTime() - t1.getTime() > 1000) break;
41 if (!last.equals(t2)) {
42 last = t2;
/openjdk7/hotspot/test/compiler/6695810/
H A DTest.java34 static void test(Test t1, Test t2) { argument
35 if (t2 != null)
36 t1._t = t2;
38 if (t2 != null)
39 t1._t = t2;
/openjdk7/jdk/test/sun/security/krb5/auto/
H A DKerberosHashEqualsTest.java108 KerberosTicket t1, t2;
116 t2 = new KerberosTicket(ASN1, CLIENT, SERVER, PASS, 1, FORWARDABLE, D0, D0, D0, D0, null);
118 checkSame(t1, t2);
122 checkNotSame(t1, t2);
123 checkNotSame(t2, t1);
125 t2.destroy();
126 checkNotSame(t1, t2); // even if they are both destroyed
127 checkNotSame(t2, t1);
129 checkSame(t2, t2); // unles
[all...]
/openjdk7/jdk/test/javax/security/auth/kerberos/
H A DKerberosHashEqualsTest.java88 KerberosTicket t1, t2;
90 t2 = new KerberosTicket("asn1".getBytes(), new KerberosPrincipal("client"), new KerberosPrincipal("server"), "pass".getBytes(), 1, new boolean[] {true, true}, new Date(0), new Date(0), new Date(0), new Date(0), null);
92 checkSame(t1, t2);
93 t2 = new KerberosTicket("asn11".getBytes(), new KerberosPrincipal("client"), new KerberosPrincipal("server"), "pass".getBytes(), 1, new boolean[] {true, true}, new Date(0), new Date(0), new Date(0), new Date(0), null);
94 checkNotSame(t1, t2);
95 t2 = new KerberosTicket("asn1".getBytes(), new KerberosPrincipal("client1"), new KerberosPrincipal("server"), "pass".getBytes(), 1, new boolean[] {true, true}, new Date(0), new Date(0), new Date(0), new Date(0), null);
96 checkNotSame(t1, t2);
97 t2 = new KerberosTicket("asn1".getBytes(), new KerberosPrincipal("client"), new KerberosPrincipal("server1"), "pass".getBytes(), 1, new boolean[] {true, true}, new Date(0), new Date(0), new Date(0), new Date(0), null);
98 checkNotSame(t1, t2);
99 t2
[all...]
/openjdk7/jdk/test/java/util/logging/
H A DLoggingDeadlock.java75 Thread t2 = new Thread(new Runnable() {
84 t2.start();
87 t2.join();
/openjdk7/langtools/test/tools/javac/6390045/
H A DT6390045b.java37 <T> T choose(T t1, T t2) { return t1; } argument
/openjdk7/jdk/test/java/nio/channels/Selector/
H A DWakeupSpeed.java43 long t2 = System.currentTimeMillis();
44 long totalTime = t2 - t1;
/openjdk7/langtools/test/tools/javac/generics/
H A DGenericAnonCtor.java37 <T2> A(T1 t1, T2 t2) { argument
39 obj2 = t2;
H A DNameOrder.java44 <T> T f(T t1, T t2) { return null; } argument
/openjdk7/langtools/test/tools/javac/generics/inference/6611449/
H A DT6611449.java11 <T extends S> T6611449(T t1, T t2) {} argument
15 <T extends S> void m2(T t1, T t2) {} argument
/openjdk7/jdk/test/java/lang/Throwable/
H A DStackTraceSerialization.java72 Throwable t2 = new Throwable();
73 t2.setStackTrace(stackTrace);
74 if (!equal(t2, reconstitute(t2)))
131 private static boolean equal(Throwable t1, Throwable t2) { argument
132 return t1==t2 ||
133 (Arrays.equals(t1.getStackTrace(), t2.getStackTrace()) &&
134 equal(t1.getCause(), t2.getCause()) &&
135 Objects.equals(t1.getSuppressed(), t2.getSuppressed()));
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dc1_MacroAssembler_sparc.hpp36 Register t2, // temp register
40 void initialize_header(Register obj, Register klass, Register len, Register t1, Register t2);
53 Register t2 // temp register
62 Register t2, // temp register
79 Register t2, // temp register
/openjdk7/jdk/test/java/io/charStreams/
H A DLineLengths.java55 Thread t2 = new Thread(new LineSink(ui, r, log));
57 t2.start();
59 t2.join();
H A DRandomLines.java56 Thread t2 = new Thread(new LineSink(ui, r, count, log));
58 t2.start();
60 t2.join();
/openjdk7/jdk/test/java/lang/ClassLoader/deadlock/
H A DGetResource.java42 Thread t1, t2; field in class:GetResource
53 done.await(); // keep holding the lock until t2 finishes
66 t2 = new Thread() {
90 t2.start();
98 t2.join();
/openjdk7/langtools/src/share/classes/javax/lang/model/util/
H A DTypes.java70 * @param t2 the second type
73 boolean isSameType(TypeMirror t1, TypeMirror t2); argument
80 * @param t2 the second type
86 boolean isSubtype(TypeMirror t1, TypeMirror t2); argument
92 * @param t2 the second type
98 boolean isAssignable(TypeMirror t1, TypeMirror t2); argument
104 * @param t2 the second type
109 boolean contains(TypeMirror t1, TypeMirror t2); argument
/openjdk7/langtools/test/tools/javac/cast/6558559/
H A DT6558559b.java39 Throwable t2 = (Throwable) unboundList;
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dc1_MacroAssembler_x86.hpp41 Register t2, // temp register
45 void initialize_header(Register obj, Register klass, Register len, Register t1, Register t2);
68 Register t2 // temp register
75 // t1, t2 : scratch registers - contents destroyed
79 void allocate_object(Register obj, Register t1, Register t2, int header_size, int object_size, Register klass, Label& slow_case);
92 void allocate_array(Register obj, Register len, Register t, Register t2, int header_size, Address::ScaleFactor f, Register klass, Label& slow_case);
/openjdk7/hotspot/src/share/vm/opto/
H A Dmulnode.cpp61 const Type *t2 = phase->type( in(2) ); local
65 if( !(t2->singleton() ||
72 t1 = t2;
73 t2 = t;
81 if( t2->singleton() && // Right input is a constant?
84 if( t2 == Type::TOP ) return NULL;
101 const Type *tcon01 = ((MulNode*)mul1)->mul_ring(t2,t12);
106 t2 = tcon01;
120 const Type *tcon01 = mul_ring(t2,t12);
143 const Type *t2 local
386 const Type *t2 = phase->type( in(2) ); local
441 const TypeInt* t2 = phase->type(in(2))->isa_int(); local
470 const TypeInt *t2 = phase->type( in(2) )->isa_int(); local
568 const TypeLong *t2 = phase->type( in(2) )->isa_long(); local
598 const TypeLong *t2 = phase->type( in(2) )->isa_long(); local
649 const TypeInt *t2 = t->isa_int(); local
705 const Type *t2 = phase->type( in(2) ); local
761 const TypeInt *t2 = t->isa_int(); local
814 const Type *t2 = phase->type( in(2) ); local
860 const TypeInt *t2 = phase->type(in(2))->isa_int(); local
890 const TypeInt *t2 = phase->type( in(2) )->isa_int(); local
959 const Type *t2 = phase->type( in(2) ); local
1021 const Type *t2 = phase->type( in(2) ); local
1079 const TypeInt *t2 = phase->type(add->in(2))->isa_int(); local
1101 const TypeInt *t2 = phase->type( in(2) )->isa_int(); local
1169 const Type *t2 = phase->type( in(2) ); local
1247 const TypeInt *t2 = phase->type( in(2) )->isa_int(); local
1298 const Type *t2 = phase->type( in(2) ); local
[all...]
/openjdk7/jdk/src/share/native/sun/awt/medialib/
H A Dmlib_c_ImageLookUp_f.c128 t2 = table1[s0>>8]; \
135 t2 = table1[s1 & 0xFF]; \
144 t2 = *(mlib_u16*)((mlib_u8*)table3 + ((s0 >> 23) & 0x1FE))
151 t2 = *(mlib_u16*)((mlib_u8*)table3 + ((s1 << 1) & 0x1FE))
157 t2 = *(mlib_u16*)((mlib_u8*)table2 + ((s1 >> 23) & 0x1FE))
163 t2 = *(mlib_u32*)((mlib_u8*)table2 + ((s0 >> 14) & 0x3FC)); \
172 t2 = table2[s1>>8]; \
179 t2 = table2[s1 & 0xFF]; \
186 t2 = *(mlib_u16*)((mlib_u8*)table2 + ((s0 >> 7) & 0x1FE)); \
193 t2
232 mlib_u32 s0, s1, s2, t0, t1, t2, t3, t; local
322 mlib_u32 s0, s1, s2, t0, t1, t2, t3, t; local
435 mlib_u32 s0, s1, s2, t0, t1, t2, t3, t; local
585 mlib_u32 s0, s1, s2, t0, t1, t2, t3, t; local
806 mlib_u32 s0, s1, t0, t1, t2, t3; local
904 mlib_u32 s0, s1, t0, t1, t2, t3; local
1025 mlib_u32 s0, s1, t0, t1, t2, t3; local
1183 mlib_u32 s0, s1, t0, t1, t2, t3; local
1471 mlib_u32 s0, t0, t1, t2, t3; local
1522 mlib_u32 s0, t0, t1, t2, t3; local
1590 mlib_u32 s0, t0, t1, t2, t3; local
1683 mlib_u32 s0, t0, t1, t2, t3; local
1876 mlib_s32 s0, t0, s1, t1, t, t2, off; local
2169 mlib_u32 s0, t0, s1, t1, t2; local
2318 mlib_u32 t0, t1, t2, t3, t4, t5; local
2439 mlib_u32 t0, t1, t2, t3; local
2587 mlib_u32 t0, t1, t2, t3, t4, t5; local
2708 mlib_u32 t0, t1, t2, t3; local
2887 mlib_u32 s0, t0, s1, t1, t2; local
3024 mlib_u32 s0, s1, t0, t1, t2, t3; local
3137 mlib_u32 s0, t0, s1, t1, t2, t3, t4, t5; local
3419 mlib_u32 s0, t0, t1, t2, t3; local
3524 mlib_u32 s0, t0, t1, t2, t3, t4, t5; local
3656 mlib_u32 s0, t0, t1, t2, t3; local
[all...]
H A Dmlib_ImageLookUp_64.c176 t2 = *(mlib_d64*)((mlib_u8*)table2 + ((s0 >> 13) & 0x7F8)); \
184 t2 = *(mlib_d64*)((mlib_u8*)table2 + ((s0 >> 5) & 0x7F8)); \
210 mlib_d64 t0, t1, t2, t3; local
236 dp[2] = t2;
243 dp[2] = t2;
261 mlib_d64 t0, t1, t2, t3; local
297 dp[2] = t2;
304 dp[2] = t2;
329 mlib_d64 t0, t1, t2, t3; local
381 dp[2] = t2;
422 mlib_d64 t0, t1, t2, t3; local
593 mlib_d64 t0, t1, t2, t3; local
698 mlib_d64 t0, t1, t2, t3, t4, t5; local
830 mlib_d64 t0, t1, t2, t3; local
[all...]
/openjdk7/jdk/test/javax/management/notification/
H A DBroadcasterSupportDeadlockTest.java94 Thread t2 = new Thread() {
104 t2.setDaemon(true);
105 t2.start();
112 t2.join(1/*ms*/);
113 switch (t2.getState()) {
121 showStackTrace("Thread 2", traces.get(t2));
/openjdk7/langtools/src/share/classes/com/sun/mirror/util/
H A DTypes.java56 * @param t2 the second type
60 boolean isSubtype(TypeMirror t1, TypeMirror t2); argument
66 * @param t2 the second type
70 boolean isAssignable(TypeMirror t1, TypeMirror t2); argument

Completed in 306 milliseconds

12345678