Searched refs:options (Results 251 - 275 of 369) sorted by relevance

<<1112131415

/openjdk7/langtools/test/tools/javac/api/
H A DT6877206.java170 Options options = Options.instance(ctx);
171 options.put("useOptimizedZip", Boolean.toString(useOptimizedZip));
173 options.put("ignore.symbol.file", "true");
H A DTestGetElement.java100 Map<String,String> options = processingEnv.getOptions();
101 int test = Integer.parseInt(options.get("test"));
102 boolean _last = Boolean.parseBoolean(options.get("last"));
/openjdk7/langtools/test/tools/javac/processing/
H A DTestWarnErrorCount.java300 ErrorKind ek = ErrorKind.valueOf(options.get("errKind"));
301 WarnKind mwk = WarnKind.valueOf(options.get("msgrWarnKind"));
302 WarnKind jwk = WarnKind.valueOf(options.get("javaWarnKind"));
/openjdk7/jdk/make/docs/
H A DMakefile204 # Common javadoc options used by all
311 # The index.html, options, and packages files
313 COREAPI_OPTIONS_FILE = $(DOCSTMPDIR)/coredocs.options
328 # Create file with javadoc options in it
379 # The index.html, options, and packages files
381 MIRROR_OPTIONS_FILE = $(DOCSTMPDIR)/mirror.options
396 # Create file with javadoc options in it
436 # The index.html, options, and packages files
438 DOCLETAPI_OPTIONS_FILE = $(DOCSTMPDIR)/docletapi.options
453 # Create file with javadoc options i
[all...]
/openjdk7/jdk/src/share/classes/com/sun/security/auth/login/
H A DConfigFile.java435 HashMap<String, String> options = new HashMap<>();
446 options.put(key, value);
454 java.util.Iterator<String> i = options.keySet().iterator();
460 options.get(key));
466 options);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/util/
H A DAbstractDiagnosticFormatter.java377 public SimpleConfiguration(Options options, Set<DiagnosticPart> parts) { argument
380 if ((showSource = options.get("showSource")) != null) {
386 String diagOpts = options.get("diags");
399 if ((multiPolicy = options.get("multilinePolicy")) != null) {
424 if (((showCaret = options.get("showCaret")) != null) &&
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/modeler/wsdl/
H A DWSDLModelerBase.java69 protected final WsimportOptions options; field in class:WSDLModelerBase
73 public WSDLModelerBase(WsimportOptions options, ErrorReceiver receiver, MetadataFinder forest) { argument
74 this.options = options;
377 if(options.isExtensionMode()){
390 if(options.isExtensionMode()){
465 if(options.isExtensionMode()){
482 if (!options.isExtensionMode() && (soapFault != null && soapFault.getNamespace() != null)) {
565 } else if (options.defaultPackage != null
566 && !options
[all...]
H A DWSDLModeler.java84 public WSDLModeler(WsimportOptions options, ErrorReceiver receiver, MetadataFinder forest) { argument
85 super(options, receiver,forest);
87 this.explicitDefaultPackage = options.defaultPackage;
99 parser = new WSDLParser(options, errReceiver, forest);
271 if(options.isExtensionMode()){
313 if(!options.isExtensionMode()){
322 if (options.isExtensionMode()) {
335 if (!options.isExtensionMode()) {
348 if (options.isExtensionMode()) {
508 if (options
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/file/
H A DJavacFileManager.java167 contextUseOptimizedZip = options.getBoolean("useOptimizedZip", true);
171 mmappedIO = options.isSet("mmappedIO");
172 ignoreSymbolFile = options.isSet("ignore.symbol.file");
174 String sf = options.get("sortFiles");
519 usePreindexedCache = options.isSet("usezipindex");
520 preindexCacheLocation = options.get("java.io.tmpdir");
521 String optCacheLoc = options.get("cachezipindexdir");
553 options.isSet("writezipindexfiles")));
564 options.isSet("writezipindexfiles")));
849 String arg = options
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/wsdl/parser/
H A DWSDLParser.java90 private WsimportOptions options; field in class:WSDLParser
97 public WSDLParser(WsimportOptions options, ErrorReceiverFilter errReceiver, MetadataFinder forest) { argument
99 this.options = options;
102 forest = new MetadataFinder(new WSDLInternalizationLogic(), options, errReceiver);
126 WSDLParser(WsimportOptions options, ErrorReceiverFilter errReceiver) { argument
127 this(options,errReceiver,null);
142 for (InputSource value : options.getWSDLBindings()) {
158 options.addHandlerChainConfiguration((Element) nl.item(i));
204 new Internalizer(forest, options, errReceive
[all...]
/openjdk7/hotspot/src/share/tools/launcher/
H A Djava.c57 * One job of the launcher is to remove command line options which the
58 * vm does not understand and will not process. These options include
59 * options which select which style of vm is run (e.g. -client and
60 * -server) as well as options which select the data model to use.
62 * options are turned into "-foo" options to the vm. This option
65 * CheckJVMType removes vm style options and TranslateApplicationArgs
68 * processes and removes -d<n> options. However, in case
72 * options and prevent them from being passed to the vm; this is done
98 * options whic
143 static JavaVMOption *options; variable
[all...]
/openjdk7/jdk/src/share/bin/
H A Djava.c36 * One job of the launcher is to remove command line options which the
37 * vm does not understand and will not process. These options include
38 * options which select which style of vm is run (e.g. -client and
39 * -server) as well as options which select the data model to use.
41 * options are turned into "-foo" options to the vm. This option
44 * CheckJvmType removes vm style options and TranslateApplicationArgs
46 * and removes -d<n> options. On unix, there is a possibility that the running
91 * List of VM options to be specified when the VM is created.
93 static JavaVMOption *options; variable
[all...]
/openjdk7/langtools/test/tools/javac/processing/model/util/elements/doccomments/
H A DTestDocComments.java138 Map<String,String> options; field in class:TestDocComments
155 options = pEnv.getOptions();
160 skind = ScanKind.valueOf(options.get("scan"));
/openjdk7/jdk/test/sun/security/krb5/auto/
H A DKDC.java78 * <li> More options to KDC, say, error output, say, response nonce !=
120 * <li> <code>setOption</code>: Sets various options
147 private Map<Option,Object> options = new HashMap<>(); field in class:KDC
235 options.put(key, value);
649 if (options.containsKey(KDC.Option.RESP_NT)) {
651 (int)options.get(KDC.Option.RESP_NT));
818 if (options.containsKey(KDC.Option.RESP_NT)) {
820 (int)options.get(KDC.Option.RESP_NT));
837 if (options.containsKey(KDC.Option.ONLY_RC4_TGT)) {
889 if (options
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/xmlschema/ct/
H A DMultiWildcardComplexTypeBuilder.java45 if (!bgmBuilder.model.options.contentForWildcard) {
/openjdk7/langtools/test/tools/javac/file/
H A DT7018098.java101 boolean expect = Boolean.valueOf(options.get("expect"));
/openjdk7/langtools/test/tools/javac/processing/filer/
H A DTestValidRelativeNames.java53 String mode = options.get("mode");
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DClassTypeImpl.java178 List arguments, int options)
189 List arguments, int options)
177 invokeMethod(ThreadReference threadIntf, Method methodIntf, List arguments, int options) argument
187 newInstance(ThreadReference threadIntf, Method methodIntf, List arguments, int options) argument
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicOptionPaneUI.java742 * providing the look and feel for. If the JOptionPane has options
840 * options of the JOptionPane or 0.
845 Object[] options = optionPane.getOptions();
847 if(options == null) {
851 for(int counter = options.length - 1; counter >= 0; counter--){
852 if(options[counter].equals(iv))
1175 Object[] options = optionPane.getOptions();
1178 * if custom options were specified, if the option type is
1183 if (options != null ||
1192 if (options
[all...]
/openjdk7/jdk/test/com/sun/nio/sctp/SctpChannel/
H A DSocketOptionTests.java63 /* Informational only, not all options have native support */
78 /* check supported options */
79 Set<SctpSocketOption<?>> options = sc.supportedOptions();
87 if (!options.contains(opt))
/openjdk7/jdk/test/demo/jvmti/
H A DDemoRun.java98 public DemoRun(String name, String options) argument
101 demo_options = options;
114 * plus any set of other java options.
187 /* Add any special VM options */
/openjdk7/jdk/test/java/nio/file/attribute/UserDefinedFileAttributeView/
H A DBasic.java81 static void test(Path file, LinkOption... options) throws IOException { argument
83 Files.getFileAttributeView(file, UserDefinedFileAttributeView.class, options);
/openjdk7/jdk/test/tools/pack200/pack200-verifier/src/xmlkit/
H A DCommandLineParser.java38 public void setOptionMap(String options) { argument
39 // Convert options string into optLines dictionary.
42 for (String optline : options.split("\n")) {
79 * Remove a set of command-line options from args,
94 // Multiple trips per option only if several options per argument.
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/formats/html/
H A DHtmlDoclet.java229 * Check for doclet added options here.
240 * Check that options have the correct arguments here.
248 * @return true if the options are valid.
250 public static boolean validOptions(String options[][], argument
253 return (ConfigurationImpl.getInstance()).validOptions(options, reporter);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/
H A DLint.java102 // initialize values according to the lint options
103 Options options = Options.instance(context);
106 if (options.lint(e.getKey()))
173 * Warn about issues relating to use of command line options
175 OPTIONS("options"),

Completed in 397 milliseconds

<<1112131415