Searched refs:with (Results 51 - 75 of 231) sorted by relevance

12345678910

/openjdk10/langtools/src/jdk.javadoc/share/classes/
H A Dmodule-info.java18 * 2 along with this work; if not, write to the Free Software Foundation,
42 * or the {@linkplain java.util.ServiceLoader service loader} with the name
71 provides java.util.spi.ToolProvider with
74 provides javax.tools.DocumentationTool with
77 provides javax.tools.Tool with
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/
H A DKillingBeginNode.java16 * 2 along with this work; if not, write to the Free Software Foundation,
45 public static AbstractBeginNode begin(FixedNode with, LocationIdentity locationIdentity) { argument
46 if (with instanceof KillingBeginNode) {
47 return (KillingBeginNode) with;
49 AbstractBeginNode begin = with.graph().add(KillingBeginNode.create(locationIdentity));
50 begin.setNext(with);
H A DBeginNode.java16 * 2 along with this work; if not, write to the Free Software Foundation,
74 public static AbstractBeginNode begin(FixedNode with) { argument
75 if (with instanceof AbstractBeginNode) {
76 return (AbstractBeginNode) with;
78 BeginNode begin = with.graph().add(new BeginNode());
79 begin.setNext(with);
/openjdk10/jdk/src/jdk.jartool/share/classes/
H A Dmodule-info.java18 * 2 along with this work; if not, write to the Free Software Foundation,
35 * or the {@linkplain java.util.ServiceLoader service loader} with the name
51 provides java.util.spi.ToolProvider with
/openjdk10/jdk/src/jdk.management/share/classes/
H A Dmodule-info.java18 * 2 along with this work; if not, write to the Free Software Foundation,
37 provides sun.management.spi.PlatformMBeanProvider with
/openjdk10/jdk/src/jdk.naming.dns/share/classes/
H A Dmodule-info.java18 * 2 along with this work; if not, write to the Free Software Foundation,
39 provides javax.naming.spi.InitialContextFactory with
/openjdk10/jdk/test/java/sql/modules/mystubdriver/
H A Dmodule-info.java16 * 2 along with this work; if not, write to the Free Software Foundation,
27 provides java.sql.Driver with
/openjdk10/jdk/test/java/util/ResourceBundle/modules/appbasic/src/test/
H A Dmodule-info.java16 * 2 along with this work; if not, write to the Free Software Foundation,
27 provides jdk.test.resources.spi.MyResourcesProvider with jdk.test.resources.MyResourcesProviderImpl;
/openjdk10/jdk/test/java/util/ResourceBundle/modules/basic/src/mainbundles/
H A Dmodule-info.java16 * 2 along with this work; if not, write to the Free Software Foundation,
27 with jdk.test.resources.MyResourcesMain;
/openjdk10/jdk/test/java/util/ResourceBundle/modules/layer/src/m1/
H A Dmodule-info.java16 * 2 along with this work; if not, write to the Free Software Foundation,
28 provides p.resources.spi.MyResourceProvider with p.internal.BundleProvider;
/openjdk10/jdk/test/java/util/ResourceBundle/modules/simple/src/bundles/
H A Dmodule-info.java16 * 2 along with this work; if not, write to the Free Software Foundation,
26 provides jdk.test.resources.spi.MyResourcesProvider with jdk.test.resources.spi.MyResourcesProvider;
/openjdk10/jdk/test/java/util/ResourceBundle/modules/visibility/src/exported.named.bundles/
H A Dmodule-info.java16 * 2 along with this work; if not, write to the Free Software Foundation,
29 with jdk.test.resources.exported.classes.spi.MyResourcesProvider;
/openjdk10/jdk/test/java/util/ResourceBundle/modules/xmlformat/src/bundles/
H A Dmodule-info.java16 * 2 along with this work; if not, write to the Free Software Foundation,
26 provides jdk.test.resources.spi.MyResourcesProvider with jdk.test.resources.spi.MyResourcesProvider;
/openjdk10/jdk/test/java/util/ResourceBundle/modules/appbasic2/src/test/
H A Dmodule-info.java16 * 2 along with this work; if not, write to the Free Software Foundation,
27 provides jdk.test.resources.spi.MyResourcesProvider with jdk.test.resources.MyResourcesProviderImpl;
/openjdk10/langtools/test/tools/javac/api/mod/
H A Dmodule-info.java16 * 2 along with this work; if not, write to the Free Software Foundation,
29 with api/*getElement:PACKAGE:api*/.pkg/*getElement:PACKAGE:api.pkg*/.Api/*getElement:CLASS:api.pkg.Api*/;
/openjdk10/jdk/test/java/util/zip/ZipFile/
H A Ddeletetempjar.sh18 # 2 along with this work; if not, write to the Free Software Foundation,
36 echo Unexpected failure with exit status $rc
/openjdk10/jdk/test/java/util/ResourceBundle/modules/visibility/src/named.bundles/
H A Dmodule-info.java16 * 2 along with this work; if not, write to the Free Software Foundation,
28 with jdk.test.resources.classes.spi.MyResourcesProvider;
30 with jdk.test.resources.props.spi.MyResourcesProvider;
/openjdk10/jdk/src/java.base/share/classes/java/time/temporal/
H A DTemporalAdjusters.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.
87 * The second is to use {@link Temporal#with(TemporalAdjuster)}:
91 * temporal = temporal.with(thisAdjuster);
93 * It is recommended to use the second approach, {@code with(TemporalAdjuster)},
144 return temporal.with(output);
157 * The behavior is suitable for use with most calendar systems.
160 * temporal.with(DAY_OF_MONTH, 1);
166 return (temporal) -> temporal.with(DAY_OF_MONT
[all...]
H A DTemporal.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.
77 * These are modeled using {@code TemporalField} with the number held using
155 * Returns an adjusted object of the same type as this object with the adjustment made.
168 * date = date.with(Month.JULY); // most key classes implement TemporalAdjuster
169 * date = date.with(lastDayOfMonth()); // static import from Adjusters
170 * date = date.with(next(WEDNESDAY)); // static import from Adjusters and DayOfWeek
185 * @return an object of the same type with the specified adjustment made, not null
189 default Temporal with(TemporalAdjuste method in interface:Temporal
225 Temporal with(TemporalField field, long newValue); method in interface:Temporal
[all...]
/openjdk10/jdk/src/java.base/share/classes/java/time/
H A DOffsetTime.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.
96 * A time with an offset from UTC/Greenwich in the ISO-8601 calendar system,
219 * This creates an offset time with the four specified fields.
243 * This creates an offset time with the same instant as that specified.
345 * @param time the time to create with, not null
346 * @param offset the zone offset to create with, not null
348 private OffsetTime with(LocalTime time, ZoneOffset offset) { method in class:OffsetTime
361 * {@link #get(TemporalField) get} and {@link #with(TemporalFiel
679 public OffsetTime with(TemporalAdjuster adjuster) { method in class:OffsetTime
727 public OffsetTime with(TemporalField field, long newValue) { method in class:OffsetTime
[all...]
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/regexp/joni/ast/
H A DNode.java44 public void swap(final Node with) { argument
47 //if (getChild() != null) getChild().parent = with;
48 //if (with.getChild() != null) with.getChild().parent = this;
51 //setChild(with.getChild());
52 //with.setChild(tmp);
55 parent.setChild(with);
58 if (with.parent != null) {
59 with.parent.setChild(this);
63 parent = with
[all...]
/openjdk10/jdk/src/jdk.jstatd/share/classes/
H A Dmodule-info.java18 * 2 along with this work; if not, write to the Free Software Foundation,
45 provides sun.jvmstat.monitor.MonitoredHostService with
/openjdk10/jdk/src/java.security.sasl/share/classes/
H A Dmodule-info.java18 * 2 along with this work; if not, write to the Free Software Foundation,
44 provides java.security.Provider with
/openjdk10/jdk/src/jdk.security.jgss/share/classes/
H A Dmodule-info.java18 * 2 along with this work; if not, write to the Free Software Foundation,
41 provides java.security.Provider with
/openjdk10/jdk/src/jdk.naming.rmi/share/classes/
H A Dmodule-info.java18 * 2 along with this work; if not, write to the Free Software Foundation,
41 provides javax.naming.spi.InitialContextFactory with

Completed in 274 milliseconds

12345678910