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

<<1112131415

/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaFileChooserUI.java878 // Muchlike showInputDialog, but we give it options instead of selectionValues
879 private Object showNewFolderDialog(final Component parentComponent, final Object message, final String title, final int messageType, final Icon icon, final Object[] options, final Object initialSelectionValue) { argument
880 final JOptionPane pane = new JOptionPane(message, messageType, JOptionPane.OK_CANCEL_OPTION, icon, options, null);
903 final String[] options = {createButtonText, cancelButtonText};
909 options, // selectionValues
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/generator/bean/field/
H A DAbstractField.java325 return parent().parent().getModel().options;
/openjdk7/jdk/src/share/native/sun/awt/libpng/
H A DCHANGES226 all configurable options can be selected from command-line instead
751 a 24-bit visual if one is available, and to allow abbreviated options.
2815 In all prior versions of libpng most configuration options
2818 so that compilation options that can only be changed at build
2822 per-file in the application are in png.h. Frozen options are
2865 Improved the options.awk script; added an "everything off" option.
2878 Added logunsupported=1 to cause pnglibconf.h to document disabled options.
2907 Revised scripts/options.awk to work on Sunos (but still doesn't work)
2908 Added comment to options.awk and contrib/pngminim/*/makefile to try nawk.
2918 Removed leftover scripts/options
[all...]
/openjdk7/jdk/src/share/demo/jfc/Font2DTest/
H A DFont2DTest.java711 /// Loads saved options and applies them
722 throw new Exception( "Not a Font2DTest options file" );
724 String options = new String( byteData, "UTF-16" );
725 StringTokenizer perLine = new StringTokenizer( options, "\n" );
728 throw new Exception( "Not a Font2DTest options file" );
730 /// Parse all options
841 String fileName = promptFile( true, "options.txt" );
846 String fileName = promptFile( false, "options.txt" );
1007 String usage = "Usage: java -jar Font2DTest.jar [options]\n" +
1008 "\nwhere options includ
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DCheck.java74 // The set of lint options currently in effect. It is initialized
100 Options options = Options.instance(context);
109 complexInference = options.isSet(COMPLEXINFERENCE);
110 skipAnnotations = options.isSet("skipAnnotations");
111 warnOnSyntheticConflicts = options.isSet("warnOnSyntheticConflicts");
112 suppressAbortOnBadClassFile = options.isSet("suppressAbortOnBadClassFile");
113 enableSunApiLintControl = options.isSet("enableSunApiLintControl");
H A DAttr.java114 Options options = Options.instance(context);
125 relax = (options.isSet("-retrofit") ||
126 options.isSet("-relax"));
127 findDiamonds = options.get("findDiamond") != null &&
129 useBeforeDeclarationWarning = options.isSet("useBeforeDeclarationWarning");
H A DMemberEnter.java105 Options options = Options.instance(context);
106 skipAnnotations = options.isSet("skipAnnotations");
H A DResolve.java113 Options options = Options.instance(context);
114 debugResolve = options.isSet("debugresolve");
H A DLower.java109 Options options = Options.instance(context);
110 debugLower = options.isSet("debuglower");
111 pkginfoOpt = PkgInfo.get(options);
/openjdk7/jdk/make/jpda/jdwp/
H A Djdwp.spec1123 "bit flag in the <code>options</code> field; however, "
1141 (int options "Invocation <a href=\"#JDWP_InvokeOptions\">options</a>")
1198 "bit flag in the <code>options</code> field; however, "
1216 (int options "Constructor invocation <a href=\"#JDWP_InvokeOptions\">options</a>")
1560 "bit flag in the <code>options</code> field; however, "
1579 (int options "Invocation <a href=\"#JDWP_InvokeOptions\">options</a>")
3141 "The invoke options ar
[all...]
/openjdk7/jdk/src/share/classes/sun/security/tools/
H A DKeyTool.java244 final Option[] options; field in class:KeyTool.Command
247 options = o;
381 // Only options with an arg need to be checked
518 * options
4095 // Left and right sides of the options list
4096 String[] left = new String[command.options.length];
4097 String[] right = new String[command.options.length];
4102 // Length of left side of options list
4105 Option opt = command.options[j];
/openjdk7/jdk/src/share/back/
H A Dutil.c530 jint options; local
582 options = inStream_readInt(in);
609 error = invoker_requestInvoke(invokeType, (jbyte)options, inStream_id(in),
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiExport.cpp2173 // get agent name and options
2176 const char* options = op->arg(2); local
2223 result = (*on_attach_entry)(&main_vm, (char*)options, NULL);
2234 Arguments::add_loaded_agent(agent, (char*)options, is_absolute_path, library);
H A Djni.h1872 JavaVMOption *options; member in struct:JavaVMInitArgs
/openjdk7/jdk/src/share/javavm/export/
H A Djvmti.h50 Agent_OnLoad(JavaVM *vm, char *options, void *reserved);
53 Agent_OnAttach(JavaVM* vm, char* options, void* reserved);
H A Djni.h1872 JavaVMOption *options; member in struct:JavaVMInitArgs
/openjdk7/jdk/src/share/native/com/sun/java/util/jar/pack/
H A Dunpack.cpp526 AH_LENGTH_0 = 3, //minver, majver, options are outside of archive_size
527 AH_LENGTH_0_MAX = AH_LENGTH_0 + 1, // options might have 2 bytes
542 // An absolute minimum null archive is magic[4], {minver,majver,options}[3],
545 // The first read must capture everything up through the options field.
546 // This happens to work even if {minver,majver,options} is a pathological
551 // magic[4], {minver,majver,options}[4], archive_size[10].
552 // (Note only the low 12 bits of options are allowed to be non-zero.)
656 fprintf(errstrm, "Warning: Illegal archive options 0x%x\n",
658 abort("illegal archive options");
3516 // Do not reset any unpack options
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A Dthread.cpp3793 jint err = (*on_load_entry)(&main_vm, agent->options(), NULL);
3845 jint err = (*on_load_entry)(&main_vm, agent->options(), NULL);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/parser/
H A DJavacParser.java102 this.allowStringFolding = fac.options.getBoolean("allowStringFolding", true);

Completed in 196 milliseconds

<<1112131415