Searched refs:options (Results 176 - 200 of 1074) sorted by relevance

1234567891011>>

/openjdk10/jaxws/src/jdk.xml.bind/share/classes/com/sun/tools/internal/xjc/reader/
H A DAbstractExtensionBindingChecker.java73 private final Options options; field in class:AbstractExtensionBindingChecker
79 public AbstractExtensionBindingChecker( String schemaLanguage, Options options, ErrorHandler handler ) { argument
81 this.allowExtensions = options.compatibilityMode!=Options.STRICT;
82 this.options = options;
85 for (Plugin plugin : options.getAllPlugins())
108 for( Plugin p : options.getAllPlugins() ) {
132 if(options.pluginURIs.contains(namespaceURI)) {
135 for( Plugin p : options.activePlugins ) {
153 return namespaceUri.equals(Const.XJC_EXTENSION_URI) || options
[all...]
/openjdk10/jdk/src/java.security.jgss/share/classes/sun/security/krb5/internal/
H A DKDCOptions.java101 * on the use of some options are as follows:
103 * <li> FORWARDABLE, FORWARDED, PROXIABLE, RENEWABLE options may be set in
105 * the same options (FORWARDABLE, FORWARDED, PROXIABLE, RENEWABLE) set.
174 KDCOptions options = new KDCOptions();
176 options.set(flag, true);
178 return options;
214 * @param options the bits to be set for the KDCOptions.
217 public KDCOptions(byte[] options) { argument
218 super(options.length * BITS_PER_UNIT, options);
[all...]
/openjdk10/langtools/test/tools/javac/api/
H A DTestSearchPaths.java27 * @summary path options ignored when reusing filemanager across tasks
60 * Test for combinations of using javac command-line options and fileManager setLocation
64 * a series of operations is performed, using either compiler options or setLocation
118 List<String> options;
121 options = getOptions("-d", classes.getPath());
126 options = null;
130 callTask(options, sources);
145 List<String> options;
148 options = getOptions("-d", classes.getPath(), "-classpath", classpath.getPath());
153 options
493 callTask(List<String> options, List<JavaFileObject> files) argument
[all...]
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.test/src/org/graalvm/compiler/replacements/test/
H A DTypeCheckTest.java28 import org.graalvm.compiler.options.OptionValues;
46 protected StructuredGraph parseForCompile(ResolvedJavaMethod method, CompilationIdentifier compilationId, OptionValues options) { argument
47 StructuredGraph graph = super.parseForCompile(method, compilationId, options);
55 protected InstalledCode getCode(final ResolvedJavaMethod method, final StructuredGraph graph, boolean ignore, boolean installAsDefault, OptionValues options) { argument
56 return super.getCode(method, graph, currentProfile != null, installAsDefault, options);
/openjdk10/langtools/test/tools/javac/T6458823/
H A DT6458823.java61 List<String> options = new ArrayList<String>();
62 options.add("-processor");
63 options.add("MyProcessor");
64 options.add("-proc:only");
68 options, null, fm.getJavaFileObjectsFromFiles(files));
/openjdk10/langtools/test/tools/javac/defaultMethodsVisibility/
H A DDefaultMethodsNotVisibleForSourceLessThan8Test.java139 .options("-source", source)
152 .options("-source", source)
162 .options("-source", source)
172 .options("-source", source)
182 .options("-source", source)
/openjdk10/jdk/src/jdk.zipfs/share/classes/jdk/nio/zipfs/
H A DZipFileSystemProvider.java189 public void copy(Path src, Path target, CopyOption... options) argument
192 toZipPath(src).copy(toZipPath(target), options);
210 getFileAttributeView(Path path, Class<V> type, LinkOption... options) argument
231 public void move(Path src, Path target, CopyOption... options) argument
234 toZipPath(src).move(toZipPath(target), options);
239 Set<? extends OpenOption> options,
249 Set<? extends OpenOption> options,
253 return toZipPath(path).newByteChannel(options, attrs);
265 Set<? extends OpenOption> options,
269 return toZipPath(path).newFileChannel(options, attr
238 newAsynchronousFileChannel(Path path, Set<? extends OpenOption> options, ExecutorService exec, FileAttribute<?>... attrs) argument
248 newByteChannel(Path path, Set<? extends OpenOption> options, FileAttribute<?>... attrs) argument
264 newFileChannel(Path path, Set<? extends OpenOption> options, FileAttribute<?>... attrs) argument
273 newInputStream(Path path, OpenOption... options) argument
280 newOutputStream(Path path, OpenOption... options) argument
289 readAttributes(Path path, Class<A> type, LinkOption... options) argument
299 readAttributes(Path path, String attribute, LinkOption... options) argument
311 setAttribute(Path path, String attribute, Object value, LinkOption... options) argument
[all...]
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.printer/src/org/graalvm/compiler/printer/
H A DGraalDebugHandlersFactory.java64 import org.graalvm.compiler.options.OptionValues;
81 public List<DebugHandler> createHandlers(OptionValues options) { argument
83 if (DebugOptions.PrintGraphFile.getValue(options)) {
84 handlers.add(new GraphPrinterDumpHandler((graph) -> createFilePrinter(graph, options, snippetReflection)));
86 handlers.add(new GraphPrinterDumpHandler((graph) -> createNetworkPrinter(graph, options, snippetReflection)));
88 if (DebugOptions.PrintCanonicalGraphStrings.getValue(options)) {
92 if (DebugOptions.PrintCFG.getValue(options) || DebugOptions.PrintBackendCFG.getValue(options)) {
93 if (DebugOptions.PrintBinaryGraphs.getValue(options) && DebugOptions.PrintCFG.getValue(options)) {
148 createNetworkPrinter(Graph graph, OptionValues options, SnippetReflectionProvider snippetReflection) argument
188 createDumpPath(OptionValues options, Graph graph, String extension, boolean createDirectory) argument
266 createFilePrinter(Graph graph, OptionValues options, SnippetReflectionProvider snippetReflection) argument
[all...]
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/alloc/trace/
H A DTraceBuilderPhase.java42 import org.graalvm.compiler.options.EnumOptionKey;
43 import org.graalvm.compiler.options.Option;
44 import org.graalvm.compiler.options.OptionKey;
45 import org.graalvm.compiler.options.OptionType;
46 import org.graalvm.compiler.options.OptionValues;
92 OptionValues options = lir.getOptions();
93 TraceBuilder selectedTraceBuilder = Options.TraceBuilding.getValue(options);
96 switch (Options.TraceBuilding.getValue(options)) {
104 throw GraalError.shouldNotReachHere("Unknown trace building algorithm: " + Options.TraceBuilding.getValue(options));
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/stubs/
H A DUnwindExceptionToCallerStub.java48 import org.graalvm.compiler.options.OptionValues;
60 public UnwindExceptionToCallerStub(OptionValues options, HotSpotProviders providers, HotSpotForeignCallLinkage linkage) { argument
61 super("unwindExceptionToCaller", options, providers, linkage);
79 return options;
83 private static void unwindExceptionToCaller(Object exception, Word returnAddress, @ConstantParameter Register threadRegister, @ConstantParameter OptionValues options) { argument
85 if (logging(options)) {
98 if (logging(options)) {
108 static boolean logging(OptionValues options) { argument
109 return StubOptions.TraceUnwindStub.getValue(options);
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases.common/src/org/graalvm/compiler/phases/common/inlining/policy/
H A DGreedyInliningPolicy.java39 import org.graalvm.compiler.options.OptionValues;
67 OptionValues options = info.graph().getOptions();
71 if (InlineEverything.getValue(options)) {
90 if (SmallCompiledLowLevelGraphSize.getValue(options) > 0 && lowLevelGraphSize > SmallCompiledLowLevelGraphSize.getValue(options) * inliningBonus) {
96 if (nodes < TrivialInliningSize.getValue(options) * inliningBonus) {
108 if (LimitInlinedInvokes.getValue(options) > 0 && fullyProcessed && invokes > LimitInlinedInvokes.getValue(options) * inliningBonus) {
114 double maximumNodes = computeMaximumSize(relevance, (int) (MaximumInliningSize.getValue(options) * inliningBonus));
/openjdk10/hotspot/test/testlibrary/jvmti/
H A DlibSimpleClassFileLoadHook.c99 static jint init_options(char *options) { argument
104 fprintf(stderr, "Agent library loaded with options = %s\n", options);
105 if ((class_name = options) != NULL &&
126 "Incorrect options. You need to start the JVM with -agentlib:ClassFileLoadHook=<classname>,<from>,<to>\n"
133 static jint Agent_Initialize(JavaVM *jvm, char *options, void *reserved) { argument
140 if ((rc = init_options(options)) != JNI_OK) {
160 JNIEXPORT jint JNICALL Agent_OnLoad(JavaVM *jvm, char *options, void *reserved) { argument
161 return Agent_Initialize(jvm, options, reserved);
164 JNIEXPORT jint JNICALL Agent_OnAttach(JavaVM *jvm, char *options, voi argument
[all...]
/openjdk10/jaxws/src/jdk.xml.ws/share/classes/com/sun/tools/internal/ws/processor/modeler/wsdl/
H A DJAXBModelBuilder.java57 private final WsimportOptions options; field in class:JAXBModelBuilder
60 public JAXBModelBuilder(WsimportOptions options, ClassNameCollector classNameCollector, MetadataFinder finder, ErrorReceiver errReceiver) { argument
63 this.options = options;
78 schemaCompiler = options.getSchemaCompiler();
80 if(options.entityResolver != null) {
82 schemaCompiler.setEntityResolver(options.entityResolver);
98 InputSource[] externalBindings = options.getSchemaBindings();
130 options.setCodeModel(rawJaxbModel.generateCode(null, errReceiver));
/openjdk10/jdk/src/java.rmi/share/classes/java/rmi/activation/
H A DActivationGroupDesc.java77 * @serial The controlling options for executing the VM in
96 * environment can control the exact command/options used in
106 * @param cmd the controlling options for executing the VM in
129 * into <code>-D</code> options), or <code>null</code>.
130 * @param cmd the controlling options for executing the VM in
196 * Startup options for ActivationGroup implementations.
199 * specifying implementation-defined options for ActivationGroups.
213 private String[] options; field in class:ActivationGroupDesc.CommandEnvironment
222 * <code>-Dpropname=value</code> options (as documented for the
225 * @param argv extra options whic
[all...]
/openjdk10/langtools/test/tools/javac/modules/
H A DLimitModulesTest.java53 .options("--module-source-path", src.toString(),
65 .options("--module-source-path", src.toString(),
90 .options("--module-source-path", src.toString(),
98 .options("--module-source-path", src.toString(),
106 .options("--module-source-path", src.toString(),
122 .options("--module-source-path", src.toString(),
142 .options("-XDrawDiagnostics",
164 .options("-XDrawDiagnostics",
174 .options("-XDrawDiagnostics",
/openjdk10/langtools/src/jdk.jdeps/share/classes/com/sun/tools/javap/
H A DJavapTask.java129 task.options.help = true;
136 task.options.version = true;
143 task.options.fullVersion = true;
150 task.options.verbose = true;
151 task.options.showDescriptors = true;
152 task.options.showFlags = true;
153 task.options.showAllAttrs = true;
160 task.options.showLineAndLocalVariableTables = true;
167 task.options.accessOptions.add(opt);
168 task.options
349 JavapTask(Writer out, JavaFileManager fileManager, DiagnosticListener<? super JavaFileObject> diagnosticListener, Iterable<String> options, Iterable<String> classes) argument
1090 Options options; field in class:JavapTask
[all...]
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/debug/
H A DBenchmarkCounters.java45 import org.graalvm.compiler.options.Option;
46 import org.graalvm.compiler.options.OptionKey;
47 import org.graalvm.compiler.options.OptionType;
48 import org.graalvm.compiler.options.OptionValues;
65 * The subsystems that use the logging need to have their own options to turn on the counters, and
151 private static synchronized void dump(OptionValues options, PrintStream out, double seconds, long[] counters, int maxRows) { argument
153 try (Dumper dumper = Dumper.getDumper(options, out, counterMap.size(), seconds, maxRows)) {
158 if (Options.BenchmarkCountersDumpStatic.getValue(options)) {
159 dumper.dumpCounters(true, group, collectStaticCounters(), counterMap.entrySet(), options);
161 if (Options.BenchmarkCountersDumpDynamic.getValue(options)) {
192 shouldDumpComputerReadable(OptionValues options) argument
198 getDumper(OptionValues options, PrintStream out, int counterSize, double second, int maxRows) argument
212 dumpCounters(boolean staticCounter, String group, long[] array, Set<Entry<String, Counter>> counterEntrySet, OptionValues options) argument
248 dumpCounters(boolean staticCounter, String group, long[] array, Set<Entry<String, Counter>> counterEntrySet, OptionValues options) argument
324 dumpCounters(boolean staticCounter, String group, long[] array, Set<Entry<String, Counter>> counterEntrySet, OptionValues options) argument
387 initialize(final HotSpotJVMCIRuntime jvmciRuntime, OptionValues options) argument
469 shutdown(HotSpotJVMCIRuntime jvmciRuntime, OptionValues options, long compilerStartTime) argument
475 getPrintStream(OptionValues options) argument
[all...]
/openjdk10/hotspot/test/compiler/codecache/cli/common/
H A DCodeCacheOptions.java92 List<String> options = new ArrayList<>();
93 Collections.addAll(options, additionalOptions);
94 Collections.addAll(options,
101 Collections.addAll(options,
110 return options.toArray(new String[options.size()]);
/openjdk10/jdk/test/com/sun/security/auth/module/KeyStoreLoginModule/
H A DReadOnly.java94 Map options = new HashMap();
95 options.put(O_URL, URL);
96 options.put(O_ALIAS, ALIAS);
97 options.put(O_SPASS_URL, SPASS_URL);
98 options.put(O_KPASS_URL, KPASS_URL);
99 m.initialize(s, null, null, options);
/openjdk10/langtools/src/jdk.javadoc/share/classes/jdk/javadoc/internal/api/
H A DJavadocTaskImpl.java58 private Iterable<String> options; field in class:JavadocTaskImpl
64 Iterable<String> options, Iterable<? extends JavaFileObject> fileObjects) {
68 this.options = (options == null) ? Collections.emptySet()
69 : nullCheck(options);
96 return jdoc.begin(docletClass, options, fileObjects);
63 JavadocTaskImpl(Context context, Class<?> docletClass, Iterable<String> options, Iterable<? extends JavaFileObject> fileObjects) argument
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/
H A DHotSpotGraalRuntime.java55 import org.graalvm.compiler.options.OptionValues;
99 private final OptionValues options; field in class:HotSpotGraalRuntime
115 options = new OptionValues(initialOptions, HotSpotPrintInlining, true);
117 options = initialOptions;
120 outputDirectory = new DiagnosticsOutputDirectory(options);
122 snippetCounterGroups = GraalOptions.SnippetCounters.getValue(options) ? new ArrayList<>() : null;
157 hostBackend.completeInitialization(jvmciRuntime, options);
162 backend.completeInitialization(jvmciRuntime, options);
167 BenchmarkCounters.initialize(jvmciRuntime, options);
208 return mBean == null ? options
[all...]
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/meta/
H A DHotSpotSuitesProvider.java53 import org.graalvm.compiler.options.OptionValues;
82 public Suites createSuites(OptionValues options) { argument
83 Suites ret = defaultSuitesCreator.createSuites(options);
85 if (ImmutableCode.getValue(options)) {
88 if (VerifyPhases.getValue(options)) {
91 if (GeneratePIC.getValue(options)) {
95 if (HotSpotAOTProfilingPlugin.Options.TieredAOT.getValue(options)) {
96 highTierLowering.add(new FinalizeProfileNodesPhase(HotSpotAOTProfilingPlugin.Options.TierAInvokeInlineeNotifyFreqLog.getValue(options)));
102 if (Inline.getValue(options)) {
112 if (VerifyPhases.getValue(options)) {
168 createLIRSuites(OptionValues options) argument
[all...]
/openjdk10/jdk/src/java.base/share/classes/sun/security/util/
H A DConsoleCallbackHandler.java174 OptionInfo[] options;
178 options = new OptionInfo[] {
184 options = new OptionInfo[] {
191 options = new OptionInfo[] {
198 options = new OptionInfo[optionStrings.length];
199 for (int i = 0; i < options.length; i++) {
200 options[i] = new OptionInfo(optionStrings[i], i);
219 for (int i = 0; i < options.length; i++) {
221 // defaultOption is an index into the options array
223 i + ". " + options[
[all...]
/openjdk10/langtools/test/tools/javac/options/release/
H A DReleaseOptionUnsupported.java27 * @summary Verify unsupported modules and module options handling.
79 .options("-XDrawDiagnostics")
91 .options("-XDrawDiagnostics",
119 .options("-XDrawDiagnostics")
131 .options("-XDrawDiagnostics",
154 .options("-XDrawDiagnostics",
166 .options("-XDrawDiagnostics",
190 .options("-XDrawDiagnostics",
210 .options("-XDrawDiagnostics",
222 .options("
[all...]
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.debug.test/src/org/graalvm/compiler/debug/test/
H A DDebugContextTest.java47 import org.graalvm.compiler.options.OptionKey;
48 import org.graalvm.compiler.options.OptionValues;
63 public List<DebugHandler> createHandlers(OptionValues options) {
78 DebugContext openDebugContext(OptionValues options) { argument
79 return DebugContext.create(options, NO_DESCRIPTION, NO_GLOBAL_METRIC_VALUES, new PrintStream(logOutput), Collections.singletonList(handlers));
86 OptionValues options = new OptionValues(EconomicMap.create());
88 try (DebugContext debug = setup.openDebugContext(options);
107 OptionValues options = new OptionValues(EconomicMap.create());
108 options = new OptionValues(options, DebugOption
[all...]

Completed in 217 milliseconds

1234567891011>>