Searched refs:with (Results 201 - 225 of 231) sorted by relevance

12345678910

/openjdk10/jdk/src/java.base/share/classes/java/time/
H A DLocalDate.java18 * 2 along with this work; if not, write to the Free Software Foundation,
36 * Redistribution and use in source and binary forms, with or without
44 * and/or other materials provided with the distribution.
237 * This returns a {@code LocalDate} with the specified year, month and day-of-month.
257 * This returns a {@code LocalDate} with the specified year, month and day-of-month.
278 * This returns a {@code LocalDate} with the specified year and day-of-year.
332 * This returns a {@code LocalDate} with the specified epoch-day.
508 * {@link #get(TemporalField) get} and {@link #with(TemporalField, long)}
736 * Since dates before the Julian-Gregorian cutover are not in line with history,
737 * the cutover between 'BCE' and 'CE' is also not aligned with th
932 public LocalDate with(TemporalAdjuster adjuster) { method in class:LocalDate
1045 public LocalDate with(TemporalField field, long newValue) { method in class:LocalDate
[all...]
H A DZonedDateTime.java18 * 2 along with this work; if not, write to the Free Software Foundation,
36 * Redistribution and use in source and binary forms, with or without
44 * and/or other materials provided with the distribution.
95 * A date-time with a time-zone in the ISO-8601 calendar system,
98 * {@code ZonedDateTime} is an immutable representation of a date-time with a time-zone.
100 * and a time-zone, with a zone offset used to handle ambiguous local date-times.
116 * <li>Normal, with one valid offset. For the vast majority of the year, the normal
118 * <li>Gap, with zero valid offsets. This is when clocks jump forward typically
120 * In a gap there are local date-time values with no valid offset.</li>
121 * <li>Overlap, with tw
1229 public ZonedDateTime with(TemporalAdjuster adjuster) { method in class:ZonedDateTime
1302 public ZonedDateTime with(TemporalField field, long newValue) { method in class:ZonedDateTime
[all...]
/openjdk10/jdk/test/lib/testlibrary/bootlib/java.base/java/util/stream/
H A DOpTestCase.java16 * 2 along with this work; if not, write to the Free Software Foundation,
114 // If the first version is s -> s.foo(), can be used with s -> s.mapToInt(i -> i).foo().mapToObj(i -> i) to test all shape variants
149 // Run multiple versions of exercise() with multiple terminal operations for all kinds of stream, , and asserting against the expected result
150 // If the first version is s -> s.foo(), can be used with s -> s.mapToInt(i -> i).foo().mapToObj(i -> i) to test all shape variants
169 // Run multiple versions of exercise() with multiple terminal operation for all kinds of stream, and asserting against the expected result
353 public ExerciseDataStreamBuilder<T, U, S_IN, S_OUT> with(BaseStreamTestScenario... tests) { method in class:OpTestCase.ExerciseDataStreamBuilder
354 return with(Arrays.asList(tests));
357 public ExerciseDataStreamBuilder<T, U, S_IN, S_OUT> with(Collection<? extends BaseStreamTestScenario> tests) { method in class:OpTestCase.ExerciseDataStreamBuilder
/openjdk10/langtools/src/jdk.jdeps/share/classes/com/sun/tools/javap/
H A DAttributeWriter.java18 * 2 along with this work; if not, write to the Free Software Foundation,
566 println(" with ... " + e.with_count);
568 for (int with : e.with_index) {
569 print("#" + with);
571 println("// ... with " + constantWriter.stringValue(with));
/openjdk10/make/common/
H A DNativeCompilation.gmk18 # 2 along with this work; if not, write to the Free Software Foundation,
101 # Create a default toolchain with the main compiler and linker
116 # Create a toolchain where linking is done with the C++ linker
122 # Create a toolchain with the BUILD compiler, used for build tools that
136 # BUILD toolchain with the C++ linker
147 # Replaces native source extensions with the object file extension in a string.
148 # Param 1: the string containing source file names with extensions
266 # source file override any other with the same name.
301 # generated deps files. Fixing it with sed. If compiling assembly, don't try this.
355 # EXCLUDE_FILES with thes
[all...]
/openjdk10/jdk/test/java/time/tck/java/time/
H A DTCKLocalDate.java16 * 2 along with this work; if not, write to the Free Software Foundation,
34 * Redistribution and use in source and binary forms, with or without
42 * and/or other materials provided with the distribution.
465 return date.with(date.getMonth().plus(1));
473 date = date.with(date.getMonth().minus(1));
879 // with()
890 assertEquals(TEST_2007_07_15.with(adjuster), sample);
895 TEST_2007_07_15.with((TemporalAdjuster) null);
899 // with(TemporalField,long)
903 LocalDate t = TEST_2007_07_15.with(YEA
[all...]
H A DTCKInstant.java16 * 2 along with this work; if not, write to the Free Software Foundation,
34 * Redistribution and use in source and binary forms, with or without
42 * and/or other materials provided with the distribution.
471 // with(TemporalAdjuster)
473 @DataProvider(name="with")
491 @Test(dataProvider="with")
494 Instant result = test.with(adjuster);
498 Instant result = test.with(adjuster);
507 // with(TemporalField, long)
542 Instant result = test.with(fiel
[all...]
/openjdk10/hotspot/src/os_cpu/linux_x86/vm/
H A Dlinux_x86_64.s16 # 2 along with this work; if not, write to the Free Software Foundation,
/openjdk10/hotspot/src/os_cpu/solaris_x86/vm/
H A Dsolaris_x86_64.s16 / 2 along with this work; if not, write to the Free Software Foundation,
/openjdk10/jdk/src/java.base/share/classes/java/time/chrono/
H A DJapaneseChronology.java18 * 2 along with this work; if not, write to the Free Software Foundation,
31 * Redistribution and use in source and binary forms, with or without
39 * and/or other materials provided with the distribution.
100 * Japan introduced the Gregorian calendar starting with Meiji 6.
169 * {@link Locale#getUnicodeLocaleType(String)} with the key 'ca'.
280 @Override // override with covariant return type
330 * Japanese calendar leap years occur exactly in line with ISO leap years.
482 result = date(y, moy, 1).with(TemporalAdjusters.lastDayOfMonth());
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xml/internal/serialize/
H A DXMLSerializer.java6 * contributor license agreements. See the NOTICE file distributed with
9 * (the "License"); you may not use this file except in compliance with
22 // Fixed problem with namespace handling. Contributed by
73 * serializing with {@link org.w3c.dom.ls.LSSerializer#write},
301 // separated with a space so the element can be broken on
366 // with the tag name and space preserving.
398 // Works much like content() with additions for closing
490 // separated with a space so the element can be broken on
516 // with the tag name and space preserving.
718 // separated with
[all...]
/openjdk10/jdk/src/java.base/share/classes/
H A Dmodule-info.java18 * 2 along with this work; if not, write to the Free Software Foundation,
365 provides java.nio.file.spi.FileSystemProvider with
/openjdk10/jdk/make/src/classes/build/tools/tzdb/
H A DTzdbZoneRulesProvider.java18 * 2 along with this work; if not, write to the Free Software Foundation,
297 date = date.with(TemporalAdjusters.previousOrSame(dayOfWeek));
302 date = date.with(TemporalAdjusters.nextOrSame(dayOfWeek));
668 * Tests if this a real transition with the active savings in seconds
/openjdk10/langtools/src/jdk.jdeps/share/classes/com/sun/tools/classfile/
H A DClassWriter.java18 * 2 along with this work; if not, write to the Free Software Foundation,
164 * Subtype of ByteArrayOutputStream with the convenience methods of
575 for (int with : e.with_index) {
576 out.writeShort(with);
883 // TODO: Move this to TypeAnnotation to be closer with similar logic?
/openjdk10/common/autoconf/
H A Dgenerated-configure.sh93 # (If _AS_PATH_WALK were called with IFS unset, it would disable word
118 $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
163 $as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2
264 $as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2
287 # Unset more variables known to interfere with behavior of common tools.
313 # Exit the shell with STATUS, even in a "trap 0" or "set -e" context.
416 # script with STATUS, using 1 if that was 0.
495 { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; }
497 # If we had to re-execute with $CONFIG_SHELL, we're ensured to have
1364 # The variables have the same names as the options, with
[all...]
/openjdk10/corba/src/jdk.rmic/share/classes/sun/rmi/rmic/iiop/
H A DCompoundType.java18 * 2 along with this work; if not, write to the Free Software Foundation,
815 // Gotta try with context...
1390 // replace the old method with the new.
1895 * that are subclasses of an exception in the "with" array.
1898 ValueType[] from, ValueType[] with, Vector list)
1904 for (int j = 0; j < with.length; j++) {
1907 with[j].getClassDeclaration())) {
2026 * For methods with the same name and type signature inherited
1897 collectCompatibleExceptions( ValueType[] from, ValueType[] with, Vector list) argument
/openjdk10/hotspot/src/os_cpu/bsd_x86/vm/
H A Dbsd_x86_64.s16 # 2 along with this work; if not, write to the Free Software Foundation,
H A Dbsd_x86_32.s16 # 2 along with this work; if not, write to the Free Software Foundation,
/openjdk10/jdk/src/java.naming/share/classes/com/sun/jndi/ldap/
H A DLdapSchemaParser.java18 * 2 along with this work; if not, write to the Free Software Foundation,
278 // Always begins with <whsp numericoid whsp>
440 // otherwise it's a schema element with a quoted string value
704 "Problem with Schema tree: the object named " +
728 "Problem with schema tree: the object named " +
752 "Problem with schema tree: the object named " +
/openjdk10/jdk/test/java/time/tck/java/time/chrono/
H A DTCKChronology.java16 * 2 along with this work; if not, write to the Free Software Foundation,
34 * Redistribution and use in source and binary forms, with or without
42 * and/or other materials provided with the distribution.
185 ChronoLocalDate date2 = date1.with(ChronoField.EPOCH_DAY, epoch1);
/openjdk10/jdk/test/java/time/tck/java/time/temporal/
H A DTCKTemporalAdjusters.java16 * 2 along with this work; if not, write to the Free Software Foundation,
34 * Redistribution and use in source and binary forms, with or without
42 * and/or other materials provided with the distribution.
93 assertEquals(LocalDate.of(2012, 6, 30).with(test), LocalDate.of(2012, 7, 2));
/openjdk10/jdk/test/jdk/lambda/separate/
H A DSourceModel.java16 * 2 along with this work; if not, write to the Free Software Foundation,
35 // Called with a generated source file
168 // according to their type. Class (or Extends with a Class type) is
170 // generic parameter names. Interface (or Extends with an Interface
217 public Extends with(String ... args) { method in class:SourceModel.Type
539 // use a ConcreteMethod with an AccessFlag("default") in the constructor
/openjdk10/langtools/test/tools/javac/lambdaShapes/org/openjdk/tests/separate/
H A DSourceModel.java16 * 2 along with this work; if not, write to the Free Software Foundation,
35 // Called with a generated source file
169 // according to their type. Class (or Extends with a Class type) is
171 // generic parameter names. Interface (or Extends with an Interface
226 public Extends with(String ... args) { method in class:SourceModel.Type
542 // use a ConcreteMethod with an AccessFlag("default") in the constructor
/openjdk10/jdk/src/java.base/share/classes/java/lang/reflect/
H A DProxyGenerator.java18 * 2 along with this work; if not, write to the Free Software Foundation,
403 * proxy methods with that signature
411 * Construct a ProxyGenerator to generate a proxy class with the
447 * earlier interfaces precedence over later ones with duplicate
457 * For each set of proxy methods with the same signature,
600 * compatibly with the throws clauses of both
623 * For a given set of proxy methods with the same signature, check
633 * If there is only one method with a given signature, there
652 "methods with same signature " +
680 * with th
1548 collectCompatibleTypes(Class<?>[] from, Class<?>[] with, List<Class<?>> list) argument
[all...]
/openjdk10/common/bin/
H A Dcompare.sh17 # 2 along with this work; if not, write to the Free Software Foundation,
110 # The module-info.class have several issues with random ordering of
299 # old file but not in new (only files with full-path) this makes file
334 echo Other files with binary differences...
361 # Older versions of compare might have left soft links with
1084 echo "-o [OTHER] Compare with build in other directory. Will default to the old build directory"
1216 echo Warning: Not stripping even with --strip, since strip is missing on this platform
1273 echo "Nothing to compare to, set with -o"
1311 # Simply override the THIS and OTHER dir with the build dir from

Completed in 383 milliseconds

12345678910