Searched refs:more (Results 1 - 5 of 5) sorted by relevance

/libcore/ojluni/src/main/java/java/nio/file/
H A DPaths.java14 * version 2 for more details (a copy is included in the LICENSE file that
43 * a path string, to a {@code Path}. If {@code more} does not specify any
45 * to convert. If {@code more} specifies one or more elements then each
54 * is the empty string and {@code more} does not contain any non-empty
64 * intended for flexible reuse. A more flexible alternative is to use an
73 * @param more
83 public static Path get(String first, String... more) { argument
84 return FileSystems.getDefault().getPath(first, more);
H A DFileSystem.java14 * version 2 for more details (a copy is included in the LICENSE file that
68 * is typically composed of one or more underlying {@link FileStore file-stores}
247 * a path string, to a {@code Path}. If {@code more} does not specify any
249 * to convert. If {@code more} specifies one or more elements then each
258 * is the empty string and {@code more} does not contain any non-empty
287 * @param more
295 public abstract Path getPath(String first, String... more); argument
353 * <li><p> The {@code *} character matches zero or more {@link Character
357 * <li><p> The {@code **} characters matches zero or more {
[all...]
/libcore/json/src/test/java/libcore/org/json/
H A DJSONTokenerTest.java36 new JSONTokener(null).more();
111 assertFalse(new JSONTokener("").more());
155 assertFalse(abcdeTokener.more());
157 assertTrue(abcdeTokener.more());
163 assertTrue(abcTokener.more());
166 assertTrue(abcTokener.more());
168 assertFalse(abcTokener.more());
170 assertTrue(abcTokener.more());
172 assertFalse(abcTokener.more());
361 assertFalse(tokener.more());
[all...]
/libcore/luni/src/test/filesystems/src/mypackage/
H A DMockFileSystem.java99 public Path getPath(String first, String... more) { argument
/libcore/ojluni/src/main/java/sun/nio/fs/
H A DUnixFileSystem.java14 * version 2 for more details (a copy is included in the LICENSE file that
265 public final Path getPath(String first, String... more) { argument
267 if (more.length == 0) {
272 for (String segment: more) {

Completed in 648 milliseconds