Searched refs:usage (Results 126 - 150 of 225) sorted by relevance

123456789

/openjdk9/jdk/src/jdk.jcmd/share/classes/sun/tools/jcmd/
H A DJCmd.java59 Arguments.usage();
64 Arguments.usage();
H A DArguments.java104 public static void usage() { method in class:Arguments
/openjdk9/jdk/test/com/sun/management/GarbageCollectorMXBean/
H A DGarbageCollectionNotificationContentTest.java127 Map<String, MemoryUsage> usage = info.getMemoryUsageBeforeGc();
130 for (Map.Entry entry : usage.entrySet() ) {
144 // check if memory usage for all memory pools are returned
149 "memory usage for pool " + p.getName());
/openjdk9/jdk/test/java/util/ResourceBundle/
H A DRBTestFmwk.java121 usage();
238 * Print a usage message for this test class.
240 void usage() { method in class:RBTestFmwk
/openjdk9/jdk/test/java/text/testlib/
H A DIntlTest.java99 usage();
250 * Print a usage message for this test class.
252 void usage() { method in class:IntlTest
/openjdk9/jdk/test/sun/util/resources/TimeZone/
H A DIntlTest.java89 usage();
202 * Print a usage message for this test class.
204 void usage() { method in class:IntlTest
/openjdk9/hotspot/src/jdk.hotspot.agent/scripts/
H A Dstart-debug-server.bat27 if "%1" == "-help" goto usage
39 :usage label
/openjdk9/hotspot/src/share/vm/services/
H A DmemoryPool.cpp59 // initialize the max and init size of collection usage
64 // usage threshold supports both high and low threshold
66 // gc usage threshold supports only high threshold
153 MemoryUsage usage = get_memory_usage();
154 size_t peak_used = get_max_value(usage.used(), _peak_usage.used());
155 size_t peak_committed = get_max_value(usage.committed(), _peak_usage.committed());
156 size_t peak_max_size = get_max_value(usage.max_size(), _peak_usage.max_size());
/openjdk9/jaxws/src/jdk.xml.bind/share/classes/com/sun/tools/internal/jxc/
H A DSchemaGenerator.java98 usage();
103 usage();
123 // print usage and abort.
126 usage();
227 private static void usage( ) { method in class:SchemaGenerator
/openjdk9/jdk/src/jdk.pack/share/native/unpack200/
H A Dmain.cpp162 static void usage(unpacker* u, const char* progname, bool full = false) { function
315 usage(&u, argv[0], true);
324 usage(&u, argv[0]);
342 usage(&u, argv[0]);
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases/src/org/graalvm/compiler/phases/verify/
H A DVerifyDebugUsage.java48 * usage of the methods in {@link Debug} requires call sites to not eagerly evaluate their
109 for (Node usage : varArgParameter.usages()) {
110 if (usage instanceof StoreIndexedNode) {
111 StoreIndexedNode si = (StoreIndexedNode) usage;
/openjdk9/langtools/src/jdk.javadoc/share/classes/com/sun/tools/javadoc/main/
H A DStart.java174 void usage() { method in class:Start
175 usage(true);
178 void usage(boolean exit) { method in class:Start
179 usage("main.usage", "-help", "main.usage.foot", exit);
188 usage("main.Xusage", "-X", "main.Xusage.foot", exit);
191 private void usage(String main, String doclet, String foot, boolean exit) { method in class:Start
196 // let doclet print usage information (does nothing on error)
539 usage(tru
[all...]
/openjdk9/langtools/src/jdk.javadoc/share/classes/jdk/javadoc/internal/tool/
H A DToolOption.java344 throw new OptionException(OK, helper::usage);
465 abstract void usage(); method in class:ToolOption.Helper
489 throw new IllegalOptionValue(this::usage, text);
503 throw new IllegalOptionValue(this::usage, text);
517 throw new IllegalOptionValue(this::usage, text);
559 throw new IllegalOptionValue(this::usage, text);
H A DStart.java174 void usage() { method in class:Start
175 usage("main.usage", OptionKind.STANDARD, "main.usage.foot");
180 usage("main.Xusage", OptionKind.EXTENDED, "main.Xusage.foot");
183 private void usage(String headerKey, OptionKind kind, String footerKey) { method in class:Start
187 // let doclet print usage information
190 messager.notice("main.doclet.usage.header", name);
626 throw new OptionException(ERROR, this::usage, text);
632 throw new OptionException(ERROR, this::usage, tex
[all...]
/openjdk9/jdk/make/src/classes/build/tools/compileproperties/
H A DCompileProperties.java174 /* Original usage */
180 usage();
183 /* New batch usage */
191 usage();
204 private static void usage() { method in class:CompileProperties
205 System.err.println("usage:");
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases.common/src/org/graalvm/compiler/phases/common/inlining/
H A DInliningUtil.java373 for (Node usage : returnValue.usages()) {
374 canonicalizedNodes.add(usage);
378 for (Node usage : parameter.usages()) {
379 Node duplicate = duplicates.get(usage);
548 for (Node usage : frameState.usages()) {
549 if (usage instanceof ForeignCallNode) {
552 ForeignCallNode foreign = (ForeignCallNode) usage;
642 for (Node usage : fs.usages().snapshot()) {
643 if (!usage.isAlive()) {
646 if (usage instanceo
[all...]
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases/src/org/graalvm/compiler/phases/schedule/
H A DSchedulePhase.java475 for (Node usage : currentNode.usages()) {
476 if (immutableGraph && !visited.contains(usage)) {
484 latestBlock = calcBlockForUsage(currentNode, usage, latestBlock, currentNodeMap);
501 private static Block calcBlockForUsage(Node node, Node usage, Block startBlock, NodeMap<Block> currentNodeMap) { argument
504 if (usage instanceof PhiNode) {
507 PhiNode phi = (PhiNode) usage;
516 } else if (usage instanceof AbstractBeginNode) {
517 AbstractBeginNode abstractBeginNode = (AbstractBeginNode) usage;
525 // All other types of usages: Put the input into the same block as the usage.
526 Block otherBlock = currentNodeMap.get(usage);
[all...]
/openjdk9/jdk/src/java.desktop/share/classes/sun/applet/
H A DMain.java115 usage();
133 usage();
161 private static void usage() { method in class:Main
162 System.out.println(lookup("usage"));
/openjdk9/jdk/test/com/sun/crypto/provider/KeyAgreement/
H A DDHKeyAgreement2.java61 keyAgree.usage();
65 keyAgree.usage();
282 * Prints the usage of this test.
284 private void usage() { method in class:DHKeyAgreement2
285 System.err.print("DHKeyAgreement usage: ");
/openjdk9/jdk/test/java/rmi/reliability/benchmark/bench/rmi/
H A DMain.java178 static void usage() { method in class:Main
306 usage();
403 usage();
/openjdk9/langtools/src/jdk.compiler/share/classes/com/sun/tools/sjavac/
H A DCompileJavaPackages.java176 int usage = (int)(usagePerCompile * (float)numCompiles);
177 Log.debug("Heuristics say that for "+numCompiles+" concurrent compiles we need "+usage+"MiB");
178 if (usage > numMBytes) {
/openjdk9/jaxws/src/jdk.xml.bind/share/classes/com/sun/tools/internal/xjc/
H A DDriver.java132 // print usage and abort.
138 usage(e.getOptions(),false);
509 usage(this,false);
513 usage(this,true);
528 * Prints the usage screen and exits the process.
534 public static void usage( @Nullable Options opts, boolean privateUsage ) { method in class:Driver
/openjdk9/jdk/src/java.security.jgss/share/classes/sun/security/jgss/wrapper/
H A DGSSLibStub.java71 native long acquireCred(long pName, int lifetime, int usage) argument
/openjdk9/jdk/make/src/classes/build/tools/jigsaw/
H A DListPackages.java68 private static void usage() { method in class:ListPackages
93 usage();
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/phases/
H A DOnStackReplacementPhase.java89 for (Node usage : osr.usages().snapshot()) {
90 EntryProxyNode proxy = (EntryProxyNode) usage;

Completed in 279 milliseconds

123456789