Searched refs:bootstrap (Results 1 - 25 of 26) sorted by relevance

12

/openjdk10/jaxp/src/java.xml/share/classes/org/w3c/dom/bootstrap/
H A Dpackage-info.java32 package org.w3c.dom.bootstrap;
H A DDOMImplementationRegistry.java43 package org.w3c.dom.bootstrap;
/openjdk10/langtools/make/test/bootstrap/
H A Djavah.sh27 # @summary Verify the basic execution of the bootstrap javah tool.
32 ${TOPDIR}/dist/bootstrap/bin/javac -d . "${TESTSRC}"/../HelloWorld.java
33 ${TOPDIR}/dist/bootstrap/bin/javah -classpath . -d . HelloWorld
H A Djavac.sh27 # @summary Verify basic execution of the bootstrap javac compiler.
33 ${TOPDIR}/dist/bootstrap/bin/javac -d . "${TESTSRC}"/../HelloWorld.java
H A Djavadoc.sh27 # @summary Verify the basic execution of the bootstrap javadoc tool.
34 ${TOPDIR}/dist/bootstrap/bin/javadoc -d doc "${TESTSRC}"/../HelloWorld.java
/openjdk10/jdk/src/java.base/share/classes/jdk/internal/logger/
H A DBootstrapLogger.java248 final BootstrapLogger bootstrap; field in class:BootstrapLogger.LogEvent
269 private LogEvent(BootstrapLogger bootstrap, Level level, argument
284 this.bootstrap = bootstrap;
287 private LogEvent(BootstrapLogger bootstrap, Level level, argument
302 this.bootstrap = bootstrap;
305 private LogEvent(BootstrapLogger bootstrap, argument
322 this.bootstrap = bootstrap;
325 LogEvent(BootstrapLogger bootstrap, PlatformLogger.Level platformLevel, String sourceClass, String sourceMethod, Supplier<String> msgSupplier, Throwable thrown, Object[] params) argument
410 valueOf(BootstrapLogger bootstrap, Level level, ResourceBundle bundle, String key, Throwable thrown) argument
416 valueOf(BootstrapLogger bootstrap, Level level, ResourceBundle bundle, String format, Object[] params) argument
422 valueOf(BootstrapLogger bootstrap, Level level, Supplier<String> msgSupplier, Throwable thrown) argument
428 valueOf(BootstrapLogger bootstrap, Level level, Supplier<String> msgSupplier) argument
450 valueOf(BootstrapLogger bootstrap, PlatformLogger.Level level, String msg) argument
456 valueOf(BootstrapLogger bootstrap, PlatformLogger.Level level, String msg, Throwable thrown) argument
461 valueOf(BootstrapLogger bootstrap, PlatformLogger.Level level, String msg, Object[] params) argument
466 valueOf(BootstrapLogger bootstrap, PlatformLogger.Level level, Supplier<String> msgSupplier) argument
471 vaueOf(BootstrapLogger bootstrap, PlatformLogger.Level level, Supplier<String> msgSupplier, Throwable thrown) argument
478 valueOf(BootstrapLogger bootstrap, PlatformLogger.Level level, String sourceClass, String sourceMethod, ResourceBundle bundle, String msg, Object[] params) argument
485 valueOf(BootstrapLogger bootstrap, PlatformLogger.Level level, String sourceClass, String sourceMethod, ResourceBundle bundle, String msg, Throwable thrown) argument
492 valueOf(BootstrapLogger bootstrap, PlatformLogger.Level level, String sourceClass, String sourceMethod, Supplier<String> msgSupplier, Throwable thrown) argument
[all...]
H A DLazyLoggers.java244 * in the temporary 'bootstrap' Logger. Called by BootstrapLogger when
245 * this accessor's bootstrap logger is accessed and BootstrapLogger
247 * @param bootstrap This accessor's bootstrap logger (usually this is 'w').
249 Logger getConcreteLogger(BootstrapLogger bootstrap) { argument
253 if (this.w == bootstrap) {
260 PlatformLogger.Bridge getConcretePlatformLogger(BootstrapLogger bootstrap) { argument
264 if (this.w == bootstrap) {
348 // in the bootstrap sequence...
/openjdk10/jaxp/test/javax/xml/jaxp/unittest/dom/
H A DBug6367542.java30 import org.w3c.dom.bootstrap.DOMImplementationRegistry;
H A DCR6909336Test.java35 import org.w3c.dom.bootstrap.DOMImplementationRegistry;
/openjdk10/hotspot/src/share/vm/jvmci/
H A DjvmciCompiler.hpp36 * True if we have seen a bootstrap compilation request.
83 void bootstrap(TRAPS);
H A DjvmciCompiler.cpp62 void JVMCICompiler::bootstrap(TRAPS) { function in class:JVMCICompiler
69 // ignored during bootstrap or that JVMCI can be compiled by C1/C2.
132 // no OSR compilations during bootstrap - the compiler is just too slow at this point,
/openjdk10/hotspot/test/compiler/calls/common/
H A DInvokeDynamicPatcher.java133 Handle bootstrap = new Handle(Opcodes.H_INVOKESTATIC, CLASS,
150 // invokedynamic nativeCalleeMethod using bootstrap method
152 CALLEE_METHOD_DESC, bootstrap);
157 // invokedynamic calleeMethod using bootstrap method
159 bootstrap);
/openjdk10/jdk/test/javax/imageio/plugins/png/
H A DMergeStdCommentTest.java39 import org.w3c.dom.bootstrap.DOMImplementationRegistry;
H A DItxtUtf8Test.java57 import org.w3c.dom.bootstrap.DOMImplementationRegistry;
/openjdk10/langtools/make/tools/anttasks/
H A DSelectToolTask.java84 boolean bootstrap; field in class:SelectToolTask.ToolChoices
90 ToolChoices(String toolName, boolean bootstrap) { argument
92 this.bootstrap = bootstrap;
175 fileProps.remove("tool.bootstrap");
177 fileProps.remove("tool.bootstrap");
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/linker/
H A DBootstrap.java62 * This class houses bootstrap method for invokedynamic instructions generated by compiler.
66 public static final Call BOOTSTRAP = staticCallNoLookup(Bootstrap.class, "bootstrap", CallSite.class, Lookup.class, String.class, MethodType.class, int.class);
213 * Create a call site and link it for Nashorn. This version of the method conforms to the invokedynamic bootstrap
214 * method expected signature and is referenced from Nashorn generated bytecode as the bootstrap method for all
222 public static CallSite bootstrap(final Lookup lookup, final String opDesc, final MethodType type, final int flags) { method in class:Bootstrap
351 return bootstrap(MethodHandles.publicLookup(), name, MethodType.methodType(rtype, ptypes), flags).dynamicInvoker();
376 return bootstrap(MethodHandles.publicLookup(), name, type, flags).dynamicInvoker();
H A DJavaAdapterServices.java198 * Delegate to {@link Bootstrap#bootstrap(Lookup, String, MethodType, int)}.
205 public static CallSite bootstrap(final Lookup lookup, final String opDesc, final MethodType type, final int flags) { method in class:JavaAdapterServices
206 return Bootstrap.bootstrap(lookup, opDesc, type, flags);
299 * A bootstrap method used to collect invocation arguments into an Object array.
/openjdk10/jaxp/src/java.xml/share/classes/
H A Dmodule-info.java61 exports org.w3c.dom.bootstrap;
/openjdk10/nashorn/samples/
H A DMain.asm74 public static CallSite bootstrap(MethodHandles.Lookup caller, String name, MethodType type) {
86 public static Method bootstrap:"(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;"
154 // Using bootstrap method in this class with the following invokedynamic
158 invokedynamic InvokeDynamic REF_invokeStatic:Main.bootstrap:"(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;)Ljava/lang/invoke/CallSite;":"length":"(Ljava/lang/Object;)Ljava/lang/Object;";
/openjdk10/jaxp/test/javax/xml/jaxp/unittest/transform/util/
H A DTransformerTestTemplate.java50 import org.w3c.dom.bootstrap.DOMImplementationRegistry;
/openjdk10/hotspot/test/compiler/jsr292/
H A DCallSiteDepContextTest.java75 CallSiteDepContextTest.class, "bootstrap",
82 public static CallSite bootstrap(MethodHandles.Lookup caller, method in class:CallSiteDepContextTest
102 "bootstrap",
/openjdk10/jaxp/test/javax/xml/jaxp/functional/test/auctionportal/
H A DUserController.java51 import org.w3c.dom.bootstrap.DOMImplementationRegistry;
H A DAuctionController.java63 import org.w3c.dom.bootstrap.DOMImplementationRegistry;
/openjdk10/jaxp/test/javax/xml/jaxp/unittest/common/prettyprint/
H A DPrettyPrintTest.java53 import org.w3c.dom.bootstrap.DOMImplementationRegistry;
/openjdk10/hotspot/src/share/vm/prims/
H A Djni.cpp3293 Handle loader; // null (bootstrap) loader
3305 // These lookups are done with the NULL (bootstrap) ClassLoader to
3955 compiler->bootstrap(THREAD);

Completed in 288 milliseconds

12