Searched defs:option (Results 26 - 50 of 63) sorted by relevance

123

/openjdk7/jdk/src/share/classes/sun/tools/jmap/
H A DJMap.java40 * or an SA tool. At this time the only option that uses the VM attach mechanism
41 * is the -dump option to get a heap dump of a running application. All other
55 // The -F (force) option is currently not passed through to SA
58 // Default option (if nothing provided)
69 // the chosen option (-heap, -dump:*, ... )
70 String option = null;
83 if (option != null) {
84 usage(); // option already specified
86 option = arg;
91 // if no option provide
148 runTool(String option, String args[]) argument
[all...]
/openjdk7/jdk/src/macosx/bundle/appbundler/src/com/oracle/appbundler/
H A DAppBundlerTask.java154 public void addConfiguredOption(Option option) throws BuildException { argument
155 String value = option.getValue();
374 for (String option : options) {
375 writeString(xout, option);
/openjdk7/jdk/src/solaris/native/sun/awt/
H A DCUPSfuncs.c321 ppd_option_t *option; local
343 option = j2d_ppdFindOption(ppd, "PageSize");
344 if (option != NULL && option->num_choices > 0) {
347 DPRINTF( "CUPSfuncs::option->num_choices %d\n", option->num_choices)
348 sizeArray = (*env)->NewFloatArray(env, option->num_choices*6);
358 for (i = 0; i<option->num_choices; i++) {
359 choice = (option->choices)+i;
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWFramePeer.java205 native void pSetIMMOption(String option); argument
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/formats/html/
H A DConfigurationImpl.java39 * Also determine the length of the command line option. For example,
40 * for a option "-header" there will be a string argument associated, then the
41 * the length of option "-header" is two. But for option "-nohelp" no argument
46 * use "-helpfile" option when already "-nohelp" option is used.
70 * Argument for command line option "-header".
75 * Argument for command line option "-packagesheader".
80 * Argument for command line option "-footer".
85 * Argument for command line option "
302 optionLength(String option) argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/
H A DLint.java229 LintCategory(String option) { argument
230 this(option, false);
233 LintCategory(String option, boolean hidden) { argument
234 this.option = option;
236 map.put(option, this);
239 static LintCategory get(String option) { argument
240 return map.get(option);
243 public final String option; field in class:Lint.LintCategory
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/util/
H A DBaseFileManager.java106 // 1: Allow client to specify the class to use via hidden option
159 public int isSupportedOption(String option) { argument
161 if (o.matches(option))
/openjdk7/jdk/src/share/classes/sun/rmi/rmic/newrmic/
H A DMain.java92 * single doclet-specific option ("-batchID") to pass a numeric
242 error("rmic.option.unsupported", args[i]);
248 error("rmic.option.unsupported", args[i]);
253 error("rmic.option.unsupported", args[i]);
259 error("rmic.option.unsupported", args[i]);
291 error("rmic.option.requires.argument", args[i]);
296 error("rmic.option.already.seen", args[i]);
307 error("rmic.option.requires.argument", args[i]);
312 error("rmic.option.already.seen", args[i]);
323 error("rmic.option
533 optionLength(String option) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DHTMLWriter.java533 Option option = (Option)listModel.getElementAt(i);
534 writeOption(option);
540 Option option = (Option)comboBoxModel.getElementAt(i);
541 writeOption(option);
550 * @param option an Option
554 protected void writeOption(Option option) throws IOException { argument
558 write("option");
560 Object value = option.getAttributes().getAttribute
565 if (option.isSelected()) {
569 if (option
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/apt/main/
H A DMain.java111 /** This class represents an option recognized by the main program
114 /** Whether or not the option is used only aptOnly.
130 /** Suffix option (-foo=bar or -foo:bar)
149 /** Does this option take a (separate) operand?
155 /** Does argument string match option pattern?
174 /** Print a line of documentation describing this option, if non-standard.
178 /** Process the option (with arg). Return true if error detected.
180 boolean process(String option, String arg) { argument
181 options.put(option, arg);
185 /** Process the option (withou
187 process(String option) argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/
H A DConfiguration.java77 * This is true if option "-serialwarn" is used. Defualt value is false to
93 * True if command line option "-nosince" is used. Default value is
165 * tag is used in the doc comment and if -author option is used.
166 * <code>showauthor</code> is set to true if -author option is used.
173 * if @version tag is used in the doc comment and if -version option is
174 * used. <code>showversion</code> is set to true if -version option is
187 * option is used. <code>nodepracted</code> is set to true if
188 * -nodeprecated option is used. Default is generate deprected API
246 * @param options The array of option names and values.
290 * option (includin
299 optionLength(String option) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/jstat/
H A DParser.java55 private static final String OPTION = "option";
504 * optionstmt -> 'option' ID '{' optionlist '}'
518 * parse the specification for the given option identifier
520 public OptionFormat parse(String option) argument
525 * this search stops on the first occurance of an option
526 * statement with a name matching the given option. Any
538 // check if the option name is the one we are interested in
542 && (lookahead.sval.compareTo(option) == 0)) {
568 // note: if a duplicate option statement exists, then
/openjdk7/jdk/src/solaris/demo/jvmti/hprof/
H A Dhprof_md.c90 /* No Hi-Res timer option? */
143 md_recv(int f, char *buf, int len, int option) argument
145 return recv(f, buf, len, option);
149 md_shutdown(int filedes, int option) argument
151 return shutdown(filedes, option);
/openjdk7/hotspot/src/os/bsd/vm/
H A Dos_bsd.inline.hpp75 inline bool os::obsolete_option(const JavaVMOption *option) { argument
/openjdk7/hotspot/src/os/linux/vm/
H A Dos_linux.inline.hpp87 inline bool os::obsolete_option(const JavaVMOption *option) { argument
/openjdk7/hotspot/src/share/vm/services/
H A DdiagnosticFramework.hpp156 const char* default_string, bool mandatory, bool option) {
161 this->_option = option;
163 this->_option = option;
167 const char* default_string, bool mandatory, bool option,
173 this->_option = option;
175 this->_option = option;
155 DCmdArgumentInfo(const char* name, const char* description, const char* type, const char* default_string, bool mandatory, bool option) argument
166 DCmdArgumentInfo(const char* name, const char* description, const char* type, const char* default_string, bool mandatory, bool option, int position) argument
H A Djmm.h206 jboolean option; member in struct:__anon479
/openjdk7/jdk/src/windows/demo/jvmti/hprof/
H A Dhprof_md.c108 md_recv(int f, char *buf, int len, int option) argument
110 return recv(f, buf, len, option);
114 md_shutdown(int filedes, int option) argument
116 return shutdown(filedes, option);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/api/
H A DClientCodeWrapper.java353 public int isSupportedOption(String option) { argument
355 return clientJavaFileManager.isSupportedOption(option);
/openjdk7/langtools/test/tools/javac/api/
H A DTestClientCodeWrapper.java386 public int isSupportedOption(String option) { argument
388 return super.isSupportedOption(option);
/openjdk7/hotspot/src/share/vm/ci/
H A DciMethod.cpp949 bool ciMethod::has_option(const char* option) { argument
953 return CompilerOracle::has_option_string(mh, option);
/openjdk7/hotspot/src/share/vm/compiler/
H A DcompilerOracle.cpp172 const char * option; member in class:MethodOptionMatcher
178 option = opt;
188 if (strcmp(current->option, opt) == 0) {
202 tty->print(" %s", option);
235 "option",
274 const char* option) {
276 signature, option, lists[OptionCommand]);
281 bool CompilerOracle::has_option_string(methodHandle method, const char* option) { argument
283 ((MethodOptionMatcher*)lists[OptionCommand])->match(method, option);
517 char option[25 local
271 add_option_string(Symbol* class_name, MethodMatcher::Mode c_mode, Symbol* method_name, MethodMatcher::Mode m_mode, Symbol* signature, const char* option) argument
[all...]
/openjdk7/hotspot/src/os/windows/launcher/
H A Djava_md.c791 * Return JNI_TRUE for an option string that has no effect but should
796 jboolean RemovableMachineDependentOption(char * option) { argument
800 if (GetBoolParamValue(PARAM_PRELOAD_D3D, option) == 1) {
806 if (GetBoolParamValue(PARAM_NODDRAW, option) == 1
807 || GetBoolParamValue(PARAM_D3D, option) == 0
808 || GetBoolParamValue(PARAM_OPENGL, option) == 1)
929 * Local helper routine to isolate a single token (option or argument)
1200 if (*unquoted == '-') { /* Looks like an option */
/openjdk7/hotspot/src/share/vm/runtime/
H A Darguments.hpp348 static bool is_bad_option(const JavaVMOption* option, jboolean ignore,
350 static bool is_bad_option(const JavaVMOption* option, jboolean ignore) { argument
351 return is_bad_option(option, ignore, NULL);
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_Dialog.cpp41 jstring option; member in struct:SetIMMOptionStruct
691 jstring option = sios->option; local
700 JNI_CHECK_NULL_GOTO(option, "null IMMOption", ret);
705 coption = JNU_GetStringPlatformChars(env, option, NULL);
717 JNU_ReleaseStringPlatformChars(env, option, coption);
723 env->DeleteGlobalRef(option);
830 jstring option)
836 sios->option = (jstring)env->NewGlobalRef(option);
829 Java_sun_awt_windows_WDialogPeer_pSetIMMOption(JNIEnv *env, jobject self, jstring option) argument
[all...]

Completed in 83 milliseconds

123