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

123

/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/hotspot/
H A DTest6186134.java12 * version 2 for more details (a copy is included in the LICENSE file that
47 public boolean more() { method in class:Test6186134.TestClass
55 boolean more = more();
56 while ((n++ < maxResults) && more) {
58 more = more();
/openjdk10/hotspot/test/compiler/c2/
H A DTest6186134.java12 * version 2 for more details (a copy is included in the LICENSE file that
44 public boolean more() { method in class:Test6186134
52 boolean more = more();
53 while ((n++ < maxResults) && more) {
55 more = more();
/openjdk10/jdk/src/java.base/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
364 * <li><p> The {@code *} character matches zero or more {@link Character
368 * <li><p> The {@code **} characters matches zero or more {
[all...]
/openjdk10/corba/src/java.corba/share/classes/com/sun/jndi/cosnaming/
H A DCNBindingEnumeration.java14 * version 2 for more details (a copy is included in the LICENSE file that
57 private boolean more = false; // iterator done? field in class:CNBindingEnumeration
90 more = _bindingIter.next_n(batchsize, _bindingList);
92 more = false;
103 if (more && counter >= _bindingList.value.length) {
106 if (more && counter < _bindingList.value.length) {
117 * Returns true or false depending on whether there are more bindings.
122 // If there's more, check whether current bindingList has been exhausted,
123 // and if so, try to get more.
124 // If no more, jus
[all...]
/openjdk10/langtools/test/tools/javac/lib/combo/
H A DComboParameter.java12 * version 2 for more details (a copy is included in the LICENSE file that
51 * in as parameter, to make expansion more flexible.
83 * lead to more holes, the process has to be applied until a fixed point is reached.
89 boolean more = false;
100 more |= pattern.matcher(replacement).find();
104 if (!more)
/openjdk10/langtools/test/lib/combo/tools/javac/combo/
H A DTemplate.java12 * version 2 for more details (a copy is included in the LICENSE file that
69 boolean more = false;
79 more |= pattern.matcher(replacement).find();
83 if (!more)
/openjdk10/jdk/src/java.security.jgss/share/classes/sun/security/krb5/
H A DRealm.java14 * version 2 for more details (a copy is included in the LICENSE file that
218 * @param data the Der input stream value, which contains one or more marshaled value.
280 * When a path value has more than two realms, they can be specified
329 String[] more = value.split("\\s+");
331 for (int i=more.length-1; i>=0; i--) {
332 if (path.contains(more[i])
333 || more[i].equals(".")
334 || more[i].equals(cRealm)
335 || more[i].equals(sRealm)
336 || more[
[all...]
/openjdk10/langtools/src/jdk.jshell/share/classes/jdk/jshell/spi/
H A DExecutionControl.java14 * version 2 for more details (a copy is included in the LICENSE file that
214 boolean more() {
233 while (more() && Character.isWhitespace(ch)) {
241 while (more() && Character.isJavaIdentifierPart(ch)) {
255 if (!more() || ch != exp) {
266 while (more()) {
285 if (sr.more()) {
287 while (sr.more()) {
291 if (sr.more()) {
/openjdk10/jdk/test/sun/security/tools/jarsigner/
H A DWarning.java12 * version 2 for more details (a copy is included in the LICENSE file that
185 // Creates a self-signed cert for alias with zero or more -genkey options
186 static void newCert(String alias, String... more) throws Exception { argument
188 for (String s: more) {
194 // Asks ca to issue a cert to alias with zero or more -gencert options
195 static void issueCert(String alias, String...more) throws Exception {
199 for (String s: more) {
/openjdk10/jdk/src/java.base/share/classes/sun/security/provider/
H A DCtrDrbg.java14 * version 2 for more details (a copy is included in the LICENSE file that
239 byte[] more;
243 more = nonce;
250 more = Arrays.copyOf(
252 System.arraycopy(personalizationString, 0, more, nonce.length,
259 more = personalizationString;
261 reseedAlgorithm(ei, more);
413 // Step 3. seed_material = entropy_input XOR more
/openjdk10/jdk/src/jdk.jlink/share/classes/jdk/tools/jlink/internal/
H A DUtils.java14 * version 2 for more details (a copy is included in the LICENSE file that
107 public static Path getJRTFSPath(String first, String... more) { argument
108 return jrtFileSystem().getPath(first, more);
/openjdk10/jdk/src/java.naming/share/classes/com/sun/jndi/ldap/
H A DAbstractLdapNamingEnumeration.java14 * version 2 for more details (a copy is included in the LICENSE file that
171 private boolean more = true; // assume we have something to start with field in class:AbstractLdapNamingEnumeration
181 return more;
186 if (!more) {
189 return (more = hasMoreImpl());
213 // whether there are any more elements
/openjdk10/langtools/src/java.compiler/share/classes/javax/tools/
H A DStandardJavaFileManager.java14 * version 2 for more details (a copy is included in the LICENSE file that
428 * @param more additional strings to be joined to form the path string
431 Path getPath(String first, String... more); argument
439 * {@link java.nio.file.Paths#get(String, String...) java.nio.file.Paths.get(first, more)}
/openjdk10/jdk/test/sanity/client/lib/jemmy/src/org/netbeans/jemmy/drivers/scrolling/
H A DJScrollBarDriver.java12 * version 2 for more details (a copy is included in the LICENSE file that
193 JButtonOperator more = findAButton(oper, ScrollAdjuster.INCREASE_SCROLL_DIRECTION);
194 Point pnt = getClickPoint((JScrollBarOperator) oper, less, more, ((JScrollBarOperator) oper).getValue());
215 JButtonOperator more = findAButton(oper, ScrollAdjuster.INCREASE_SCROLL_DIRECTION);
216 int width = oper.getWidth() - less.getWidth() - more.getWidth();
217 int height = oper.getHeight() - less.getHeight() - more.getHeight();
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xml/internal/dtm/ref/
H A DIncrementalSAXSource_Xerces.java5 * Licensed to the Apache Software Foundation (ASF) under one or more
291 * 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
417 boolean more=true;
419 for(result = parser.deliverMoreNodes(more);
421 result = parser.deliverMoreNodes(more))
423 System.out.println("\nSome parsing successful, trying more.\n");
429 more=false;
/openjdk10/langtools/test/tools/javac/annotations/typeAnnotations/failures/
H A DLintCast.java43 void more() { method in class:LintCast
/openjdk10/jdk/src/java.base/windows/classes/sun/nio/fs/
H A DWindowsFileSystem.java14 * version 2 for more details (a copy is included in the LICENSE file that
213 public final Path getPath(String first, String... more) { argument
215 if (more.length == 0) {
220 for (String segment: more) {
/openjdk10/jdk/src/java.base/unix/classes/sun/nio/fs/
H A DUnixFileSystem.java14 * version 2 for more details (a copy is included in the LICENSE file that
264 public final Path getPath(String first, String... more) { argument
266 if (more.length == 0) {
271 for (String segment: more) {
/openjdk10/hotspot/src/share/vm/gc/shared/
H A DblockOffsetTable.cpp12 * version 2 for more details (a copy is included in the LICENSE file that
361 // the somewhat more lightweight split_block() or
417 // started by a block B can be 0, 1, or more.
421 // the split start; end_index is one more than the index of
450 bool more = true; local
453 while (more && (i < BOTConstants::N_powers)) {
459 more = false;
471 more = false; // we are done
480 while (more && (i < BOTConstants::N_powers)) {
489 more
[all...]
/openjdk10/jdk/src/java.security.jgss/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
/openjdk10/langtools/src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/util/links/
H A DLinkFactory.java14 * version 2 for more details (a copy is included in the LICENSE file that
151 boolean more = false;
161 link.addContent(more ? " & " : " extends ");
164 more = true;
/openjdk10/jdk/test/jdk/internal/jrtfs/
H A DPathOps.java12 * version 2 for more details (a copy is included in the LICENSE file that
46 private PathOps(String first, String... more) { argument
50 path = fs.getPath(first, more);
230 static PathOps test(String first, String... more) { argument
231 return new PathOps(first, more);
/openjdk10/jdk/test/jdk/nio/zipfs/
H A DPathOps.java12 * version 2 for more details (a copy is included in the LICENSE file that
53 private PathOps(String first, String... more) { argument
57 path = fs.getPath(first, more);
244 static PathOps test(String first, String... more) { argument
245 return new PathOps(first, more);
/openjdk10/jdk/src/java.desktop/share/native/libfontmanager/harfbuzz/
H A Dhb-ot-layout-gsub-table.hh44 for (iter.init (this+coverage); iter.more (); iter.next ())
58 for (iter.init (this+coverage); iter.more (); iter.next ())
130 for (iter.init (this+coverage); iter.more (); iter.next ())
144 for (iter.init (this+coverage); iter.more (); iter.next ())
339 for (iter.init (this+coverage); iter.more (); iter.next ())
461 for (iter.init (this+coverage); iter.more (); iter.next ())
479 for (iter.init (this+coverage); iter.more (); iter.next ())
792 for (iter.init (this+coverage); iter.more (); iter.next ())
806 for (iter.init (this+coverage); iter.more (); iter.next ())
961 for (iter.init (this+coverage); iter.more (); ite
[all...]

Completed in 321 milliseconds

123