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

12

/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/test/sun/tools/jcmd/
H A Djcmd_pid_Output1.awk7 # section 4 = "For more information about a specific command use 'help <command>'."
42 /^For more information about a specific command use 'help <command>'\.$/{
/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/src/share/demo/jvmti/hprof/
H A DREADME.txt80 See the java_crw_demo source and documentation for more info.
94 The heap=dump option requires considerable more space
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/ref/
H A DIncrementalSAXSource_Xerces.java291 * parser that we need more nodes. This is intended to be called
298 * @return Boolean.TRUE if the CoroutineParser believes more data may be available
416 boolean more=true;
418 for(result = parser.deliverMoreNodes(more);
420 result = parser.deliverMoreNodes(more))
422 System.out.println("\nSome parsing successful, trying more.\n");
428 more=false;
/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/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/src/share/classes/sun/security/jgss/krb5/
H A DMessageToken_v2.java14 * version 2 for more details (a copy is included in the LICENSE file that
227 // Hope while blocked in the read above, more data would
229 int more = is.available();
230 tokenDataLen = minSize + more;
232 readFully(is, tokenData, minSize, more);
532 // more filler for MicToken
/openjdk7/hotspot/agent/make/
H A Dstart-debug-server-windbg.bat13 REM version 2 for more details (a copy is included in the LICENSE file that
H A Dstart-debug-server-windbg64.bat13 REM version 2 for more details (a copy is included in the LICENSE file that
H A Dstart-rmiregistry.bat13 REM version 2 for more details (a copy is included in the LICENSE file that
H A Dsaenv.bat13 REM version 2 for more details (a copy is included in the LICENSE file that
H A Dsaenv64.bat13 REM version 2 for more details (a copy is included in the LICENSE file that
/openjdk7/langtools/src/share/classes/com/sun/tools/javadoc/
H A DClassDocImpl.java14 * version 2 for more details (a copy is included in the LICENSE file that
659 List<ClassDocImpl> more = List.nil();
666 if (c != null) more = more.prepend(c);
670 for (; more.nonEmpty(); more=more.tail) {
671 more.head.addAllClasses(l, filtered);
/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/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/hotspot/agent/src/scripts/
H A Dstart-debug-server.bat14 REM version 2 for more details (a copy is included in the LICENSE file that
H A Dstart-rmiregistry.bat14 REM version 2 for more details (a copy is included in the LICENSE file that
/openjdk7/hotspot/make/windows/
H A Dcross_build.bat13 REM version 2 for more details (a copy is included in the LICENSE file that
/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)

Completed in 64 milliseconds

12