Lines Matching defs:option

111     /** 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) {
181 options.put(option, arg);
185 /** Process the option (without arg). Return true if error detected.
187 boolean process(String option) {
189 return process(name, option.substring(name.length()));
191 return process(option, option);
224 /** Print a line of documentation describing this option, if standard.
235 /** A nonstandard or extended (-X) option
248 /** A nonstandard or extended (-X) option
266 /** A hidden (implementor) option
293 boolean process(String option) {
303 boolean process(String option) {
304 String suboptions = option.substring(3);
326 boolean process(String option) {
327 String suboptions = option.substring(7);
344 boolean process(String option) {
345 options.put("-Xlint:deprecation", option);
352 boolean process(String option, String arg) {
358 boolean process(String option, String arg) {
361 return super.process(option, arg);
367 boolean process(String option, String arg) {
375 boolean process(String option, String arg) {
381 boolean process(String option, String arg) {
397 boolean process(String option, String operand) {
406 return super.process(option, operand);
410 boolean process(String option, String operand) {
419 return super.process(option, operand);
423 boolean process(String option) {
425 return super.process(option);
430 boolean process(String option) {
432 return super.process(option);
436 boolean process(String option) {
438 return super.process(option);
442 // This option exists only for the purpose of documenting itself.
449 boolean process(String option) {
470 boolean process(String option) {
471 return process(option, option);
500 boolean process(String option) {
502 return super.process(option);
521 boolean process(String option) {
522 options.put("-Xlint:unchecked", option);
528 boolean process(String option) {
529 options.put("-Xlint:switchcheck", option);
540 boolean process(String option, String arg) {
547 return super.process(option, arg);
564 /* This is a back door to the compiler's option table.
565 * -Dx=y sets the option x to the value y.
566 * -Dx sets the option x to the value x.
574 boolean process(String option) {
591 boolean process(String option) {
715 Option option = recognizedOptions[j];
716 if (option.hasArg()) {
723 if (option.process(flag, operand))
726 if (option.process(flag))