Searched defs:more (Results 1 - 16 of 16) sorted by relevance

/openjdk7/hotspot/test/compiler/5091921/
H A DTest6186134.java12 * version 2 for more details (a copy is included in the LICENSE file that
42 public boolean more() { method in class:Test6186134
50 boolean more = more();
51 while ((n++ < maxResults) && more) {
53 more = more();
/openjdk7/jdk/src/share/classes/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
359 * <li><p> The {@code *} character matches zero or more {@link Character
363 * <li><p> The {@code **} characters matches zero or more {
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jndi/cosnaming/
H A DCNBindingEnumeration.java14 * version 2 for more details (a copy is included in the LICENSE file that
56 private boolean more = false; // iterator done? field in class:CNBindingEnumeration
89 more = _bindingIter.next_n(batchsize, _bindingList);
91 more = false;
102 if (more && counter >= _bindingList.value.length) {
105 if (more && counter < _bindingList.value.length) {
116 * Returns true or false depending on whether there are more bindings.
121 // If there's more, check whether current bindingList has been exhausted,
122 // and if so, try to get more.
123 // If no more, jus
[all...]
/openjdk7/jdk/src/windows/classes/sun/nio/fs/
H A DWindowsFileSystem.java14 * version 2 for more details (a copy is included in the LICENSE file that
239 public final Path getPath(String first, String... more) { argument
241 if (more.length == 0) {
246 for (String segment: more) {
/openjdk7/langtools/test/tools/javah/compareTest/
H A DCompareTest.java12 * version 2 for more details (a copy is included in the LICENSE file that
250 void error(String msg, String... more) { argument
253 for (String s: more)
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DLdapNamingEnumeration.java14 * version 2 for more details (a copy is included in the LICENSE file that
172 private boolean more = true; // assume we have something to start with field in class:LdapNamingEnumeration
181 return more;
186 if (!more) {
189 return (more = hasMoreImpl());
212 // whether there are any more elements
/openjdk7/jdk/test/java/nio/file/Path/
H A DPathOps.java12 * version 2 for more details (a copy is included in the LICENSE file that
39 private PathOps(String first, String... more) { argument
43 path = FileSystems.getDefault().getPath(first, more);
208 static PathOps test(String first, String... more) { argument
209 return new PathOps(first, more);
/openjdk7/jdk/test/java/nio/file/spi/
H A DTestProvider.java12 * version 2 for more details (a copy is included in the LICENSE file that
226 public Path getPath(String first, String... more) { argument
/openjdk7/jdk/src/solaris/classes/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) {
/openjdk7/hotspot/src/share/vm/memory/
H A DblockOffsetTable.cpp12 * version 2 for more details (a copy is included in the LICENSE file that
378 // the somewhat more lightweight split_block() or
434 // started by a block B can be 0, 1, or more.
438 // the split start; end_index is one more than the index of
466 bool more = true; local
468 while (more && (i < N_powers)) {
474 more = false;
483 more = false; // we are done
490 while (more && (i < N_powers)) {
499 more
[all...]
/openjdk7/jdk/test/java/nio/file/Files/
H A DPassThroughFileSystem.java12 * version 2 for more details (a copy is included in the LICENSE file that
128 public Path getPath(String first, String... more) { argument
129 return new PassThroughPath(this, delegate.getPath(first, more));
/openjdk7/jdk/src/share/native/java/util/zip/zlib-1.2.3/
H A Ddeflate.c13 * version 2 for more details (a copy is included in the LICENSE file that
43 * is preferable to spend more time in matches to allow very fast string
49 * A previous version of this file used a more sophisticated algorithm
51 * time, but has a larger average cost, uses more memory and is patented.
91 need_more, /* block not completed, need more input or more output */
93 finish_started, /* finish started, need only more output at next deflate */
94 finish_done /* finish done, accept no more input or output */
508 * This function could be more sophisticated to provide closer upper bounds
785 * more outpu
1295 unsigned more; /* Amount of free space at the end of the window. */ local
[all...]
/openjdk7/jdk/test/sun/security/krb5/auto/
H A DKDC.java12 * version 2 for more details (a copy is included in the LICENSE file that
354 * Writes a krb5.conf for one or more KDC that includes KDC locations for
360 * Here you can provide one or more kdc# and zero or more line# arguments.
406 * @param more more KDCs or extra lines (in their appearing order) to
411 public static void saveConfig(String file, KDC kdc, Object... more) argument
418 for (Object o: more) {
426 for (Object o: more) {
/openjdk7/jdk/src/share/demo/nio/zipfs/src/com/sun/nio/zipfs/
H A DZipFileSystem.java170 public ZipPath getPath(String first, String... more) { argument
172 if (more.length == 0) {
177 for (String segment: more) {
2224 // more "accurate"
/openjdk7/jdk/src/share/native/com/sun/java/util/jar/pack/
H A Dunpack.cpp14 * version 2 for more details (a copy is included in the LICENSE file that
326 // Attempts to advance rplimit so that (rplimit-rp) is at least 'more'.
328 // Returns false if (rplimit-rp) is not at least 'more',
330 bool unpacker::ensure_input(jlong more) { argument
331 julong want = more - input_remaining();
333 if (rplimit == input.limit()) return true; // not expecting any more
351 // Try to fetch at least "more" bytes.
554 // in the first read. Of course, if archive_size_hi is more than
707 // It's more complicated and painful.
2481 // In a moment, more forwar
[all...]

Completed in 71 milliseconds