Searched defs:join (Results 1 - 9 of 9) sorted by relevance

/libcore/luni/src/test/java/tests/support/
H A DThreadPool.java73 public void join() { method in class:ThreadPool
83 threads[i].join();
/libcore/json/src/main/java/org/json/
H A DJSONArray.java524 public String join(String separator) throws JSONException { method in class:JSONArray
/libcore/luni/src/main/java/java/net/
H A DDatagramSocketImpl.java124 * Adds this socket to the multicast group {@code addr}. A socket must join
126 * member of multiple groups but may join any group only once.
134 protected abstract void join(InetAddress addr) throws IOException; method in class:DatagramSocketImpl
137 * Adds this socket to the multicast group {@code addr}. A socket must join
139 * member of multiple groups but may join any group only once.
H A DPlainDatagramSocketImpl.java125 public void join(InetAddress addr) throws IOException { method in class:PlainDatagramSocketImpl
/libcore/luni/src/test/java/libcore/java/net/
H A DOldDatagramSocketImplFactoryTest.java157 protected void join(InetAddress arg0) throws IOException { method in class:OldDatagramSocketImplFactoryTest.TestDatagramSocketImpl
H A DOldDatagramSocketTest.java1088 protected void join(InetAddress arg0) throws IOException {}
2055 protected void join(InetAddress arg0) throws IOException { method in class:OldDatagramSocketTest.TestDatagramSocketImpl
/libcore/luni/src/main/java/java/io/
H A DFile.java157 this.path = fixSlashes(join(dirPath, name));
209 private static String join(String prefix, String suffix) { method in class:File
379 return path.isEmpty() ? userDir : join(userDir, path);
/libcore/luni/src/main/java/java/lang/
H A DThread.java653 * or one of {@code Thread}'s {@code join()} or {@code sleep()} methods will
749 * the receiver while it was in the <code>join()</code> call
753 public final void join() throws InterruptedException { method in class:Thread
773 * the receiver while it was in the <code>join()</code> call
777 public final void join(long millis) throws InterruptedException { method in class:Thread
778 join(millis, 0);
789 * the receiver while it was in the <code>join()</code> call
793 public final void join(long millis, int nanos) throws InterruptedException { method in class:Thread
802 join();
/libcore/luni/src/main/java/java/util/concurrent/
H A DForkJoinTask.java38 * {@link #fork} and {@link #join}, or derivatives such as {@link
42 * support of new forms of fork/join processing.
50 * asynchronous execution, and {@link #join}, that doesn't proceed
55 * cooperate with fork/join scheduling. Tasks should also not perform
66 * rethrown to callers attempting to join them. These exceptions may
76 * results of a task is {@link #join}, but there are several variants:
80 * equivalent to {@code fork(); join()} but always attempts to begin
103 * particular style of fork/join processing, typically {@link
117 * <p>Method {@link #join} and its variants are appropriate for use
130 * creating new basic styles of fork/join processin
609 public final V join() { method in class:ForkJoinTask
[all...]

Completed in 358 milliseconds