Searched refs:ts (Results 1 - 25 of 121) sorted by relevance

12345

/openjdk7/jdk/test/java/lang/Thread/
H A DMainThreadTest.java34 Thread[] ts = new Thread[n];
35 int m = tg.enumerate(ts);
36 for (int i = 0; i < ts.length; i++) {
37 if (Thread.currentThread() == ts[i]) {
/openjdk7/jdk/test/java/io/charStreams/
H A DLineSink.java36 public LineSink(InputStream us, BufferedReader ts, argument
40 this(us, ts, log);
44 public LineSink(InputStream us, BufferedReader ts, PrintWriter log) argument
48 ti = ts;
75 String ts = ti.readLine();
76 if (ts == null) {
83 if (us.length() != ts.length()) {
85 + us + "\", ts = \""
86 + ts + "\"");
89 us.length() + " " + ts
[all...]
H A DLineGenerator.java63 String ts;
66 ts = "\n";
70 ts = "\r";
75 ts = "\r\n";
81 lineTerminator = ts;
H A DRandomLineSource.java37 public RandomLineSource(OutputStream us, BufferedWriter ts, int limit, argument
42 to = ts;
48 public RandomLineSource(OutputStream us, BufferedWriter ts, int limit) { argument
49 this(us, ts, limit, null);
52 public RandomLineSource(BufferedWriter ts, int limit) { argument
53 this(null, ts, limit);
H A DLineLengthsSource.java35 public LineLengthsSource(OutputStream us, BufferedWriter ts, argument
40 to = ts;
71 String ts = termString(t);
72 StringBuffer s = new StringBuffer(ln + ts.length());
77 s.append(ts);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/istack/internal/
H A DFinalArrayList.java47 public FinalArrayList(Collection<? extends T> ts) { argument
48 super(ts);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/org/jvnet/mimepull/
H A DFinalArrayList.java47 public FinalArrayList(Collection<? extends T> ts) { argument
48 super(ts);
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DGenericAttachingConnector.java58 private GenericAttachingConnector(TransportService ts, argument
61 transportService = ts;
93 protected GenericAttachingConnector(TransportService ts) { argument
94 this(ts, false);
101 public static GenericAttachingConnector create(TransportService ts) { argument
102 return new GenericAttachingConnector(ts, true);
111 String ts = argument(ARG_TIMEOUT, args).value();
113 if (ts.length() > 0) {
114 timeout = Integer.decode(ts).intValue();
H A DGenericListeningConnector.java57 private GenericListeningConnector(TransportService ts, argument
60 transportService = ts;
92 protected GenericListeningConnector(TransportService ts) { argument
93 this(ts, false);
100 public static GenericListeningConnector create(TransportService ts) { argument
101 return new GenericListeningConnector(ts, true);
142 String ts = argument(ARG_TIMEOUT, args).value();
144 if (ts.length() > 0) {
145 timeout = Integer.decode(ts).intValue();
H A DProcessAttachingConnector.java124 TransportService ts = null;
126 ts = new SocketTransportService();
131 ts = (TransportService)c.newInstance();
135 if (ts == null) {
141 Connection connection = ts.attach(address, timeout, 0);
/openjdk7/jdk/test/java/nio/file/attribute/FileTime/
H A DBasic.java81 ts(1L, DAYS, "1970-01-02T00:00:00Z");
82 ts(1L, HOURS, "1970-01-01T01:00:00Z");
83 ts(1L, MINUTES, "1970-01-01T00:01:00Z");
84 ts(1L, SECONDS, "1970-01-01T00:00:01Z");
85 ts(1L, MILLISECONDS, "1970-01-01T00:00:00.001Z");
86 ts(1L, MICROSECONDS, "1970-01-01T00:00:00.000001Z");
87 ts(1L, NANOSECONDS, "1970-01-01T00:00:00.000000001Z");
88 ts(999999999L, NANOSECONDS, "1970-01-01T00:00:00.999999999Z");
89 ts(9999999999L, NANOSECONDS, "1970-01-01T00:00:09.999999999Z");
91 ts(
158 static void ts(long v, TimeUnit unit, String expected) { method in class:Basic
[all...]
/openjdk7/jdk/test/java/lang/ref/
H A DNullQueue.java45 Thread[] ts = new Thread[nt];
46 tg.enumerate(ts);
48 for (int i = 0; i < ts.length; i++) {
49 if (ts[i].getName().equals(name)) return ts[i];
/openjdk7/jdk/test/sun/security/tools/jarsigner/
H A Dts.sh28 # @run shell/timeout=600 ts.sh
65 # ts is signer for timestamp
72 $KT -alias ts -genkeypair -dname CN=ts
76 $KT -alias ts -certreq | \
77 $KT -alias ca -gencert -ext eku:critical=ts | \
78 $KT -alias ts -importcert
83 $KT -alias ca -gencert -ext eku=ts | \
/openjdk7/jdk/src/share/classes/java/sql/
H A DTimestamp.java395 * @param ts the <code>Timestamp</code> value to compare with
400 public boolean equals(Timestamp ts) { argument
401 if (super.equals(ts)) {
402 if (nanos == ts.nanos) {
424 * @param ts the <code>Object</code> value to compare with
430 public boolean equals(java.lang.Object ts) { argument
431 if (ts instanceof Timestamp) {
432 return this.equals((Timestamp)ts);
442 * @param ts the <code>Timestamp</code> value to compare with
446 public boolean before(Timestamp ts) { argument
458 after(Timestamp ts) argument
475 compareTo(Timestamp ts) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/reflect/generics/repository/
H A DClassRepository.java94 TypeTree[] ts = getTree().getSuperInterfaces();
96 Type[] sis = new Type[ts.length];
98 for (int i = 0; i < ts.length; i++) {
100 ts[i].accept(r);// reify subtree
/openjdk7/jdk/src/share/classes/javax/xml/crypto/dsig/
H A DTransformService.java55 * TransformService ts = TransformService.getInstance(Transform.XPATH2, "DOM");
167 TransformService ts = (TransformService) instance.impl;
168 ts.algorithm = algorithm;
169 ts.mechanism = mechanismType;
170 ts.provider = instance.provider;
171 return ts;
216 TransformService ts = (TransformService) instance.impl;
217 ts.algorithm = algorithm;
218 ts.mechanism = mechanismType;
219 ts
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DTabSet.java158 TabSet ts = (TabSet) o;
160 if (ts.getTabCount() != count) {
165 TabStop ts2 = ts.getTab(i);
167 (ts1 != null && !getTab(i).equals(ts.getTab(i)))) {
187 TabStop ts = getTab(i);
188 hashCode ^= ts != null ? getTab(i).hashCode() : 0;
/openjdk7/jdk/src/share/classes/sun/reflect/generics/reflectiveObjects/
H A DWildcardTypeImpl.java125 // keeping ts and bounds separate helps with threads
126 Type[] ts = new Type[fts.length];
131 ts[j] = r.getResult();
134 upperBounds = ts;
167 // keeping ts and bounds separate helps with threads
168 Type[] ts = new Type[fts.length];
173 ts[j] = r.getResult();
176 lowerBounds = ts;
H A DTypeVariableImpl.java120 // keeping ts and bounds separate helps with threads
121 Type[] ts = new Type[fts.length];
126 ts[j] = r.getResult();
129 bounds = ts;
/openjdk7/hotspot/src/share/vm/services/
H A DgcNotifier.hpp42 GCNotificationRequest(jlong ts, GCMemoryManager *manager, const char*action, const char *cause,GCStatInfo *info) { argument
44 timestamp = ts;
/openjdk7/jdk/src/windows/classes/com/sun/tools/jdi/
H A DSharedMemoryListeningConnector.java70 SharedMemoryTransportService ts = (SharedMemoryTransportService)transportService;
71 name = ts.defaultAddress();
/openjdk7/langtools/test/tools/javac/processing/model/util/
H A DBinaryName.java48 Set<? extends TypeElement> ts = typesIn(round.getElementsAnnotatedWith(
52 for (TypeElement t : ts) {
/openjdk7/jdk/test/com/sun/jdi/connect/spi/
H A DSimpleLaunchingConnector.java43 TransportService ts; field in class:SimpleLaunchingConnector
97 ts = (TransportService)c.newInstance();
114 return ts.name();
143 TransportService.ListenKey key = ts.startListening();
161 Connection conn = ts.accept(key, 30*1000, 9*1000);
162 ts.stopListening(key);
/openjdk7/jdk/test/sun/security/ssl/com/sun/net/ssl/internal/ssl/SSLEngineImpl/
H A DCloseStart.java94 KeyStore ts = KeyStore.getInstance("JKS");
99 ts.load(new FileInputStream(trustFile), passphrase);
105 tmf.init(ts);
/openjdk7/jdk/src/solaris/native/sun/nio/ch/
H A DSolarisEventPort.c116 timespec_t ts; local
120 ts.tv_sec = timeout / 1000;
121 ts.tv_nsec = 1000000 * (timeout % 1000);
122 tsp = &ts;

Completed in 180 milliseconds

12345